audit
Deep EVM smart contract security audit system. Use when asked to audit a contract, find vulnerabilities, review code for security issues, or file security issues on a GitHub repo. Covers 500+ non-obvious checklist items across 19 domains via parallel sub-agents. Different from the security skill (which teaches defensive coding) — this is for systematically auditing contracts you didn't write.
What this skill does
# EVM Smart Contract Audit A full audit system for any EVM contract. Runs parallel specialist agents against domain-specific checklists, synthesizes findings, and files GitHub issues. ## The Checklists 20 specialized skills covering every major vulnerability domain. Fetch the master index first: ``` https://raw.githubusercontent.com/austintgriffith/evm-audit-skills/main/evm-audit-master/SKILL.md ``` The master index contains: - Full routing table (which skills to load for which contract types) - The complete audit methodology (recon → parallel agents → synthesis → issues) - Standard finding format with severity definitions All 20 skill checklists are at: ``` https://raw.githubusercontent.com/austintgriffith/evm-audit-skills/main/<skill-name>/references/checklist.md ``` ## Skills Available | Skill | When to Load | |-------|-------------| | `evm-audit-general` | Always | | `evm-audit-precision-math` | Always | | `evm-audit-erc20` | Contract interacts with ERC20 tokens | | `evm-audit-defi-amm` | AMM, DEX, Uniswap V3/V4, liquidity pools | | `evm-audit-defi-lending` | Lending, borrowing, CDP, liquidations | | `evm-audit-defi-staking` | Staking, liquid staking, restaking, EigenLayer | | `evm-audit-erc4626` | Vaults, share/asset conversion | | `evm-audit-erc4337` | Account abstraction, paymasters, session keys | | `evm-audit-bridges` | Cross-chain, LayerZero, CCIP, Wormhole | | `evm-audit-proxies` | Upgradeable contracts, UUPS, Transparent, Diamond | | `evm-audit-signatures` | Off-chain signatures, EIP-712, permits | | `evm-audit-governance` | DAO voting, timelocks, multi-sig | | `evm-audit-oracles` | Chainlink, TWAP, Pyth, price feeds | | `evm-audit-assembly` | Inline assembly, Yul, CREATE2 | | `evm-audit-chain-specific` | Non-mainnet: Arbitrum, OP, zkSync, Blast, BSC | | `evm-audit-flashloans` | Flash loan attack vectors | | `evm-audit-erc721` | NFTs, ERC721, ERC1155 | | `evm-audit-dos` | DoS, unbounded loops, gas griefing | | `evm-audit-access-control` | Ownership, roles, centralization risks | ## How To Run An Audit 1. Fetch the master skill (link above) — it has the full pipeline 2. Read the contract(s) 3. Select 5-8 skills using the routing table 4. Spawn one opus sub-agent per skill (parallel) 5. Each agent walks its checklist and writes `findings-<skill>.md` 6. Synthesize all findings into `AUDIT-REPORT.md` 7. File GitHub issues for Medium severity and above ## Invocation ``` Audit this contract and file issues: https://github.com/owner/repo/blob/main/contracts/Foo.sol Checklists: https://raw.githubusercontent.com/austintgriffith/evm-audit-skills/main/evm-audit-master/SKILL.md ``` ## Sources Built from research by Dacian, beirao.xyz, Sigma Prime, RareSkills, Decurity, weird-erc20, Spearbit, Hacken, OpenZeppelin, Cyfrin, and more. Full attribution: https://github.com/austintgriffith/evm-audit-skills#attribution--thanks
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.