You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Record assigned agents and job IDs for ASYNC tasks
142
142
143
-
6. Execute implementation following execution approach (mode-aware):
143
+
2. Execute implementation following execution approach (mode-aware):
144
144
145
145
**Build Mode Execution:**
146
146
- **Simplified flow**: Focus on core tasks for primary functionality
@@ -151,15 +151,15 @@ You **MUST** consider the user input before proceeding (if not empty).
151
151
**Spec Mode Execution (Dual Execution Loop):**
152
152
- **Phase-by-phase execution**: Complete each phase before moving to the next
153
153
- **Respect dependencies**: Run sequential tasks in order, parallel tasks [P] can run together
154
-
- **Follow TDD approach** (if enabled): Check current mode opinion settings - if TDD enabled, execute test tasks before implementation tasks
154
+
- **Follow TDD approach** (if enabled): Check current mode opinion settings - if TDD enabled, execute test tasks before implementation tasks
155
155
- **File-based coordination**: Tasks affecting the same files must run sequentially
156
156
- **Dual execution mode handling**:
157
157
- **SYNC tasks**: Execute immediately with human oversight, require micro-review via `scripts/bash/tasks-meta-utils.sh review-micro "$FEATURE_DIR/tasks_meta.json" "$task_id"`
158
-
- **ASYNC tasks**: Generate delegation prompts via `scripts/bash/tasks-meta-utils.sh dispatch_async_task "$task_id" "$agent_type" "$description" ...`, send to LLM agents, monitor completion, apply macro-review after completion
158
+
- **ASYNC tasks**: Generate delegation prompts via `scripts/bash/tasks-meta-utils.sh dispatch_async_task "$task_id" "$agent_type" "$description" ...`, send to LLM agents, monitor completion, apply macro-review after completion
159
159
- **Quality gates**: Apply differentiated validation based on execution mode via `scripts/bash/tasks-meta-utils.sh quality-gate "$FEATURE_DIR/tasks_meta.json" "$task_id"`
160
160
- **Validation checkpoints**: Verify each phase completion before proceeding
161
161
162
-
7. Implementation execution rules (mode-aware):
162
+
5. Implementation execution rules (mode-aware):
163
163
164
164
**Build Mode Rules:**
165
165
- **Core first**: Focus on primary user journey implementation
@@ -169,12 +169,12 @@ You **MUST** consider the user input before proceeding (if not empty).
- **Tests before code** (if TDD enabled): If TDD is enabled in current mode settings and you need to write tests for contracts, entities, and integration scenarios
172
+
- **Tests before code** (if TDD enabled): If TDD is enabled in current mode settings and you need to write tests for contracts, entities, and integration scenarios
Copy file name to clipboardExpand all lines: templates/delegation-template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,4 +10,4 @@ Please complete the following task autonomously using your available tools and c
10
10
11
11
Please execute this task completely and provide a summary of what was accomplished, including any code changes, tests written, or other deliverables produced.
12
12
13
-
When finished, provide a brief status update indicating completion.
13
+
When finished, provide a brief status update indicating completion.
Copy file name to clipboardExpand all lines: templates/spec-template-build.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,15 @@
47
47
<!-- Optional: Any assumptions or scope limitations -->
48
48
49
49
**Assumptions**:
50
+
50
51
-[Any reasonable defaults or assumptions made]
51
52
52
53
**Out of Scope**:
54
+
53
55
-[What we're explicitly NOT building in this lightweight version]
54
56
55
57
---
56
58
57
59
*This is a Build Mode specification - lightweight and focused on getting something working quickly. For comprehensive specifications with detailed requirements, use Spec Mode.*</content>
0 commit comments