audit-changes
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.
> /plugin marketplace add omermaksutii/RugProof > /plugin install rugproof@rugproof
How it fires
How this command gets triggered: by you, by Claude, or both.
/audit-deepContext preview
What this command does when you run it.
Deep audit — same as /audit but spawns more parallel subagents, runs multi-pass review, and chases exploit chains across files.
description: Deep audit — same as /audit but spawns more parallel subagents, runs multi-pass review, and chases exploit chains across files. argument-hint: "[file-or-dir]" allowed-tools: Read, Grep, Glob, Bash, Agent, Skill
Like `/audit`, but slower and more thorough. Use this for pre-launch or pre-mainnet-fork reviews where time is acceptable but escapes are not.
1. **Two-pass review.** First pass: per-skill findings. Second pass: cross-finding analysis — can any two findings be combined into an exploit chain? 2. **More specialist dispatches.** Always invoke `attacker` AND `defender` AND `gas-optimizer` AND any matching protocol specialists. 3. **Cross-contract reachability.** Trace external call graphs: which functions can call which, with what authorizations? Look for trust violations across the call graph. 4. **Invariant generation pass.** Spawn `invariant-writer` to identify protocol invariants that the contract intends to hold; check each one against the code. 5. **Historical context.** Use `c4-history` and `sherlock-history` MCPs to look for similar findings in the historical database — protocols of this type have lost funds via X; does this code have X?
Run `/audit` end-to-end first. Then:
For each (high or critical) finding F:
Run `invariant-writer` to extract:
For each invariant, prove or break it. If broken, emit a finding.
For each Critical / High finding, query `c4-history-mcp` and `sherlock-history-mcp`:
Same format as `/audit`, with additional sections:
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.
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…