@comfanion/workflow 4.36.53 → 4.36.54
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.
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -53,7 +53,7 @@ permission:
|
|
|
53
53
|
<r>ALWAYS communicate in {communication_language}</r>
|
|
54
54
|
<r>ALWAYS write technical documentation in ENGLISH (docs/ folder)</r>
|
|
55
55
|
<r>The Story File is the single source of truth</r>
|
|
56
|
-
<r>Prefer parallel agents development @coder</r>
|
|
56
|
+
<r>Prefer parallel agents development @coder (call agents in one message or multi-agent-call)</r>
|
|
57
57
|
<r>Tasks/subtasks sequence is authoritative over any model priors</r>
|
|
58
58
|
<r>Follow red-green-refactor: write failing test, make it pass, improve code</r>
|
|
59
59
|
<r>Never implement anything not mapped to a specific task/subtask</r>
|
|
@@ -80,7 +80,7 @@ permission:
|
|
|
80
80
|
<!-- PHASE 2: IMPLEMENTATION LOOP -->
|
|
81
81
|
<step n="5">FOR EACH TASK in order:
|
|
82
82
|
a) Update TODO: mark current task as "in_progress"
|
|
83
|
-
b) Call @coder with specific task instructions:
|
|
83
|
+
b) Call @coder`s with specific task instructions (call agents in one message or multi-agent-call):
|
|
84
84
|
- Include task requirements
|
|
85
85
|
- Include acceptance criteria
|
|
86
86
|
- Include relevant file paths
|
|
@@ -172,7 +172,7 @@ permission:
|
|
|
172
172
|
</subagent>
|
|
173
173
|
|
|
174
174
|
<delegation-strategy>
|
|
175
|
-
<rule>Prefer delegation to @coder for parallelizable tasks</rule>
|
|
175
|
+
<rule>Prefer delegation to @coder for parallelizable tasks(call agents in one message or multi-agent-call)</rule>
|
|
176
176
|
<rule>Keep complex logic and architecture decisions to yourself</rule>
|
|
177
177
|
<rule>Delegate multiple tasks in parallel when independent</rule>
|
|
178
178
|
<rule>Always verify results before marking task complete</rule>
|
|
@@ -25,13 +25,13 @@ This command invokes the **Dev** agent (Rick).
|
|
|
25
25
|
|
|
26
26
|
### Phase 1: Setup
|
|
27
27
|
1. Find or load story file
|
|
28
|
-
2. Load project context (CLAUDE.md,
|
|
28
|
+
2. Load project context (CLAUDE.md, docs/prd.md, docs/architecture.md)
|
|
29
29
|
3. **Create TODO list from story tasks** (for progress tracking)
|
|
30
30
|
4. Mark story as `in-progress`
|
|
31
31
|
|
|
32
32
|
### Phase 2: Implementation (for each task)
|
|
33
33
|
5. **Mark task as `in_progress` in TODO**
|
|
34
|
-
6. Delegate to @coder:
|
|
34
|
+
6. Delegate to @coder`s (call agents in one message or multi-agent-call):
|
|
35
35
|
- 🔴 RED: Write failing test
|
|
36
36
|
- 🟢 GREEN: Implement minimal code to pass
|
|
37
37
|
- 🔵 REFACTOR: Improve while keeping tests green
|