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.
git clone --depth 1 https://github.com/omermaksutii/RugProofWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/omermaksutii/rugproof/notify-discord)<a href="https://agentmods.dev/commands/omermaksutii/rugproof/notify-discord"><img src="https://agentmods.dev/badge/commands/omermaksutii/rugproof/notify-discord.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00013 | $0.00500 |
| Opus 5 | $0.00006 | $0.00250 |
| Sonnet 5 | $0.00003 | $0.00100 |
| Haiku 4.5 | $0.00001 | $0.00050 |
Grade A, and why
notify-discord scanned grade A with 2 findings 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 8d 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.
Sends data to an external URLlowData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
4. POST via `curl -X POST -H 'content-type: application/json' --data @payload.json "$DISCORD_WEBHOOK_URL"`. Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
4. POST via `curl -X POST -H 'content-type: application/json' --data @payload.json "$DISCORD_WEBHOOK_URL"`. What it actually says
/notify-discord — push findings to Discord
Sends a compact summary of the most recent audit to a Discord channel.
Setup
In Discord: Channel Settings → Integrations → Webhooks → New Webhook → copy URL.
Then:
- Pass
--webhook-url, or - Set
DISCORD_WEBHOOK_URLenv, or - Add to
.rugproof.yml:notifications: discord: webhook_url: "https://discord.com/api/webhooks/..." mention_role: "1234567890" # optional — ping this role on Critical
Procedure
- Read latest findings JSON.
- Filter by severity.
- Build a Discord embed payload:
{ "username": "Rugproof", "avatar_url": "https://omermaksutii.github.io/RugProof/icon.png", "embeds": [{ "title": "🛡 Audit: VulnerableVault.sol", "color": 16729927, "fields": [ { "name": "Critical", "value": "2", "inline": true }, { "name": "High", "value": "4", "inline": true }, { "name": "Grade", "value": "F", "inline": true }, { "name": "Top", "value": "Reentrancy in withdraw()", "inline": false } ], "footer": { "text": "omermaksutii.github.io/RugProof" } }] } - POST via
curl -X POST -H 'content-type: application/json' --data @payload.json "$DISCORD_WEBHOOK_URL".
Output
✓ posted to Discord (200 OK)
channel hint: #security-alerts
Notes
- For Critical: prepend
<@&{role_id}>to mention the security role. - Embed color: red for Critical, orange for High, yellow for Medium.
- Discord allows up to 25 fields per embed; chunk multiple findings into multiple embeds (max 10 embeds per 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.
- 8d ago First seen · 62 lines · 13 tokens per session scan A bb42595fa3e2
notify-discord is a command published in the GitHub repository omermaksutii/RugProof (9 stars, last pushed 1mo ago), licensed MIT. It adds 13 tokens to every session and 500 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 2 findings (sends data to an external url, 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
krait
Run a complete multi-phase security audit on the target codebase.
krait-fuzz
Run an invariant-based fuzzing campaign: Understand → Extract Invariants → Generate Foundry Tests → Run & Fix Iteratively → Report.
dashboard
Open the ChainGPT marketplace dashboard (localhost web UI — Overview, Skills, Activity, Health, About).
krait-quick
Run a streamlined audit: Recon → Detection → Verification → Report. Skips state inconsistency analysis and cross-feed iteration for speed.
recreate-pr
Create a copy of an existing PR with review comments summarized as fixes. This allows Gemini (or other reviewers) to re-review the changes.
fix-btc-e2e-p11
Fix errors in BTC E2E test (Pattern 11: P2TR Tapscript M-of-N).