Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/bvdr/claude-plugins/send-slack-notificationgit clone --depth 1 https://github.com/bvdr/claude-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00028 | $0.01630 |
| Opus 5 | $0.00014 | $0.00815 |
| Sonnet 5 | $0.00006 | $0.00326 |
| Haiku 4.5 | $0.00003 | $0.00163 |
Grade A, and why
send-slack-notification scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Once the payload is ready, send it via curl: How it starts
The opening of the file, as written. The whole thing — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Send Slack Notification
This skill sends a rich message to a Slack channel using the Slack API with Block Kit formatting.
Pre-flight Check
- Run
echo $SLACK_BOT_TOKENin Bash - If empty or not starting with
xoxb-, tell the user:
Then stop — do not proceed.SLACK_BOT_TOKEN is not set. Run /setup-slack-notifications first to configure your Slack bot token.
Gather Message Details
Check if the user provided a message and channel inline (e.g. /send-slack #general Here's the update). If they did, parse it and skip the questions.
If not, use AskUserQuestion to gather details:
{
"questions": [
{
"question": "Which Slack channel should the message go to?",
"header": "Channel",
"options": [
{"label": "#general", "description": "The default general channel"},
{"label": "#engineering", "description": "Engineering team channel"},
{"label": "#random", "description": "The random channel"}
],
"multiSelect": false
},
{
"question": "What type of message do you want to send?",
"header": "Format",
"options": [
{"label": "Text message (Recommended)", "description": "Simple rich text with markdown formatting"},
{"label": "Status update", "description": "Header + body with context footer — great for progress updates"},
{"label": "Code snippet", "description": "Formatted code block with optional description"},
{"label": "Custom blocks", "description": "I'll describe the layout and you build the Block Kit JSON"}
],
"multiSelect": false
}
]
}
The user may select "Other" for the channel to type a custom channel name. Strip the # prefix if they include it.
Then ask the user for the actual message content in a follow-up chat message (not via AskUserQuestion — just ask them to type it).
Message Templates
Based on the format choice, build the appropriate Block Kit payload.
Text Message
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 229 lines · 28 tokens per session scan A 81bc3afd740f
send-slack-notification is a command published in the GitHub repository bvdr/claude-plugins (3 stars, last pushed 2mo ago), licensed MIT. It adds 28 tokens to every session and 1,630 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
dead-code-scan
Scan for dead code, unused imports, duplicates, and zombie code across the project.
esp-teach
One-time project setup -- discover hardware, find datasheets, persist context to CLAUDE.md.
dead-code-clean
Actively find and remove dead code, unused imports, duplicates, and zombie code.
swift-critique
Critique SwiftUI code for patterns, design, clean code, accessibility, and performance.
rust-critique
Deep code critique — read the target Rust code and apply the full review process. Evaluates soundness, ownership, error handling, type design, async correctness, performance, and architecture. Think like a senior Rust engineer giving honest feedback.
rust-harden
Harden Rust code — replace unwrap with proper error handling, add safety comments to unsafe blocks, enable overflow checks, validate inputs at boundaries. The defensive hardening pass.