
Discord Webhook
- 2 repo stars
- Updated July 11, 2026
- musingfox/cc-plugins
Send Discord webhook notifications in plain text or rich Embed format with multi-webhook routing.
About
discord-webhook sends Discord notifications using plain text or rich Embed format, with support for routing to multiple webhooks. It lets agents push status messages and alerts into Discord channels. Aimed at notification and operational alerting workflows.
- Discord webhook notifications
- Plain text or rich Embed
- Multi-webhook routing
Discord Webhook by the numbers
- Data as of Jul 12, 2026 (Skillselion catalog sync)
/plugin marketplace add musingfox/cc-plugins/plugin install discord-webhook@nick-personal-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 11, 2026 |
| Repository | musingfox/cc-plugins ↗ |
What it does
Send Discord webhook notifications in plain text or rich Embed format with multi-webhook routing.
README.md
Discord Webhook
Send Discord webhook notifications from Claude Code. Supports plain text and rich Embed format with multi-webhook routing.
Features
- Plain text & Embed — auto-select or explicit format choice
- Multi-webhook — route to named channels via
DISCORD_WEBHOOK_{NAME}env vars - Flexible config — environment variables via
.envfile - Composable — designed as a tool for other plugins, hooks, and agents to call
Installation
/plugin install discord-webhook
Configuration
Add webhook URLs to your project's .env file:
# Default webhook
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/..."
# Named webhooks for specific channels
DISCORD_WEBHOOK_DEPLOY="https://discord.com/api/webhooks/..."
DISCORD_WEBHOOK_ALERTS="https://discord.com/api/webhooks/..."
Make sure .env is in your .gitignore to keep webhook URLs out of version control.
Usage
Slash Command
/dc-ntfy "Deploy v1.2.3 completed"
/dc-ntfy --embed "Deploy Complete" "Version v1.2.3 deployed to production"
/dc-ntfy --to deploy "Build finished"
/dc-ntfy --embed "Error" "Build failed" --color error --field "Exit Code" "1"
Natural Language (Auto-triggered)
"Send a Discord notification that the deploy is done"
"Notify the alerts Discord channel about this error"
"Post the build results to Discord"
From Other Plugins
Other plugins, hooks, or agents can trigger the skill by including Discord notification language in their prompts or instructions.
Components
| Component | Type | Description |
|---|---|---|
discord-webhook |
Skill (auto) | Core sending capability — webhook resolution, formatting, HTTP POST |
dc-ntfy |
Command | /dc-ntfy slash command for direct usage |
Prerequisites
curl(pre-installed on macOS/Linux)jq(for safe JSON construction)