What problem does it solve?
It prevents production pipeline failures by performing rigorous, layer-aware code reviews that validate hexagonal architecture boundaries, duplication, dead code, and security posture using evidence from the actual codebase.
Core Features & Use Cases
- Hexagonal architecture enforcement (critical): Traces real imports across new or modified files to verify dependency direction (Adapters → Application → Domain) and flags domain/framework coupling.
- Quality checks beyond the diff: Detects dead code, code duplication, and reusability/consistency issues by inspecting the repository source.
- Design and compliance verification: Confirms implemented components match the approved design and that request paths are correctly wired.
- Security spot-checks (strict): Looks for hardcoded secrets, authz gaps, unsafe input usage, sensitive data leakage, and insecure patterns.
- Revision-loop validation: For re-reviews, verifies previous issue fixes by re-reading original files and proves whether fixes truly exist without regressions.
Quick Start
Ask the pipeline to run the Phase 4 code review for the provided implementation changes and the Phase 2 approved design.