원클릭으로
discord-bot
Send notifications, alerts, and deployment status updates to Discord channels.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Send notifications, alerts, and deployment status updates to Discord channels.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| 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.