@@ -28,14 +28,14 @@ You **MUST** consider the user input before proceeding (if not empty).
2828
29292 . ** Load design documents** : Read from FEATURE_DIR:
3030 - ** Required** : plan.md (tech stack, libraries, structure), spec.md (user stories with priorities)
31- - ** Optional** : data-model.md (entities), contracts/ (API endpoints ), research.md (decisions), quickstart.md (test scenarios)
31+ - ** Optional** : data-model.md (entities), contracts/ (interface contracts ), research.md (decisions), quickstart.md (test scenarios)
3232 - Note: Not all projects have all documents. Generate tasks based on what's available.
3333
34343 . ** Execute task generation workflow** :
3535 - Load plan.md and extract tech stack, libraries, project structure
3636 - Load spec.md and extract user stories with their priorities (P1, P2, P3, etc.)
3737 - If data-model.md exists: Extract entities and map to user stories
38- - If contracts/ exists: Map endpoints to user stories
38+ - If contracts/ exists: Map interface contracts to user stories
3939 - If research.md exists: Extract decisions for setup tasks
4040 - Generate tasks organized by user story (see Task Generation Rules below)
4141 - Generate dependency graph showing user story completion order
@@ -112,13 +112,13 @@ Every task MUST strictly follow this format:
112112 - Map all related components to their story:
113113 - Models needed for that story
114114 - Services needed for that story
115- - Endpoints /UI needed for that story
115+ - Interfaces /UI needed for that story
116116 - If tests requested: Tests specific to that story
117117 - Mark story dependencies (most stories should be independent)
118118
1191192 . ** From Contracts** :
120- - Map each contract/endpoint → to the user story it serves
121- - If tests requested: Each contract → contract test task [ P] before implementation in that story's phase
120+ - Map each interface contract → to the user story it serves
121+ - If tests requested: Each interface contract → contract test task [ P] before implementation in that story's phase
122122
1231233 . ** From Data Model** :
124124 - Map each entity to the user story(ies) that need it
0 commit comments