@comfanion/workflow 4.36.61 → 4.36.63

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.61",
3
+ "version": "4.36.63",
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.61",
3
- "buildDate": "2026-01-26T02:11:09.253Z",
2
+ "version": "4.36.63",
3
+ "buildDate": "2026-01-26T02:37:19.900Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -17,7 +17,7 @@ tools:
17
17
  list: true
18
18
  skill: true
19
19
  question: true
20
- bash: false # No shell commands needed
20
+ bash: true # For file operations
21
21
  webfetch: true # For research
22
22
  todowrite: true # Track complex requirements gathering
23
23
  todoread: true
@@ -27,7 +27,13 @@ tools:
27
27
  # Permissions - granular control
28
28
  permission:
29
29
  edit: allow # Can write documentation
30
- bash: deny # No bash access
30
+ bash:
31
+ "*": ask
32
+ "ls *": allow
33
+ "cat *": allow
34
+ "tree *": allow
35
+ "mkdir *": allow
36
+ "mv *": allow
31
37
  ---
32
38
 
33
39
  <agent id="analyst" name="Sara" title="Business Analyst" icon="📊">
@@ -18,7 +18,7 @@ tools:
18
18
  skill: true
19
19
  question: true
20
20
  bash: true # For codebase analysis
21
- webfetch: false # Use @researcher for web research
21
+ webfetch: true # For technical research
22
22
  todowrite: true # Architecture can be complex multi-step
23
23
  todoread: true
24
24
  lsp: true # Code intelligence for architecture analysis
@@ -39,6 +39,7 @@ permission:
39
39
  "mkdir *": allow
40
40
  "head *": allow
41
41
  "tail *": allow
42
+ "mv *": allow
42
43
  ---
43
44
 
44
45
  <agent id="architect" name="Winston" title="Solution Architect" icon="🏗️">
@@ -20,7 +20,7 @@ tools:
20
20
  skill: true
21
21
  question: true
22
22
  bash: true # Limited bash for directory ops
23
- webfetch: false # Use @researcher for web research
23
+ webfetch: true # For product research
24
24
  todowrite: true # PM tracks complex planning tasks
25
25
  todoread: true
26
26
  search: true # PREFERRED: Semantic search for docs/PRD/architecture
@@ -35,6 +35,7 @@ permission:
35
35
  "cat *": allow
36
36
  "tree *": allow
37
37
  "mkdir *": allow
38
+ "mv *": allow
38
39
  "git branch*": allow
39
40
  "git status": allow
40
41
  "git log*": allow
@@ -25,13 +25,13 @@ Story task is a specification. @coder needs executable instruction with full con
25
25
  - **What was done** - results of previous tasks that this task depends on
26
26
  - **Imports** - what packages to use
27
27
 
28
- ### Add Implementation Details
28
+ ### Add Implementation Direction
29
29
 
30
- Story has Code Sketch. Expand it:
31
- - Actual method signatures with types
32
- - Error handling approach
33
- - Logging requirements
34
- - Validation rules
30
+ Provide guidance, not code:
31
+ - Interface signatures (what methods to implement)
32
+ - Error handling approach (what errors to return)
33
+ - Logging requirements (what to log)
34
+ - Validation rules (what to validate)
35
35
 
36
36
  ### Add Verification
37
37
 
@@ -62,8 +62,8 @@ Structure:
62
62
  ### Requirements
63
63
  [Numbered list of what to implement with signatures/details]
64
64
 
65
- ### Implementation Pattern
66
- [Code example or reference to existing code]
65
+ ### Pattern Reference
66
+ [Link to existing similar code to follow, NOT ready implementation]
67
67
 
68
68
  ### Error Handling
69
69
  [How to handle errors]
@@ -115,6 +115,24 @@ Context: code to test, existing test examples
115
115
  Requirements: test scenarios, mocks
116
116
  Pattern: existing test structure
117
117
 
118
+ ## Implementation is @coder's Job
119
+
120
+ **DO NOT give ready code. Give direction.**
121
+
122
+ ✅ **DO provide:**
123
+ - Links to existing code as pattern reference
124
+ - Interface signatures (method names, params, return types)
125
+ - Requirements (what logic to implement)
126
+ - Error handling approach
127
+ - Validation rules
128
+
129
+ ❌ **DO NOT provide:**
130
+ - Full method implementations
131
+ - Ready-to-copy code blocks
132
+ - Complete structs with all logic
133
+
134
+ **@coder writes the implementation.** Give direction, not solution.
135
+
118
136
  ## Methodology
119
137
 
120
138
  Include in task based on config.yaml:
@@ -126,6 +126,8 @@ Each task MUST be self-contained:
126
126
  - [ ] Tests pass
127
127
  ```
128
128
 
129
+
130
+
129
131
  ## Reference Format
130
132
 
131
133
  Always use `→` prefix: