Agent skill
messaging-communication
Send messages and notifications across messaging platforms including Slack, Discord, Telegram, and WhatsApp. Use when the user needs to send messages, list channels, search messages, or retrieve chat history.
Install this agent skill to your Project
npx add-skill https://github.com/binome-dev/humcp/tree/main/src/tools/messaging
SKILL.md
Messaging & Communication Tools
Tools for sending messages and interacting with popular messaging platforms.
Available Tools
| Tool | Service | Functions |
|---|---|---|
| Slack | Slack | Send messages, list channels, get history, search, reactions, threads |
| Discord | Discord | Send messages, list guild channels, reactions, threads |
| Telegram | Telegram Bot API | Send messages, photos, edit messages, get updates, pin messages |
| WhatsApp Cloud API | Send text, template, and media messages |
Requirements
Set environment variables for each service you want to use:
- Slack:
SLACK_TOKEN - Discord:
DISCORD_BOT_TOKEN - Telegram:
TELEGRAM_BOT_TOKEN - WhatsApp:
WHATSAPP_TOKEN,WHATSAPP_PHONE_NUMBER_ID
Examples
Send a Slack message
result = await slack_send_message(
channel="#general",
text="Hello from the workflow!"
)
List Slack channels
result = await slack_list_channels()
Search Slack messages
result = await slack_search_messages(
query="in:#engineering deployment",
limit=10
)
Send a Discord message
result = await discord_send_message(
channel_id="1234567890",
content="Build completed successfully!"
)
Send a Telegram message
result = await telegram_send_message(
chat_id="@mychannel",
text="Deployment finished."
)
Send a WhatsApp message
result = await whatsapp_send_message(
to="1234567890",
message="Your order has been shipped!"
)
Response format
All tools return a consistent response format:
{
"success": true,
"data": {
"message_id": "abc123",
"channel": "#general",
"timestamp": "1234567890.123456"
}
}
On error:
{
"success": false,
"error": "Slack not configured. Set SLACK_TOKEN environment variable."
}
When to Use
- Sending notifications from automated workflows
- Posting alerts to team channels
- Integrating messaging into multi-step agent pipelines
- Forwarding information between communication platforms
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
llm
Generate text, call tools, and get structured JSON output using LLM providers (Claude, OpenAI, Gemini, Ollama). Use when the user needs to call an LLM API for text generation, function calling, or structured data extraction.
calendar-tools
Manages calendar bookings and video conferencing. Use when the user needs to check availability, create bookings on Cal.com, or schedule and manage Zoom meetings.
http-api-client
Make HTTP requests to any URL or API endpoint. Use when the user needs to call a REST API, fetch data from a URL, send webhooks, or test HTTP endpoints. Supports GET, POST, PUT, PATCH, DELETE methods with custom headers and JSON body.
processing-data
Processes CSV files and pandas DataFrames. Use when working with CSV files, tabular data, spreadsheets, or when the user asks to query, analyze, or manipulate structured data.
persistent-memory
Store, search, and retrieve persistent memories and conversation history using Mem0 or Zep. Use when the user needs to remember facts, maintain context across sessions, or manage conversational memory.
storage
Use these tools for S3-compatible object storage operations with MinIO
Didn't find tool you were looking for?