audit-changes
Audit only the git diff vs main (or specified base). Optimized for PR review.
Post the latest /audit results to a Slack channel via incoming 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-slackContext preview
What this command does when you run it.
Post the latest /audit results to a Slack channel via incoming webhook.
description: Post the latest /audit results to a Slack channel via incoming 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 Slack channel. Use after `/audit` when collaborating with a team.
Create an incoming webhook in your Slack workspace: https://api.slack.com/messaging/webhooks
Then either:
notifications:
slack:
webhook_url: "https://hooks.slack.com/services/T..../B..../...."1. Locate the latest findings JSON (default `rugproof-reports/findings.json`). 2. Filter by `--severity-filter` (default: critical + high). 3. Build a Slack Block Kit payload:
{
"blocks": [
{ "type": "header", "text": { "type": "plain_text", "text": "🛡 Rugproof — VulnerableVault.sol" } },
{ "type": "section", "fields": [
{ "type": "mrkdwn", "text": "*Critical:* 2" },
{ "type": "mrkdwn", "text": "*High:* 4" },
{ "type": "mrkdwn", "text": "*Grade:* F" },
{ "type": "mrkdwn", "text": "*Top:* Reentrancy in withdraw()" }
]}
]
}4. POST to webhook via `curl`. Bash command pattern:
curl -X POST -H 'content-type: application/json' \
--data @payload.json \
"$SLACK_WEBHOOK_URL"5. Confirm 200 response or report the failure.
✓ posted 6 findings to Slack channel: #security permalink: https://acme.slack.com/archives/...
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.