@comfanion/workflow 3.6.0 ā 3.7.0
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 +2 -2
- package/package.json +1 -1
- package/src/build-info.json +1 -1
- package/src/opencode/agents/analyst.md +2 -2
- package/src/opencode/agents/architect.md +2 -2
- package/src/opencode/agents/change-manager.md +2 -2
- package/src/opencode/agents/dev.md +2 -2
- package/src/opencode/agents/pm.md +2 -2
- package/src/opencode/agents/researcher.md +2 -2
- package/src/opencode/config.yaml +1 -1
- package/src/opencode/opencode.json +2 -9
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.
|
|
21
|
+
.version('3.7.0');
|
|
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.
|
|
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
package/src/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: "
|
|
3
|
-
mode:
|
|
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 -
|
|
3
|
-
mode:
|
|
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 -
|
|
3
|
-
mode:
|
|
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 -
|
|
3
|
-
mode:
|
|
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:
|
|
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 -
|
|
3
|
-
mode:
|
|
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
|
package/src/opencode/config.yaml
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# PROJECT CONFIGURATION
|
|
7
7
|
# =============================================================================
|
|
8
8
|
project_name: "ai-wf"
|
|
9
|
-
version: "3.
|
|
9
|
+
version: "3.7.0"
|
|
10
10
|
|
|
11
11
|
# =============================================================================
|
|
12
12
|
# USER CONFIGURATION
|
|
@@ -11,17 +11,10 @@
|
|
|
11
11
|
"agent": {
|
|
12
12
|
"build": {
|
|
13
13
|
"mode": "primary",
|
|
14
|
-
"description": "Default development agent
|
|
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
|
-
"
|
|
19
|
-
"description": "Planning agent - analyzes without making changes",
|
|
20
|
-
"model": "anthropic/claude-sonnet-4-20250514",
|
|
21
|
-
"permission": {
|
|
22
|
-
"edit": "ask",
|
|
23
|
-
"bash": "ask"
|
|
24
|
-
}
|
|
17
|
+
"disable": true
|
|
25
18
|
}
|
|
26
19
|
},
|
|
27
20
|
|