在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
discord-bot
// Send notifications, alerts, and deployment status updates to Discord channels.
$ git log --oneline --stat
stars:5
forks:2
updated:2026年3月27日 01:26
文件资源管理器
SKILL.md
// Send notifications, alerts, and deployment status updates to Discord channels.
[HINT] 下载包含 SKILL.md 和所有相关文件的完整技能目录
| name | discord-bot |
| description | Send notifications, alerts, and deployment status updates to Discord channels. |
| metadata | {"navig":{"emoji":"📢","requires":{"config":["channels.discord"]}}} |
Send messages and notifications to Discord. Ideal for deployment alerts, system status reports, and agent-to-human communication.
Send a simple text message to a channel.
Payload:
{
"action": "sendMessage",
"to": "channel:<channel_id>",
"content": "🚀 **Deployment Successful**\nProject: `navig-core`\nEnvironment: `production`"
}
Use this for structured status reports.
Payload:
{
"action": "sendMessage",
"to": "channel:<channel_id>",
"content": "",
"embeds": [{
"title": "System Alert",
"description": "High CPU usage detected on host `web-01`.",
"color": 15158332,
"fields": [
{ "name": "CPU Load", "value": "95%", "inline": true },
{ "name": "Memory", "value": "45%", "inline": true }
]
}]
}
Acknowledge commands or mark items as done.
Payload:
{
"action": "react",
"channelId": "<channel_id>",
"messageId": "<message_id>",
"emoji": "✅"
}
navig docker compose up.Requires channels.discord to be configured in the agent settings with a valid bot token.