What problem does it solve? Security auditors identify vulnerabilities in smart contracts but must manually convert written attack scenarios into executable proof-of-concept tests, then verify that the claimed impact actually occurs on-chain. This Skill automates that conversion and validation loop. ## Core Features & Use Cases - PoC Generation: Converts attack scenario documents from .vigilo/findings/ into Foundry test files at test/poc/{finding-id}.t.sol with structured setUp, exploit, and assertion phases. - Impact Validation: Runs forge test and maps scenario claims (vault drain, collateral loss, admin bypass) to concrete assertions, distinguishing a passing test from a proven vulnerability. - Bug Class Templates: Provides ready-made patterns for reentrancy, access control bypass, price manipulation, flash loan attacks, integer overflow, and first depositor attacks. - Use Case: During Audit Phase 3, for each High/Medium finding, invoke the Skill with the finding path to produce a validated PoC, a validation log in .vigilo/poc/, and an updated attack scenario if actual results differ from expectations. ## Quick Start Generate and validate a Foundry PoC test for the finding at .vigilo/findings/high/logic/H-01-donation-attack-inflated-collateral.md.