@comfanion/workflow 4.36.61 → 4.36.62

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.62",
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.62",
3
+ "buildDate": "2026-01-26T02:24:41.062Z",
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