What problem does it solve? Python codebases using Pydantic models often misplace live state and transport clients, letting them leak into frozen value objects or sit unwired. This Skill catches three specific anti-patterns so state stays on the one node allowed to hold it: the consistency model. ## Core Features & Use Cases - Frozen live edge detection: Flags frozen=True on the consistency model, which must stay unfrozen with arbitrary_types_allowed=True to hold live clients and evolve state. - Dead handle detection: Identifies client fields on the consistency model that no verb ever touches, meaning capability is wired to nothing. - Arbitrary type off the edge detection: Catches arbitrary_types_allowed=True on any model other than the consistency model, where foreign objects or live clients do not belong. - Use Case: While reviewing a MarketSession model holding a CoinbaseClient, you notice no verb emits through the client. This Skill explains that either a verb must be modeled to use it or the field is unwired structure to remove. ## Quick Start Review my Pydantic consistency model and client fields for the frozen live edge, dead handle, and arbitrary type failure patterns.