What problem does it solve? It automates the architecture review of a code change through one specific perspective: the Contracts lenses (interfaces, dependency injection, and wiring), producing a structured findings report instead of an ad-hoc manual review. ## Core Features & Use Cases - Scoped review input: Reviews the current branch's change, a commit, a range, a path, or the whole repository, resolving the scope through git commands. - Static checker integration: Runs the bundled arch-check checker on working-tree scopes and merges its findings with manual lens judgments, falling back to full manual review when the checker cannot run. - Structured report: Emits a fixed-format Markdown report with findings (severity, file, line, fix), ADR-documented deviations, and pass/unverified/not-applicable lens tallies. - Use Case: Before merging a pull request that adds a new service interface, run this review to verify the interface, its injection, and its wiring in the app container comply with the guideline's Contracts rules. ## Quick Start Ask the assistant to run the arch-review-contracts skill on the current branch to check interfaces, injection, and wiring against the Contracts lenses.