Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$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.