What problem does it solve? Python model methods often get written wrong: stub bodies left as NotImplementedError, multiple construction statements in one verb, signatures drifted from their modeled rows, or undecorated methods on frozen models. This Skill identifies these seven failure patterns so behavior is built as proper verbs and derivations instead. ## Core Features & Use Cases - Stub Detection: Flags verb bodies containing raise NotImplementedError, pass, or bare ellipsis as missing expansions rather than TODOs. - Construction Integrity: Catches verbs with multiple top-level construction statements and enforces the single-construction rule. - Surface and Chain Validation: Detects signatures drifted from the modeled verb row, unmodeled methods, missing modeled verbs, undecorated methods on frozen models, and bodies that skip declared constructs/emits participants. - Use Case: While writing a settle method on a frozen Pydantic model, the Skill fires when you leave a NotImplementedError stub and directs you to construct the Receipt and re-point the state field as the verb row declares. ## Quick Start Review this Python model class and flag any verb or derivation that violates the verb failure patterns.