What problem does it solve? Smart contract audits often miss vulnerabilities where on-chain state becomes temporarily inconsistent during external calls, enabling read-only reentrancy, CEI violations, and cross-contract manipulation. This Skill provides a structured framework to systematically find and document those gaps. ## Core Features & Use Cases - State Dependency Mapping: Builds dependency graphs across same-contract, cross-contract, and view-function state relationships. - Inconsistency Window Detection: Classifies pre-update, partial-update, and post-update windows around external calls and checks CEI pattern compliance. - Timing Attack Scenarios: Models read-only reentrancy, cross-contract state races, and flash loan manipulation with timeline-based exploit walkthroughs. - Use Case: During a DeFi vault audit, use this framework to trace a withdraw() function's external token transfer, discover that totalAssets() returns stale values during the callback, and document a read-only reentrancy finding affecting an integrated lending protocol. ## Quick Start Ask the reentrancy-auditor agent to run state sync analysis on the target Solidity contracts and report all inconsistency windows with CEI compliance status.