refactor(code-review): replace discover_inputs protocol with explicit file loading

This commit is contained in:
Alex Verkhovsky 2026-01-05 01:12:35 -08:00
parent ae9b83388c
commit 0f18c4bcba
1 changed files with 5 additions and 1 deletions

View File

@ -38,7 +38,11 @@ Initialize `{context_aware_findings}` as empty list.
### 0. Load Planning Context (JIT) ### 0. Load Planning Context (JIT)
Invoke `discover_inputs` protocol to load architecture, UX, and epic documents. Load planning documents for AC validation against system design:
- **Architecture**: `{planning_artifacts}/*architecture*.md` (or sharded: `{planning_artifacts}/*architecture*/*.md`)
- **UX Design**: `{planning_artifacts}/*ux*.md` (if UI review relevant)
- **Epic**: `{planning_artifacts}/*epic*/epic-{epic_num}.md` (the epic containing this story)
These provide the design context needed to validate AC implementation against system requirements. These provide the design context needed to validate AC implementation against system requirements.