ワンクリックで
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.