@comfanion/workflow 3.6.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.6.0');
21
+ .version('3.7.1');
22
22
 
23
23
  program
24
24
  .command('init')
@@ -29,7 +29,7 @@ program
29
29
  .option('--stub', 'Use STUB methodology')
30
30
  .option('--full', 'Create full repo structure')
31
31
  .action(async (options) => {
32
- console.log(chalk.blue.bold('\nšŸš€ OpenCode Workflow v3.6\n'));
32
+ console.log(chalk.blue.bold('\nšŸš€ OpenCode Workflow v3.7\n'));
33
33
 
34
34
  const targetDir = path.join(process.cwd(), '.opencode');
35
35
  const existingConfigPath = path.join(targetDir, 'config.yaml');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "3.6.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:28:39.704Z",
3
+ "buildDate": "2026-01-23T16:42:54.781Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Strategic Business Analyst - Requirements gathering, validation, research"
3
- mode: primary
2
+ description: "Business Analyst - Use for: gathering requirements, validating requirements, brainstorming. Has skills: requirements-gathering, requirements-validation"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Solution Architect - System design, module docs, ADRs, coding standards, API design"
3
- mode: primary
2
+ description: "Solution Architect - Use for: system architecture, module documentation, ADRs, coding standards, API design. Has skills: architecture-design, architecture-validation, adr-writing, module-documentation, coding-standards"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Change Manager - Manages change proposals with delta tracking"
3
- mode: primary
2
+ description: "Change Manager - Use for: change proposals, document updates with delta tracking, reviewing changes before merge"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Senior Developer - Story implementation, TDD, code review"
3
- mode: primary
2
+ description: "Senior Developer - Use for: implementing stories, TDD development, code review, running tests. Has skills: code-review, test-design"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Product Manager - PRD, epics, stories, sprint planning, Jira sync"
3
- mode: primary
2
+ description: "Product Manager - Use for: creating PRD, writing epics, writing stories, sprint planning, Jira sync. Has skills: prd-writing, epic-writing, story-writing, sprint-planning, jira-integration"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: "Research Specialist - Technical, market, and domain research with structured documentation"
3
- mode: primary
2
+ description: "Research Specialist - Use for: technical research, market research, domain research, competitive analysis. Has skills: research-methodology, methodologies"
3
+ mode: all
4
4
  tools:
5
5
  write: true
6
6
  edit: true
@@ -6,7 +6,7 @@
6
6
  # PROJECT CONFIGURATION
7
7
  # =============================================================================
8
8
  project_name: "ai-wf"
9
- version: "3.6.0"
9
+ version: "3.7.1"
10
10
 
11
11
  # =============================================================================
12
12
  # USER CONFIGURATION
@@ -11,17 +11,11 @@
11
11
  "agent": {
12
12
  "build": {
13
13
  "mode": "primary",
14
- "description": "Default development agent with full tool access",
15
- "model": "anthropic/claude-sonnet-4-20250514"
14
+ "description": "Default development agent - use @pm, @architect, @analyst, @dev for specialized tasks"
16
15
  },
17
16
  "plan": {
18
17
  "mode": "primary",
19
- "description": "Planning agent - analyzes without making changes",
20
- "model": "anthropic/claude-sonnet-4-20250514",
21
- "permission": {
22
- "edit": "ask",
23
- "bash": "ask"
24
- }
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"
25
19
  }
26
20
  },
27
21