ADR Review Review code changes against accepted Architecture Decision Records to detect violations, drift, and non-compliance. When to use Before merging a PR, after significant code changes, or as part of a periodic compliance check. Use this to ensure code changes respect the architectural decisions the team has agreed upon. Steps 1. Get diff -- Run (or the specified branch) to list changed files. Then run to get the full diff content. 2. Find relevant ADRs -- For each changed file: - the file for ADR references ( ) - for ADRs that mention the changed file paths or modules - Call with the f…