audit-changes
Audit only the git diff vs main (or specified base). Optimized for PR review.
Post the latest /audit results to a Discord channel via webhook.
> /plugin marketplace add omermaksutii/RugProof > /plugin install rugproof@rugproof
How it fires
How this command gets triggered: by you, by Claude, or both.
/notify-discordContext preview
What this command does when you run it.
Post the latest /audit results to a Discord channel via webhook.
description: Post the latest /audit results to a Discord channel via webhook. argument-hint: "[--webhook-url <url>] [--severity-filter critical|high|medium]" allowed-tools: Read, Bash
Sends a compact summary of the most recent audit to a Discord channel.
In Discord: Channel Settings → Integrations → Webhooks → New Webhook → copy URL.
Then:
notifications:
discord:
webhook_url: "https://discord.com/api/webhooks/..."
mention_role: "1234567890" # optional — ping this role on Critical1. Read latest findings JSON. 2. Filter by severity. 3. 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" }
}]
}4. POST via `curl -X POST -H 'content-type: application/json' --data @payload.json "$DISCORD_WEBHOOK_URL"`.
✓ posted to Discord (200 OK) channel hint: #security-alerts
Rugproof your code before someone else does. 🌐 Live site: omermaksutii.github.io/RugProof 📦 Latest: v1.0.0 — 45 commands · 23 agents · 45 skills · 13 MCP servers · tested, offline-first, with rule packs, a benchmark, non-EVM coverage, and post-deploy
Repo: omermaksutii/RugProof
Audit only the git diff vs main (or specified base). Optimized for PR review.
Deep audit — same as /audit but spawns more parallel subagents, runs multi-pass review, and chases exploit chains across files.
Audit third-party dependencies — resolve installed versions, cross-reference known-vulnerable releases, and flag vendored code that has diverged from upstream.
Diff two Rugproof audit reports (before vs after) to track regressions — what's new, what's fixed, and whether the grade moved.
Pull past public audits (Code4rena, Sherlock, Spearbit, etc.) for a deployed contract or known protocol.
Audit a deployed contract on a live chain. Pulls verified source from the block explorer, optionally forks the chain for live-state simulation.