@comfanion/workflow 4.36.53 → 4.36.55

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.36.53",
3
+ "version": "4.36.55",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.36.53",
3
- "buildDate": "2026-01-25T21:30:53.673Z",
2
+ "version": "4.36.55",
3
+ "buildDate": "2026-01-25T22:59:29.545Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  description: "Fast Coder - Use for: quick implementation tasks, writing code, fixing bugs. Executes without asking questions."
3
3
  mode: subagent
4
- hidden: true # Internal subagent, invoked by @dev
5
4
 
6
5
  # Fast model for coding - no reasoning overhead
7
6
  # model: deepseek/deepseek-chat # Uncomment when available
@@ -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 if needed)</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>
@@ -63,7 +63,7 @@ permission:
63
63
  <r>Find and use `**/prd.md`, `**/architecture.md`, `AGENTS.md` and `CLAUDE.md` as source of truth</r>
64
64
  <r critical="MANDATORY">🔍 SEARCH FIRST: Call search() BEFORE glob when exploring codebase.
65
65
  search({ query: "feature pattern", index: "code" }) → THEN glob if needed</r>
66
- <r>For parallel execution: call multiple @agents in one message (they run concurrently)</r>
66
+ <r>For parallel execution: call multiple @agents in one message (call agents in one message or multi-agent-call if needed)</r>
67
67
  </rules>
68
68
 
69
69
  <dev-story-workflow hint="When executing /dev-story command" critical="FOLLOW THIS EXACTLY">
@@ -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 if needed):
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 if needed)</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, project-context.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 if needed):
35
35
  - 🔴 RED: Write failing test
36
36
  - 🟢 GREEN: Implement minimal code to pass
37
37
  - 🔵 REFACTOR: Improve while keeping tests green