audit-deep
Deep audit — same as /audit but spawns more parallel subagents, runs multi-pass review, and chases exploit chains across files.
Audit only the git diff vs main (or specified base). Optimized for PR review.
> /plugin marketplace add omermaksutii/RugProof > /plugin install rugproof@rugproof
How it fires
How this command gets triggered: by you, by Claude, or both.
/audit-changesContext preview
What this command does when you run it.
Audit only the git diff vs main (or specified base). Optimized for PR review.
description: Audit only the git diff vs main (or specified base). Optimized for PR review. argument-hint: "[base-branch] (default: main)" allowed-tools: Read, Grep, Glob, Bash, Agent, Skill
For PR review or pre-push verification. Audits only the diff vs `$ARGUMENTS` (default: `main`).
1. **Get the diff.** `git diff --name-only <base>...HEAD -- '*.sol' '*.vy'` gives changed files. 2. **For each changed file:**
3. **Audit the changes with extra attention to:**
4. **Cross-reference unchanged code.** A diff that adds a new function to a contract requires understanding the *existing* invariants. 5. **Emit findings only for the diff** — but flag pre-existing issues that the diff makes worse.
Audit of diff vs <base>: Files changed: N Lines changed: +X / -Y Findings: <severity breakdown>
Per finding, include the diff snippet and a recommended block-on-merge severity.
When run from a hook (`pre-push`, `pre-commit`), this command:
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
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.
Diff the on-chain configuration of one contract deployed across multiple chains — owner, oracle, fees, timelock, pause state, proxy impl — and flag the chain…