blockchain-auditor

blockchain-auditor is a skill for Claude Code from ckorhonen/claude-skills. It costs 80 tokens per session (4,151 once invoked), scanned B, original, MIT.

A security-audit workflow for Solidity smart contracts, which are programs that run on blockchains. It looks for flaws that could let an ordinary account take funds or gain unauthorized access.

In plain words
What is it for?
Use it to inspect verified source code or raw bytecode, check contract structure and balances, run static analysis, and test possible exploits on forked networks.
Why use it?
It helps find exploitable weaknesses even when a contract's source code is unavailable, and lets findings be tested against a blockchain fork.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-skills plugin — 62 skills, 4 commands, 7 agents shipped together

Good fit Use it to inspect verified source code or raw bytecode, check contract structure and balances, run static analysis, and test possible exploits on forked networks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ckorhonen/claude-skills/blockchain-auditor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ckorhonen/claude-skills --skill blockchain-auditor
Clone the repo
git clone --depth 1 https://github.com/ckorhonen/claude-skills

Made for: Claude Code.

Or install claude-skills, the plugin that ships this one along with the rest of its 62 skills, 4 commands, 7 agents.

Wrote 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.

agentmods badge for blockchain-auditor

README.md
[![agentmods](https://agentmods.dev/badge/skills/ckorhonen/claude-skills/blockchain-auditor/github.svg)](https://agentmods.dev/skills/ckorhonen/claude-skills/blockchain-auditor)
Your own site
<a href="https://agentmods.dev/skills/ckorhonen/claude-skills/blockchain-auditor"><img src="https://agentmods.dev/badge/skills/ckorhonen/claude-skills/blockchain-auditor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for blockchain-auditor

Your own site · 80×15
<a href="https://agentmods.dev/skills/ckorhonen/claude-skills/blockchain-auditor"><img src="https://agentmods.dev/badge/skills/ckorhonen/claude-skills/blockchain-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,151 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.04151
Opus 5 $0.00040 $0.02076
Sonnet 5 $0.00016 $0.00830
Haiku 4.5 $0.00008 $0.00415

Measured 11d ago against content hash aed407756552, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

blockchain-auditor scanned grade B with 3 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 11d 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.

Downloads and executes remote codemediumSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -L https://foundry.paradigm.xyz | bash

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Unrestricted tool accesslowExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

- `delegatecall` - can execute arbitrary code

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl "https://api.etherscan.io/api?module=contract&action=getsourcecode&address=<address>&apikey=$ETHERSCAN_API_KEY"
skills/blockchain-auditor/SKILL.md · 481 lines

How it starts

The opening of the file, as written. The whole thing — 481 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Blockchain Security Auditor

Systematically audit smart contracts to identify exploitable vulnerabilities that allow an unprivileged account to extract funds or gain unauthorized access.

Quick Start

# For verified contracts (Etherscan source available)
cast etherscan-source <address> --chain mainnet

# For unverified contracts (bytecode only)
cast code <address> --rpc-url $ETH_RPC_URL
cast disassemble <bytecode>

# Fork testing
forge test --fork-url $ETH_RPC_URL -vvv

# Static analysis
slither . --checklist

Audit Methodology

Phase 1: Reconnaissance

  1. Gather contract information:

    # Check balance
    cast balance <address> --rpc-url $ETH_RPC_URL
    
    # Get bytecode
    cast code <address> --rpc-url $ETH_RPC_URL
    
    # Check if verified on Etherscan
    curl "https://api.etherscan.io/api?module=contract&action=getsourcecode&address=<address>&apikey=$ETHERSCAN_API_KEY"
    
    # Check for proxy implementation
    cast storage <address> 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc --rpc-url $ETH_RPC_URL
    
  2. Identify contract type:

    • Multi-sig wallet (addOwner, execute, confirmTransaction)
    • Token contract (transfer, approve, balanceOf)
    • DeFi protocol (deposit, withdraw, swap, liquidate)
    • Lending/borrowing (Compound/Aave-style)
    • AMM/DEX (Uniswap v2/v3-style with liquidity pools)
    • Proxy pattern (EIP-1967, UUPS, Transparent, Beacon)
    • Vault/yield aggregator (ERC-4626)
    • Cross-chain bridge (lock/mint, burn/release)
    • NFT contract (ERC-721, ERC-1155)

Phase 2: Source Code Analysis (Verified Contracts)

  1. Identify high-risk functions:
    • selfdestruct / suicide - can drain all ETH
    • delegatecall - can execute arbitrary code
    • call with user-controlled data - arbitrary calls
    • transfer / send without checks - reentrancy
    • withdraw / claim / redeem - fund extraction points
    • initialize / init - proxy initialization (can it be called twice?)
    • permit / permitAll - off-chain approval bypass
    • flash / flashLoan - flash loan entry points

Read the full file on GitHub · 481 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 11d ago First seen · 481 lines · 80 tokens per session scan B aed407756552

Subscribe to this mod's changes

blockchain-auditor is a skill published in the GitHub repository ckorhonen/claude-skills (14 stars, last pushed 2mo ago), licensed MIT. It adds 80 tokens to every session and 4,151 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 3 findings (downloads and executes remote code, unrestricted tool access, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

alchemy-webhooks

Receive and verify Alchemy Notify webhooks. Use when setting up Alchemy webhook handlers, debugging X-Alchemy-Signature verification, or handling onchain events like ADDRESSACTIVITY, NFTACTIVITY, or GRAPHQL (Custom Webhook).

hookdeck/webhook-skills · 51 tokens

fireblocks-webhooks

Receive and verify Fireblocks webhooks. Use when setting up Fireblocks webhook handlers, debugging Fireblocks-Webhook-Signature verification (detached JWS / RS512 / JWKS), or handling digital-asset events like transaction.created, transaction.status.updated, or transaction.approvalstatus.updated.

hookdeck/webhook-skills · 65 tokens

utila-webhooks

Receive and verify Utila webhooks. Use when setting up Utila webhook handlers, debugging x-utila-signature RSA/PSS verification, or handling Utila digital-asset events like TRANSACTIONCREATED, TRANSACTIONSTATEUPDATED, WALLETCREATED, WALLETADDRESSCREATED, and TRANSACTIONAMLSCREENINGRESULTREADY.

hookdeck/webhook-skills · 70 tokens

smart-contract-code-maturity-assessor

Use when a smart-contract codebase needs an evidence-based maturity scorecard and prioritized improvement roadmap. Rates nine categories from code and explicit off-chain evidence, computes an aggregate score, and produces a CRITICAL-to-MEDIUM roadmap. Not for vulnerability auditing, source fixes, or claims about…

OutlineDriven/odin-claude-plugin · 68 tokens

smart-contract-guidelines-advisor

Use when a smart-contract project needs architecture, implementation, dependency, or testing guidance. Produces an evidence-backed assessment with recommendations. Not for maturity — use smart-contract-code-maturity-assessor; not for audit prep — use smart-contract-audit-prep.

OutlineDriven/odin-claude-plugin · 59 tokens

chainscan

Multi-chain block explorer queries via Etherscan V2 unified API + Foundry cast fallbacks. Look up contract ABI/source, transactions, receipts, event logs, balances, token info, contract creation, gas prices, verify contracts across Ethereum, BSC, Polygon, Arbitrum, Optimism, Base, Avalanche, Sepolia and 60+ other…

avenoxai/avenoxskills · 157 tokens