What problem does it solve? After writing code, it is easy to miss spec violations, broken tests, inconsistent patterns across layers, or duplicated logic before committing. This Skill runs a structured quality verification pass over recently changed code so issues are caught and fixed before they reach the repository. ## Core Features & Use Cases - Spec Compliance Verification: Reads the applicable Trellis spec indexes and guideline files for each changed package or layer and checks the code against them. - Project Checks: Runs the project's lint, type-check, and test commands and requires failures to be fixed before proceeding. - Cross-Layer Review: Traces data flow (Storage → Service → API → UI), checks code reuse, import correctness, and same-layer consistency when changes span multiple layers. - Use Case: After implementing a new API endpoint that touches the service and UI layers, run this check to confirm tests pass, types flow correctly between layers, no duplicated constants were introduced, and the spec docs are updated with any lessons learned. ## Quick Start Run a quality check on my recent uncommitted changes and fix any violations you find.