@comfanion/workflow 3.7.0 → 3.7.1

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/bin/cli.js CHANGED
@@ -18,7 +18,7 @@ const program = new Command();
18
18
  program
19
19
  .name('create-opencode-workflow')
20
20
  .description('Initialize OpenCode Workflow system for AI-assisted development')
21
- .version('3.7.0');
21
+ .version('3.7.1');
22
22
 
23
23
  program
24
24
  .command('init')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "3.0.0",
3
- "buildDate": "2026-01-23T16:40:58.918Z",
3
+ "buildDate": "2026-01-23T16:42:54.781Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -6,7 +6,7 @@
6
6
  # PROJECT CONFIGURATION
7
7
  # =============================================================================
8
8
  project_name: "ai-wf"
9
- version: "3.7.0"
9
+ version: "3.7.1"
10
10
 
11
11
  # =============================================================================
12
12
  # USER CONFIGURATION
@@ -14,7 +14,8 @@
14
14
  "description": "Default development agent - use @pm, @architect, @analyst, @dev for specialized tasks"
15
15
  },
16
16
  "plan": {
17
- "disable": true
17
+ "mode": "primary",
18
+ "description": "Planning agent - analyzes requests and delegates to specialized agents: @pm for stories/epics/PRD, @architect for architecture/ADRs, @analyst for requirements, @dev for implementation"
18
19
  }
19
20
  },
20
21