What problem does it solve? After writing code, it is easy to miss spec violations, failing tests, leftover debug logging, or inconsistencies across architectural layers. This Skill runs a structured quality verification pass over recently changed code before it is committed, catching drift between implementation and documented specifications. ## Core Features & Use Cases - Spec Compliance Review: Reads task artifacts (prd.md, design.md, implement.md) and per-layer spec indexes to verify the change matches documented conventions. - Project Checks: Runs lint, type-check, and test commands and requires all failures to be fixed before proceeding. - Cross-Layer Analysis: Traces data flow across Storage, Service, API, and UI layers, checks code reuse, import correctness, and same-layer consistency. - Use Case: After implementing a feature spanning the API and UI layers, run this check to confirm types propagate correctly, tests cover new functions, and no out-of-scope files were modified. ## Quick Start Ask the assistant to run the trellis-check quality verification on the current uncommitted changes before committing.