Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add omermaksutii/RugProof/plugin install 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/audit-deps)<a href="https://agentmods.dev/commands/omermaksutii/rugproof/audit-deps"><img src="https://agentmods.dev/badge/commands/omermaksutii/rugproof/audit-deps.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.00029 | $0.00986 |
| Opus 5 | $0.00015 | $0.00493 |
| Sonnet 5 | $0.00006 | $0.00197 |
| Haiku 4.5 | $0.00003 | $0.00099 |
Grade A, and why
audit-deps scanned grade A with 0 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/audit-deps — vet the libraries you import
The bug isn't always in your code — sometimes it's in the version of OpenZeppelin you pinned 18 months ago. This command enumerates every dependency, resolves its real installed version, and checks it against a bundled advisory snapshot.
Procedure
Step 1 — Enumerate imports
Collect the dependency surface from every source of truth:
cat "${CLAUDE_PLUGIN_ROOT}/../remappings.txt" 2>/dev/null
cat package.json 2>/dev/null | node -e 'let p=require("/dev/stdin");console.log(JSON.stringify({...p.dependencies,...p.devDependencies}))'
grep -E 'libs\s*=' foundry.toml
Then sweep actual import statements for what is really referenced:
grep -rhoE 'import .*"(@openzeppelin|solady|solmate|forge-std)[^"]*"' src/ test/ | sort -u
Common families to resolve: @openzeppelin/contracts, @openzeppelin/contracts-upgradeable, solady, solmate, forge-std.
Step 2 — Resolve installed versions
- Git submodules (
lib/openzeppelin-contracts):git -C lib/<dep> rev-parse HEADandgit -C lib/<dep> describe --tagsfor the pinned SHA / tag. - npm: read the resolved version from
node_modules/<pkg>/package.json, not the range inpackage.json. - Record exact version per dependency. A floating range (
^4.0.0) installed as4.9.6is what matters.
Step 3 — Cross-reference advisories
Match each resolved version against the bundled offline advisory snapshot. High-signal historical examples to check:
- OpenZeppelin — ECDSA signature malleability /
tryRecover(< 4.7.3), TransparentUpgradeableProxy selector clash (< 4.8.3), GovernorcastVote/ proposal-id collision,Initializablere-init (< 4.8), Multicall + ERC2771 address-spoofing (< 4.9.3). - Solady —
SafeTransferLibreturning success for non-contract targets,LibCloneimmutable-arg edge cases. - solmate —
ERC20.permitdeadline /SafeTransferLibno-code-check absence.
Step 4 — Flag drift
- Pragma drift — pinned
pragma solidity 0.8.19;in your code vs a floating^0.8.0in a dependency (or vice versa). [[pragma-and-addresses]]. - Vendored divergence — code copied into
src/vendor/orsrc/lib/. Diff it against the upstream tag; flag any line that differs (security fixes silently dropped).
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 · 78 lines · 29 tokens per session scan A 37a6bb7d628d
audit-deps is a command published in the GitHub repository omermaksutii/RugProof (9 stars, last pushed 1mo ago), licensed MIT. It adds 29 tokens to every session and 986 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. 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.
README
Command "README" from hiromaily/go-crypto-wallet, covering claude code commands, commands, btc e2e commands, workflow and related.