claude-code-workflow 6.3.37 → 6.3.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/.claude/commands/workflow/lite-execute.md +2 -0
  2. package/.codex/agents/action-planning-agent.md +885 -0
  3. package/.codex/agents/ccw-loop-b-complete.md +227 -0
  4. package/.codex/agents/ccw-loop-b-debug.md +172 -0
  5. package/.codex/agents/ccw-loop-b-develop.md +147 -0
  6. package/.codex/agents/ccw-loop-b-init.md +82 -0
  7. package/.codex/agents/ccw-loop-b-validate.md +204 -0
  8. package/.codex/agents/ccw-loop-executor.md +260 -0
  9. package/.codex/agents/cli-discuss-agent.md +391 -0
  10. package/.codex/agents/cli-execution-agent.md +333 -0
  11. package/.codex/agents/cli-explore-agent.md +186 -0
  12. package/.codex/agents/cli-lite-planning-agent.md +736 -0
  13. package/.codex/agents/cli-planning-agent.md +562 -0
  14. package/.codex/agents/code-developer.md +408 -0
  15. package/.codex/agents/conceptual-planning-agent.md +321 -0
  16. package/.codex/agents/context-search-agent.md +585 -0
  17. package/.codex/agents/debug-explore-agent.md +436 -0
  18. package/.codex/agents/doc-generator.md +334 -0
  19. package/.codex/agents/issue-plan-agent.md +417 -0
  20. package/.codex/agents/issue-queue-agent.md +311 -0
  21. package/.codex/agents/memory-bridge.md +96 -0
  22. package/.codex/agents/test-context-search-agent.md +402 -0
  23. package/.codex/agents/test-fix-agent.md +359 -0
  24. package/.codex/agents/ui-design-agent.md +595 -0
  25. package/.codex/agents/universal-executor.md +135 -0
  26. package/.codex/prompts/clean.md +409 -0
  27. package/.codex/prompts/issue-discover-by-prompt.md +364 -0
  28. package/.codex/prompts/issue-discover.md +261 -0
  29. package/.codex/prompts/issue-execute.md +10 -0
  30. package/.codex/prompts/issue-new.md +285 -0
  31. package/.codex/prompts/issue-plan.md +161 -63
  32. package/.codex/prompts/issue-queue.md +298 -288
  33. package/.codex/prompts/lite-execute.md +627 -133
  34. package/.codex/prompts/lite-fix.md +670 -0
  35. package/.codex/prompts/lite-plan-a.md +337 -0
  36. package/.codex/prompts/lite-plan-b.md +485 -0
  37. package/.codex/prompts/{lite-plan.md → lite-plan-c.md} +601 -469
  38. package/.codex/skills/ccw-loop/README.md +171 -0
  39. package/.codex/skills/ccw-loop/SKILL.md +349 -0
  40. package/.codex/skills/ccw-loop/phases/actions/action-complete.md +269 -0
  41. package/.codex/skills/ccw-loop/phases/actions/action-debug.md +286 -0
  42. package/.codex/skills/ccw-loop/phases/actions/action-develop.md +183 -0
  43. package/.codex/skills/ccw-loop/phases/actions/action-init.md +164 -0
  44. package/.codex/skills/ccw-loop/phases/actions/action-menu.md +205 -0
  45. package/.codex/skills/ccw-loop/phases/actions/action-validate.md +250 -0
  46. package/.codex/skills/ccw-loop/phases/orchestrator.md +416 -0
  47. package/.codex/skills/ccw-loop/phases/state-schema.md +388 -0
  48. package/.codex/skills/ccw-loop/specs/action-catalog.md +182 -0
  49. package/.codex/skills/ccw-loop-b/README.md +301 -0
  50. package/.codex/skills/ccw-loop-b/SKILL.md +322 -0
  51. package/.codex/skills/ccw-loop-b/phases/orchestrator.md +257 -0
  52. package/.codex/skills/ccw-loop-b/phases/state-schema.md +181 -0
  53. package/.codex/skills/ccw-loop-b/specs/action-catalog.md +383 -0
  54. package/.codex/skills/parallel-dev-cycle/README.md +382 -0
  55. package/.codex/skills/parallel-dev-cycle/SKILL.md +512 -0
  56. package/.codex/skills/parallel-dev-cycle/phases/agents/code-developer.md +242 -0
  57. package/.codex/skills/parallel-dev-cycle/phases/agents/exploration-planner.md +285 -0
  58. package/.codex/skills/parallel-dev-cycle/phases/agents/requirements-analyst.md +285 -0
  59. package/.codex/skills/parallel-dev-cycle/phases/agents/validation-archivist.md +381 -0
  60. package/.codex/skills/parallel-dev-cycle/phases/orchestrator.md +696 -0
  61. package/.codex/skills/parallel-dev-cycle/phases/state-schema.md +436 -0
  62. package/.codex/skills/parallel-dev-cycle/specs/communication-optimization.md +423 -0
  63. package/.codex/skills/parallel-dev-cycle/specs/coordination-protocol.md +391 -0
  64. package/.codex/skills/parallel-dev-cycle/specs/versioning-strategy.md +330 -0
  65. package/ccw/dist/cli.d.ts.map +1 -1
  66. package/ccw/dist/cli.js +4 -0
  67. package/ccw/dist/cli.js.map +1 -1
  68. package/ccw/dist/commands/install.d.ts.map +1 -1
  69. package/ccw/dist/commands/install.js +39 -8
  70. package/ccw/dist/commands/install.js.map +1 -1
  71. package/ccw/dist/commands/issue.d.ts +3 -0
  72. package/ccw/dist/commands/issue.d.ts.map +1 -1
  73. package/ccw/dist/commands/issue.js +107 -0
  74. package/ccw/dist/commands/issue.js.map +1 -1
  75. package/ccw/dist/commands/upgrade.js +1 -1
  76. package/ccw/dist/commands/upgrade.js.map +1 -1
  77. package/ccw/dist/config/litellm-api-config-manager.d.ts.map +1 -1
  78. package/ccw/dist/config/litellm-api-config-manager.js +3 -2
  79. package/ccw/dist/config/litellm-api-config-manager.js.map +1 -1
  80. package/ccw/dist/core/memory-embedder-bridge.d.ts.map +1 -1
  81. package/ccw/dist/core/memory-embedder-bridge.js +2 -5
  82. package/ccw/dist/core/memory-embedder-bridge.js.map +1 -1
  83. package/ccw/dist/core/routes/cli-routes.js.map +1 -1
  84. package/ccw/dist/core/routes/codexlens/config-handlers.d.ts.map +1 -1
  85. package/ccw/dist/core/routes/codexlens/config-handlers.js +7 -6
  86. package/ccw/dist/core/routes/codexlens/config-handlers.js.map +1 -1
  87. package/ccw/dist/core/routes/codexlens/semantic-handlers.d.ts.map +1 -1
  88. package/ccw/dist/core/routes/codexlens/semantic-handlers.js +2 -2
  89. package/ccw/dist/core/routes/codexlens/semantic-handlers.js.map +1 -1
  90. package/ccw/dist/core/routes/graph-routes.d.ts.map +1 -1
  91. package/ccw/dist/core/routes/graph-routes.js +17 -2
  92. package/ccw/dist/core/routes/graph-routes.js.map +1 -1
  93. package/ccw/dist/core/routes/issue-routes.d.ts.map +1 -1
  94. package/ccw/dist/core/routes/issue-routes.js +280 -33
  95. package/ccw/dist/core/routes/issue-routes.js.map +1 -1
  96. package/ccw/dist/core/routes/loop-v2-routes.d.ts +9 -0
  97. package/ccw/dist/core/routes/loop-v2-routes.d.ts.map +1 -1
  98. package/ccw/dist/core/routes/loop-v2-routes.js +56 -4
  99. package/ccw/dist/core/routes/loop-v2-routes.js.map +1 -1
  100. package/ccw/dist/core/routes/system-routes.d.ts.map +1 -1
  101. package/ccw/dist/core/routes/system-routes.js +3 -2
  102. package/ccw/dist/core/routes/system-routes.js.map +1 -1
  103. package/ccw/dist/core/server.d.ts.map +1 -1
  104. package/ccw/dist/core/server.js +5 -3
  105. package/ccw/dist/core/server.js.map +1 -1
  106. package/ccw/dist/tools/claude-cli-tools.d.ts.map +1 -1
  107. package/ccw/dist/tools/claude-cli-tools.js +4 -3
  108. package/ccw/dist/tools/claude-cli-tools.js.map +1 -1
  109. package/ccw/dist/tools/cli-config-manager.d.ts +1 -0
  110. package/ccw/dist/tools/cli-config-manager.d.ts.map +1 -1
  111. package/ccw/dist/tools/cli-config-manager.js +2 -1
  112. package/ccw/dist/tools/cli-config-manager.js.map +1 -1
  113. package/ccw/dist/tools/codex-lens-lsp.d.ts.map +1 -1
  114. package/ccw/dist/tools/codex-lens-lsp.js +2 -5
  115. package/ccw/dist/tools/codex-lens-lsp.js.map +1 -1
  116. package/ccw/dist/tools/codex-lens.d.ts.map +1 -1
  117. package/ccw/dist/tools/codex-lens.js +22 -32
  118. package/ccw/dist/tools/codex-lens.js.map +1 -1
  119. package/ccw/dist/tools/litellm-client.d.ts +6 -0
  120. package/ccw/dist/tools/litellm-client.d.ts.map +1 -1
  121. package/ccw/dist/tools/litellm-client.js +15 -2
  122. package/ccw/dist/tools/litellm-client.js.map +1 -1
  123. package/ccw/dist/tools/loop-task-manager.d.ts +13 -2
  124. package/ccw/dist/tools/loop-task-manager.d.ts.map +1 -1
  125. package/ccw/dist/tools/loop-task-manager.js.map +1 -1
  126. package/ccw/dist/tools/native-session-discovery.d.ts.map +1 -1
  127. package/ccw/dist/tools/native-session-discovery.js +35 -7
  128. package/ccw/dist/tools/native-session-discovery.js.map +1 -1
  129. package/ccw/dist/utils/codexlens-path.d.ts +36 -0
  130. package/ccw/dist/utils/codexlens-path.d.ts.map +1 -0
  131. package/ccw/dist/utils/codexlens-path.js +56 -0
  132. package/ccw/dist/utils/codexlens-path.js.map +1 -0
  133. package/ccw/dist/utils/uv-manager.d.ts.map +1 -1
  134. package/ccw/dist/utils/uv-manager.js +3 -2
  135. package/ccw/dist/utils/uv-manager.js.map +1 -1
  136. package/ccw/src/cli.ts +4 -0
  137. package/ccw/src/commands/install.ts +51 -8
  138. package/ccw/src/commands/issue.ts +119 -0
  139. package/ccw/src/commands/upgrade.ts +1 -1
  140. package/ccw/src/config/litellm-api-config-manager.ts +3 -2
  141. package/ccw/src/core/memory-embedder-bridge.ts +2 -6
  142. package/ccw/src/core/routes/cli-routes.ts +1 -1
  143. package/ccw/src/core/routes/codexlens/config-handlers.ts +7 -6
  144. package/ccw/src/core/routes/codexlens/semantic-handlers.ts +2 -2
  145. package/ccw/src/core/routes/graph-routes.ts +18 -2
  146. package/ccw/src/core/routes/issue-routes.ts +308 -33
  147. package/ccw/src/core/routes/loop-v2-routes.ts +64 -6
  148. package/ccw/src/core/routes/system-routes.ts +3 -2
  149. package/ccw/src/core/server.ts +6 -3
  150. package/ccw/src/templates/dashboard-css/02-session.css +2 -0
  151. package/ccw/src/templates/dashboard-css/04-lite-tasks.css +103 -1
  152. package/ccw/src/templates/dashboard-css/32-issue-manager.css +32 -0
  153. package/ccw/src/templates/dashboard-js/components/cli-history.js +48 -48
  154. package/ccw/src/templates/dashboard-js/components/navigation.js +6 -0
  155. package/ccw/src/templates/dashboard-js/components/notifications.js +6 -0
  156. package/ccw/src/templates/dashboard-js/components/version-check.js +38 -0
  157. package/ccw/src/templates/dashboard-js/i18n.js +126 -0
  158. package/ccw/src/templates/dashboard-js/state.js +2 -0
  159. package/ccw/src/templates/dashboard-js/views/cli-manager.js +1 -1
  160. package/ccw/src/templates/dashboard-js/views/issue-manager.js +183 -1
  161. package/ccw/src/templates/dashboard-js/views/lite-tasks.js +55 -11
  162. package/ccw/src/templates/dashboard-js/views/loop-monitor.js +112 -11
  163. package/ccw/src/templates/dashboard.html +48 -2
  164. package/ccw/src/tools/claude-cli-tools.ts +4 -3
  165. package/ccw/src/tools/cli-config-manager.ts +3 -1
  166. package/ccw/src/tools/codex-lens-lsp.ts +2 -5
  167. package/ccw/src/tools/codex-lens.ts +27 -38
  168. package/ccw/src/tools/litellm-client.ts +16 -2
  169. package/ccw/src/tools/loop-task-manager.ts +13 -2
  170. package/ccw/src/tools/native-session-discovery.ts +38 -7
  171. package/ccw/src/utils/codexlens-path.ts +60 -0
  172. package/ccw/src/utils/uv-manager.ts +3 -2
  173. package/package.json +1 -1
@@ -0,0 +1,383 @@
1
+ # Action Catalog (CCW Loop-B)
2
+
3
+ Complete reference of worker actions and their capabilities.
4
+
5
+ ## Action Matrix
6
+
7
+ | Action | Worker Agent | Purpose | Input Requirements | Output |
8
+ |--------|--------------|---------|-------------------|--------|
9
+ | init | ccw-loop-b-init.md | Session initialization | Task description | Task breakdown + execution plan |
10
+ | develop | ccw-loop-b-develop.md | Code implementation | Task list | Code changes + progress update |
11
+ | debug | ccw-loop-b-debug.md | Problem diagnosis | Issue description | Root cause analysis + fix suggestions |
12
+ | validate | ccw-loop-b-validate.md | Testing and verification | Files to test | Test results + coverage report |
13
+ | complete | ccw-loop-b-complete.md | Session finalization | All worker outputs | Summary + commit message |
14
+
15
+ ## Detailed Action Specifications
16
+
17
+ ### INIT
18
+
19
+ **Purpose**: Parse requirements, create execution plan
20
+
21
+ **Preconditions**:
22
+ - `status === 'running'`
23
+ - `skill_state === null` (first time)
24
+
25
+ **Input**:
26
+ ```
27
+ - Task description (text)
28
+ - Project context files
29
+ ```
30
+
31
+ **Execution**:
32
+ 1. Read `.workflow/project-tech.json`
33
+ 2. Read `.workflow/project-guidelines.json`
34
+ 3. Parse task into phases
35
+ 4. Create task breakdown
36
+ 5. Generate execution plan
37
+
38
+ **Output**:
39
+ ```
40
+ WORKER_RESULT:
41
+ - action: init
42
+ - status: success
43
+ - summary: "Initialized with 5 tasks"
44
+ - next_suggestion: develop
45
+
46
+ TASK_BREAKDOWN:
47
+ - T1: Create auth module
48
+ - T2: Implement JWT utils
49
+ - T3: Write tests
50
+ - T4: Validate implementation
51
+ - T5: Documentation
52
+
53
+ EXECUTION_PLAN:
54
+ 1. Develop (T1-T2)
55
+ 2. Validate (T3-T4)
56
+ 3. Complete (T5)
57
+ ```
58
+
59
+ **Effects**:
60
+ - `skill_state.pending_tasks` populated
61
+ - Progress structure created
62
+ - Ready for develop phase
63
+
64
+ ---
65
+
66
+ ### DEVELOP
67
+
68
+ **Purpose**: Implement code, create/modify files
69
+
70
+ **Preconditions**:
71
+ - `skill_state.pending_tasks.length > 0`
72
+ - `status === 'running'`
73
+
74
+ **Input**:
75
+ ```
76
+ - Task list from state
77
+ - Project conventions
78
+ - Existing code patterns
79
+ ```
80
+
81
+ **Execution**:
82
+ 1. Load pending tasks
83
+ 2. Find existing patterns
84
+ 3. Implement tasks one by one
85
+ 4. Update progress file
86
+ 5. Mark tasks completed
87
+
88
+ **Output**:
89
+ ```
90
+ WORKER_RESULT:
91
+ - action: develop
92
+ - status: success
93
+ - summary: "Implemented 3 tasks"
94
+ - files_changed: ["src/auth.ts", "src/utils.ts"]
95
+ - next_suggestion: validate
96
+
97
+ DETAILED_OUTPUT:
98
+ tasks_completed: [T1, T2]
99
+ metrics:
100
+ lines_added: 180
101
+ lines_removed: 15
102
+ ```
103
+
104
+ **Effects**:
105
+ - Files created/modified
106
+ - `skill_state.completed_tasks` updated
107
+ - Progress documented
108
+
109
+ **Failure Modes**:
110
+ - Pattern unclear → suggest debug
111
+ - Task blocked → mark blocked, continue
112
+ - Partial completion → set `loop_back_to: "develop"`
113
+
114
+ ---
115
+
116
+ ### DEBUG
117
+
118
+ **Purpose**: Diagnose issues, root cause analysis
119
+
120
+ **Preconditions**:
121
+ - Issue exists (test failure, bug report, etc.)
122
+ - `status === 'running'`
123
+
124
+ **Input**:
125
+ ```
126
+ - Issue description
127
+ - Error messages
128
+ - Stack traces
129
+ - Reproduction steps
130
+ ```
131
+
132
+ **Execution**:
133
+ 1. Understand problem symptoms
134
+ 2. Gather evidence from code
135
+ 3. Form hypothesis
136
+ 4. Test hypothesis
137
+ 5. Document root cause
138
+ 6. Suggest fixes
139
+
140
+ **Output**:
141
+ ```
142
+ WORKER_RESULT:
143
+ - action: debug
144
+ - status: success
145
+ - summary: "Root cause: memory leak in event listeners"
146
+ - next_suggestion: develop (apply fixes)
147
+
148
+ ROOT_CAUSE_ANALYSIS:
149
+ hypothesis: "Listener accumulation"
150
+ confidence: high
151
+ evidence: [...]
152
+ mechanism: "Detailed explanation"
153
+
154
+ FIX_RECOMMENDATIONS:
155
+ 1. Add removeAllListeners() on disconnect
156
+ 2. Verification: Monitor memory usage
157
+ ```
158
+
159
+ **Effects**:
160
+ - `skill_state.findings` updated
161
+ - Fix recommendations documented
162
+ - Ready for develop to apply fixes
163
+
164
+ **Failure Modes**:
165
+ - Insufficient info → request more data
166
+ - Multiple hypotheses → rank by likelihood
167
+ - Inconclusive → suggest investigation areas
168
+
169
+ ---
170
+
171
+ ### VALIDATE
172
+
173
+ **Purpose**: Run tests, check coverage, quality gates
174
+
175
+ **Preconditions**:
176
+ - Code exists to validate
177
+ - `status === 'running'`
178
+
179
+ **Input**:
180
+ ```
181
+ - Files to test
182
+ - Test configuration
183
+ - Coverage requirements
184
+ ```
185
+
186
+ **Execution**:
187
+ 1. Identify test framework
188
+ 2. Run unit tests
189
+ 3. Run integration tests
190
+ 4. Measure coverage
191
+ 5. Check quality (lint, types, security)
192
+ 6. Generate report
193
+
194
+ **Output**:
195
+ ```
196
+ WORKER_RESULT:
197
+ - action: validate
198
+ - status: success
199
+ - summary: "113 tests pass, coverage 95%"
200
+ - next_suggestion: complete (all pass) | develop (fix failures)
201
+
202
+ TEST_RESULTS:
203
+ unit_tests: { passed: 98, failed: 0 }
204
+ integration_tests: { passed: 15, failed: 0 }
205
+ coverage: "95%"
206
+
207
+ QUALITY_CHECKS:
208
+ lint: ✓ Pass
209
+ types: ✓ Pass
210
+ security: ✓ Pass
211
+ ```
212
+
213
+ **Effects**:
214
+ - Test results documented
215
+ - Coverage measured
216
+ - Quality gates verified
217
+
218
+ **Failure Modes**:
219
+ - Tests fail → document failures, suggest fixes
220
+ - Coverage low → identify gaps
221
+ - Quality issues → flag problems
222
+
223
+ ---
224
+
225
+ ### COMPLETE
226
+
227
+ **Purpose**: Finalize session, generate summary, commit
228
+
229
+ **Preconditions**:
230
+ - All tasks completed
231
+ - Tests passing
232
+ - `status === 'running'`
233
+
234
+ **Input**:
235
+ ```
236
+ - All worker outputs
237
+ - Progress files
238
+ - Current state
239
+ ```
240
+
241
+ **Execution**:
242
+ 1. Read all worker outputs
243
+ 2. Consolidate achievements
244
+ 3. Verify completeness
245
+ 4. Generate summary
246
+ 5. Prepare commit message
247
+ 6. Cleanup and archive
248
+
249
+ **Output**:
250
+ ```
251
+ WORKER_RESULT:
252
+ - action: complete
253
+ - status: success
254
+ - summary: "Session completed successfully"
255
+ - next_suggestion: null
256
+
257
+ SESSION_SUMMARY:
258
+ achievements: [...]
259
+ files_changed: [...]
260
+ test_results: { ... }
261
+ quality_checks: { ... }
262
+
263
+ COMMIT_SUGGESTION:
264
+ message: "feat: ..."
265
+ files: [...]
266
+ ready_for_pr: true
267
+ ```
268
+
269
+ **Effects**:
270
+ - `status` → 'completed'
271
+ - Summary file created
272
+ - Progress archived
273
+ - Commit message ready
274
+
275
+ **Failure Modes**:
276
+ - Pending tasks remain → mark partial
277
+ - Quality gates fail → list failures
278
+
279
+ ---
280
+
281
+ ## Action Flow Diagrams
282
+
283
+ ### Interactive Mode Flow
284
+
285
+ ```
286
+ +------+
287
+ | INIT |
288
+ +------+
289
+ |
290
+ v
291
+ +------+ user selects
292
+ | MENU |-------------+
293
+ +------+ |
294
+ ^ v
295
+ | +--------------+
296
+ | | spawn worker |
297
+ | +--------------+
298
+ | |
299
+ | v
300
+ | +------+-------+
301
+ +---------| wait result |
302
+ +------+-------+
303
+ |
304
+ v
305
+ +------+-------+
306
+ | update state |
307
+ +--------------+
308
+ |
309
+ v
310
+ [completed?] --no--> [back to MENU]
311
+ |
312
+ yes
313
+ v
314
+ +----------+
315
+ | COMPLETE |
316
+ +----------+
317
+ ```
318
+
319
+ ### Auto Mode Flow
320
+
321
+ ```
322
+ +------+ +---------+ +-------+ +----------+ +----------+
323
+ | INIT | ---> | DEVELOP | ---> | DEBUG | ---> | VALIDATE | ---> | COMPLETE |
324
+ +------+ +---------+ +-------+ +----------+ +----------+
325
+ ^ | |
326
+ | +--- [issues] |
327
+ +--------------------------------+
328
+ [tests fail]
329
+ ```
330
+
331
+ ### Parallel Mode Flow
332
+
333
+ ```
334
+ +------+
335
+ | INIT |
336
+ +------+
337
+ |
338
+ v
339
+ +---------------------+
340
+ | spawn all workers |
341
+ | [develop, debug, |
342
+ | validate] |
343
+ +---------------------+
344
+ |
345
+ v
346
+ +---------------------+
347
+ | wait({ ids: all }) |
348
+ +---------------------+
349
+ |
350
+ v
351
+ +---------------------+
352
+ | merge results |
353
+ +---------------------+
354
+ |
355
+ v
356
+ +---------------------+
357
+ | coordinator decides |
358
+ +---------------------+
359
+ |
360
+ v
361
+ +----------+
362
+ | COMPLETE |
363
+ +----------+
364
+ ```
365
+
366
+ ## Worker Coordination
367
+
368
+ | Scenario | Worker Sequence | Mode |
369
+ |----------|-----------------|------|
370
+ | Simple task | init → develop → validate → complete | Auto |
371
+ | Complex task | init → develop → debug → develop → validate → complete | Auto |
372
+ | Bug fix | init → debug → develop → validate → complete | Auto |
373
+ | Analysis | init → [develop \|\| debug \|\| validate] → complete | Parallel |
374
+ | Interactive | init → menu → user selects → worker → menu → ... | Interactive |
375
+
376
+ ## Best Practices
377
+
378
+ 1. **Init always first**: Parse requirements before execution
379
+ 2. **Validate often**: After each develop phase
380
+ 3. **Debug when needed**: Don't skip diagnosis
381
+ 4. **Complete always last**: Ensure proper cleanup
382
+ 5. **Use parallel wisely**: For independent analysis tasks
383
+ 6. **Follow sequence**: In auto mode, respect dependencies