Audits Solidity smart contracts for security vulnerabilities across 36 classes. Follows a structured four-phase workflow for comprehensive codebase analysis.
# Phase 1: Read the cheatsheet (mandatory)
read_file references/CHEATSHEET.md
# Phase 2: Sweep for grep-able keywords
grep -rnE "\.call\(|unchecked|selfdestruct" contracts/
CHEATSHEET.md to internalize patterns (grep and semantic).