Solidity auditor
Skill mishoko/solidity-auditor-pulse/skills_versions/pashov/solidity-auditor
Security audit of Solidity code while you develop. Trigger on "audit", "check this contract", "review for security". Modes - default (full repo) or a specific filename.From its SKILL.md
npx -y skills add mishoko/solidity-auditor-pulse --skill solidity-auditorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 4 commands, including `find` and 3 more.
- fetches URLsInstructs the agent to fetch 1 URL, including https://raw.githubusercontent.com/pashov/skills/main/solidity-auditor/VERSION.
SKILL.md
7.3 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it
Smart Contract Security Audit
You are the orchestrator of a parallelized smart contract security audit.
Mode Selection
Exclude pattern: skip directories interfaces/, lib/, mocks/, test/ and files matching *.t.sol, *Test*.sol or *Mock*.sol.
- Default (no arguments): scan all
.solfiles using the exclude pattern. Use Bashfind(not Glob). $filename ...: scan the specified file(s) only.
Flags:
--file-output(off by default): also write the report to a markdown file (path per{resolved_path}/report-formatting.md). Never write a report file unless explicitly passed.
Orchestration
Turn 1 — Discover. Print the banner, then make these parallel tool calls in one message:
a. Bash find for in-scope .sol files per mode selection
b. Glob for **/references/attack-vectors/attack-vectors.md — extract the references/ directory (two levels up) as {resolved_path}
c. ToolSearch select:Agent
d. Read the local VERSION file from the same directory as this skill
e. Bash curl -sf https://raw.githubusercontent.com/pashov/skills/main/solidity-auditor/VERSION
f. Bash mktemp -d /tmp/audit-XXXXXX → store as {bundle_dir}
If the remote VERSION fetch succeeds and differs from local, print ⚠️ You are not using the latest version. Please upgrade for best security coverage. See https://github.com/pashov/skills. If it fails, skip silently.
Turn 2 — Prepare. In one message, make parallel tool calls: (a) Read {resolved_path}/report-formatting.md, (b) Read {resolved_path}/judging.md.
Then build all bundles in a single Bash command using cat (not shell variables or heredocs):
{bundle_dir}/source.md— ALL in-scope.solfiles, each with a### pathheader and fenced code block.- Agent bundles =
source.md+ agent-specific files:
| Bundle | Appended files (relative to {resolved_path}) |
|---|---|
agent-1-bundle.md | attack-vectors/attack-vectors.md + hacking-agents/vector-scan-agent.md + hacking-agents/shared-rules.md |
agent-2-bundle.md | hacking-agents/math-precision-agent.md + hacking-agents/shared-rules.md |
agent-3-bundle.md | hacking-agents/access-control-agent.md + hacking-agents/shared-rules.md |
agent-4-bundle.md | hacking-agents/economic-security-agent.md + hacking-agents/shared-rules.md |
agent-5-bundle.md | hacking-agents/execution-trace-agent.md + hacking-agents/shared-rules.md |
agent-6-bundle.md | hacking-agents/invariant-agent.md + hacking-agents/shared-rules.md |
agent-7-bundle.md | hacking-agents/periphery-agent.md + hacking-agents/shared-rules.md |
agent-8-bundle.md | hacking-agents/first-principles-agent.md + hacking-agents/shared-rules.md |
Print line counts for every bundle and source.md. Do NOT inline file content into agent prompts.
Turn 3 — Spawn. In one message, spawn all 8 agents as parallel foreground Agent calls. Prompt template (substitute real values):
Your bundle file is {bundle_dir}/agent-N-bundle.md (XXXX lines).
The bundle contains all in-scope source code and your agent instructions.
Read the bundle fully before producing findings.
Turn 4 — Deduplicate, validate & output. Single-pass: deduplicate all agent results, gate-evaluate, and produce the final report in one turn. Do NOT print an intermediate dedup list — go straight to the report.
-
Deduplicate. Parse every FINDING and LEAD from all 8 agents. Group by
group_keyfield (format:Contract | function | bug-class). Exact-match first; then merge synonymous bug_class tags sharing the same contract and function. Keep the best version per group, number sequentially, annotate[agents: N].Check for composite chains: if finding A's output feeds into B's precondition AND combined impact is strictly worse than either alone, add "Chain: [A] + [B]" at confidence = min(A, B). Most audits have 0–2.
-
Gate evaluation. Run each deduplicated finding through the four gates in
judging.md(do not skip or reorder). Evaluate each finding exactly once — do not revisit after verdict.Single-pass protocol: evaluate every relevant code path ONCE in fixed order (constructor → setters → swap functions → mint → burn → liquidate). One-line verdict per path:
BLOCKS,ALLOWS,IRRELEVANT, orUNCERTAIN. Commit after all paths — do not re-examine.UNCERTAIN=ALLOWS. -
Lead promotion & rejection guardrails.
- Promote LEAD → FINDING (confidence 75) if: complete exploit chain traced in source, OR
[agents: 2+]demoted (not rejected) the same issue. [agents: 2+]does NOT override a concrete refutation — demote to LEAD if refutation is uncertain.- No deployer-intent reasoning — evaluate what the code allows, not how the deployer might use it.
- Promote LEAD → FINDING (confidence 75) if: complete exploit chain traced in source, OR
-
Fix verification (confidence ≥ 80 only): trace the attack with fix applied; verify no new DoS, reentrancy, or broken invariants (use
safeTransfernotrequire(token.transfer(...))); list all locations if the pattern repeats. If no safe fix exists, omit it with a note. -
Format and print per
report-formatting.md. Exclude rejected items. If--file-output: also write to file.
Banner
Before doing anything else, print this exactly:
██████╗ █████╗ ███████╗██╗ ██╗ ██████╗ ██╗ ██╗ ███████╗██╗ ██╗██╗██╗ ██╗ ███████╗
██╔══██╗██╔══██╗██╔════╝██║ ██║██╔═══██╗██║ ██║ ██╔════╝██║ ██╔╝██║██║ ██║ ██╔════╝
██████╔╝███████║███████╗███████║██║ ██║██║ ██║ ███████╗█████╔╝ ██║██║ ██║ ███████╗
██╔═══╝ ██╔══██║╚════██║██╔══██║██║ ██║╚██╗ ██╔╝ ╚════██║██╔═██╗ ██║██║ ██║ ╚════██║
██║ ██║ ██║███████║██║ ██║╚██████╔╝ ╚████╔╝ ███████║██║ ██╗██║███████╗███████╗███████║
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚══════╝
What ships with it: 21 files
152.0 KB alongside SKILL.md
assets/
- docs/README.md462 B
- findings/README.md663 B
evals/
- benchmarks/dodo.md6.1 KB
- benchmarks/megapot.md3.5 KB
- benchmarks/pooltogether.md3.1 KB
- compare.md2.2 KB
- runner.md2.7 KB
references/
- attack-vectors/attack-vectors.md108.2 KB
- hacking-agents/access-control-agent.md1.8 KB
- hacking-agents/economic-security-agent.md2.5 KB
- hacking-agents/execution-trace-agent.md2.7 KB
- hacking-agents/first-principles-agent.md2.0 KB
- hacking-agents/invariant-agent.md2.2 KB
- hacking-agents/math-precision-agent.md2.1 KB
- hacking-agents/periphery-agent.md1.6 KB
- hacking-agents/shared-rules.md2.2 KB
- hacking-agents/vector-scan-agent.md1.3 KB
- judging.md2.8 KB
- report-formatting.md2.7 KB