@comfanion/workflow 4.36.55 → 4.36.57
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 +1 -1
- package/src/build-info.json +2 -2
- package/src/opencode/agents/analyst.md +6 -0
- package/src/opencode/agents/architect.md +10 -0
- package/src/opencode/agents/change-manager.md +2 -1
- package/src/opencode/agents/coder.md +5 -0
- package/src/opencode/agents/dev.md +7 -0
- package/src/opencode/agents/pm.md +8 -0
- package/src/opencode/agents/researcher.md +3 -3
- package/src/opencode/agents/reviewer.md +2 -1
- package/src/opencode/skills/changelog/SKILL.md +10 -0
- package/src/opencode/skills/code-review/SKILL.md +10 -0
- package/src/opencode/skills/dev-story/SKILL.md +11 -0
- package/src/opencode/skills/doc-todo/SKILL.md +10 -0
- package/src/opencode/skills/jira-integration/SKILL.md +10 -0
- package/src/opencode/skills/methodologies/SKILL.md +10 -0
- package/src/opencode/skills/module-documentation/SKILL.md +10 -0
- package/src/opencode/skills/research-methodology/SKILL.md +10 -0
- package/src/opencode/skills/test-design/SKILL.md +10 -0
- package/src/opencode/skills/translation/SKILL.md +10 -0
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -3,6 +3,10 @@ description: "Business Analyst - Use for: gathering requirements, validating req
|
|
|
3
3
|
mode: all
|
|
4
4
|
temperature: 0.3
|
|
5
5
|
|
|
6
|
+
model: anthropic/claude-sonnet-4-5 # Best
|
|
7
|
+
#model: openai/gpt-5.2
|
|
8
|
+
#model: anthropic/claude-opus-4-5
|
|
9
|
+
|
|
6
10
|
# Tools - what this agent can use
|
|
7
11
|
tools:
|
|
8
12
|
read: true
|
|
@@ -103,6 +107,8 @@ permission:
|
|
|
103
107
|
<skill name="acceptance-criteria">Given/When/Then format, testable AC</skill>
|
|
104
108
|
<skill name="unit-writing">Document domains, entities using Universal Unit format</skill>
|
|
105
109
|
<skill name="methodologies">User Interviews, Empathy Mapping, Journey Mapping, Five Whys</skill>
|
|
110
|
+
<skill name="doc-todo">Incremental writing with TODO placeholders</skill>
|
|
111
|
+
<skill name="archiving">Archive completed/obsolete documents</skill>
|
|
106
112
|
</skills>
|
|
107
113
|
|
|
108
114
|
<methodologies>
|
|
@@ -3,6 +3,10 @@ description: "Solution Architect - Use for: system architecture, unit documentat
|
|
|
3
3
|
mode: all # Can be primary agent or invoked via @architect
|
|
4
4
|
temperature: 0.2
|
|
5
5
|
|
|
6
|
+
model: anthropic/claude-opus-4-5 # Best
|
|
7
|
+
#model: openai/gpt-5.2
|
|
8
|
+
#model: anthropic/claude-sonnet-4-5
|
|
9
|
+
|
|
6
10
|
# Tools - what this agent can use
|
|
7
11
|
tools:
|
|
8
12
|
read: true
|
|
@@ -127,6 +131,12 @@ permission:
|
|
|
127
131
|
<skill name="adr-writing">Decision record format, context, consequences</skill>
|
|
128
132
|
<skill name="coding-standards">Code patterns, naming conventions, best practices</skill>
|
|
129
133
|
<skill name="unit-writing">Document modules, domains, services, entities with folder-based structure</skill>
|
|
134
|
+
<skill name="api-design">REST, GraphQL, gRPC API design and contracts</skill>
|
|
135
|
+
<skill name="database-design">Schema design, storage strategy, migrations</skill>
|
|
136
|
+
<skill name="diagram-creation">C4, sequence, ER diagrams</skill>
|
|
137
|
+
<skill name="module-documentation">Per-module detailed documentation</skill>
|
|
138
|
+
<skill name="doc-todo">Incremental writing with TODO placeholders</skill>
|
|
139
|
+
<skill name="archiving">Archive completed/obsolete documents</skill>
|
|
130
140
|
</skills>
|
|
131
141
|
|
|
132
142
|
<design-principles>
|
|
@@ -68,7 +68,8 @@ permission:
|
|
|
68
68
|
</persona>
|
|
69
69
|
|
|
70
70
|
<skills hint="Load from .opencode/skills/{name}/SKILL.md based on task">
|
|
71
|
-
<skill name="
|
|
71
|
+
<skill name="doc-todo">Incremental writing with TODO placeholders</skill>
|
|
72
|
+
<skill name="archiving">Archive completed/obsolete documents</skill>
|
|
72
73
|
</skills>
|
|
73
74
|
|
|
74
75
|
<change-structure>
|
|
@@ -6,6 +6,11 @@ mode: subagent
|
|
|
6
6
|
# model: deepseek/deepseek-chat # Uncomment when available
|
|
7
7
|
temperature: 0.1
|
|
8
8
|
|
|
9
|
+
model: anthropic/claude-haiku-4-5 # Fast + Quality
|
|
10
|
+
#model: z.ai/glm-4.7 # Slow but cheap
|
|
11
|
+
#model: openai/gpt-5.2-codex
|
|
12
|
+
#model: anthropic/claude-opus-4-5
|
|
13
|
+
|
|
9
14
|
# Tools - FULL ACCESS for fast execution
|
|
10
15
|
tools:
|
|
11
16
|
read: true
|
|
@@ -3,6 +3,11 @@ description: "Senior Developer - Use for: implementing stories, TDD development,
|
|
|
3
3
|
mode: all # Can be primary agent or invoked via @dev
|
|
4
4
|
temperature: 0.2
|
|
5
5
|
|
|
6
|
+
model: anthropic/claude-opus-4-5 # Strong
|
|
7
|
+
#model: z.ai/glm-4.7 # Better for orchestration as for me but slow (can broke)
|
|
8
|
+
#model: openai/gpt-5.2-codex
|
|
9
|
+
#model: anthropic/claude-opus-4-5
|
|
10
|
+
|
|
6
11
|
# Tools - FULL ACCESS for implementation
|
|
7
12
|
tools:
|
|
8
13
|
read: true
|
|
@@ -152,6 +157,8 @@ permission:
|
|
|
152
157
|
<skill name="dev-story">Full implementation workflow: red-green-refactor cycle</skill>
|
|
153
158
|
<skill name="code-review">Code review checklist, quality gates, refactoring</skill>
|
|
154
159
|
<skill name="test-design">Test structure, coverage requirements, TDD</skill>
|
|
160
|
+
<skill name="changelog">Maintain repository and document changelogs</skill>
|
|
161
|
+
<skill name="doc-todo">Incremental writing with TODO placeholders</skill>
|
|
155
162
|
</skills>
|
|
156
163
|
|
|
157
164
|
<subagents>
|
|
@@ -3,6 +3,12 @@ description: "Product Manager - Use for: creating PRD, writing epics, writing st
|
|
|
3
3
|
mode: all # Can be primary agent or invoked via @pm
|
|
4
4
|
temperature: 0.3
|
|
5
5
|
|
|
6
|
+
model: anthropic/claude-opus-4-5 # Strong
|
|
7
|
+
#model: openai/gpt-5.2
|
|
8
|
+
#model: anthropic/claude-sonnet-4-5
|
|
9
|
+
#model: z.ai/glm-4.7 # Better for orchestration as for me but slow (can broke)
|
|
10
|
+
|
|
11
|
+
|
|
6
12
|
# Tools - what this agent can use
|
|
7
13
|
tools:
|
|
8
14
|
read: true
|
|
@@ -134,6 +140,8 @@ permission:
|
|
|
134
140
|
<skill name="jira-integration">Jira API sync, field mapping, status updates</skill>
|
|
135
141
|
<skill name="unit-writing">Document features using Universal Unit format</skill>
|
|
136
142
|
<skill name="translation">Translate docs to user language, export to Confluence</skill>
|
|
143
|
+
<skill name="doc-todo">Incremental writing with TODO placeholders</skill>
|
|
144
|
+
<skill name="archiving">Archive completed/obsolete documents</skill>
|
|
137
145
|
</skills>
|
|
138
146
|
|
|
139
147
|
<sizing-guidelines>
|
|
@@ -4,9 +4,9 @@ description: "Research Specialist - Use for: technical research, market research
|
|
|
4
4
|
# Model for research - Gemini recommended for large context and grounding
|
|
5
5
|
model: google/gemini-2.5-pro
|
|
6
6
|
# Alternatives:
|
|
7
|
-
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
7
|
+
#model: anthropic/claude-sonnet-4-5 # Best
|
|
8
|
+
#model: google/gemini-2.5-flash
|
|
9
|
+
#model: anthropic/claude-sonnet-4-5
|
|
10
10
|
|
|
11
11
|
mode: all # Can be primary agent or invoked via @researcher
|
|
12
12
|
temperature: 0.4
|
|
@@ -3,7 +3,8 @@ description: "Code Reviewer - Use for: security review, bug finding, test covera
|
|
|
3
3
|
mode: subagent # Invoked by @dev or via /review-story
|
|
4
4
|
temperature: 0.1 # Low temperature for precise analysis
|
|
5
5
|
|
|
6
|
-
model: openai/gpt-5.2-codex # Best at finding bugs and security issues
|
|
6
|
+
#model: openai/gpt-5.2-codex # Best at finding bugs and security issues
|
|
7
|
+
model: anthropic/claude-sonnet-4-5 # Best at finding bugs and security issues
|
|
7
8
|
|
|
8
9
|
# Tools - Read-only for review (no writes)
|
|
9
10
|
tools:
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: changelog
|
|
3
|
+
description: Maintain changelogs for repository and documents
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: documentation
|
|
8
|
+
agents: [dev, all]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Changelog Skill
|
|
2
12
|
|
|
3
13
|
> **Purpose**: Maintain changelogs for repository and documents
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-review
|
|
3
|
+
description: How to perform thorough code reviews for implemented stories
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: development
|
|
8
|
+
agents: [reviewer, dev]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Code Review Skill
|
|
2
12
|
|
|
3
13
|
How to perform thorough code reviews for implemented stories.
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dev-story
|
|
3
|
+
description: Execute a story by implementing tasks/subtasks using TDD, validating, and updating story file
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: development
|
|
8
|
+
agents: [dev]
|
|
9
|
+
artifacts: story files
|
|
10
|
+
---
|
|
11
|
+
|
|
1
12
|
# Dev Story Skill
|
|
2
13
|
|
|
3
14
|
Execute a story by implementing tasks/subtasks, writing tests, validating, and updating the story file per acceptance criteria.
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: doc-todo
|
|
3
|
+
description: Incremental document writing with TODO placeholders
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: documentation
|
|
8
|
+
agents: [all]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Documentation TODO Skill
|
|
2
12
|
|
|
3
13
|
> **Purpose**: Incremental document writing with TODO placeholders
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: jira-integration
|
|
3
|
+
description: Bidirectional sync between local docs and Jira with development control
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: project-management
|
|
8
|
+
agents: [pm, dev]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Jira Integration Skill
|
|
2
12
|
|
|
3
13
|
> **Purpose**: Bidirectional sync between local docs and Jira with development control
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: methodologies
|
|
3
|
+
description: Structured methods for requirements, analysis, and problem-solving
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: analysis
|
|
8
|
+
agents: [analyst, pm, architect, researcher]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Methodologies Skill
|
|
2
12
|
|
|
3
13
|
> **Purpose**: Structured methods for requirements, analysis, and problem-solving
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: module-documentation
|
|
3
|
+
description: How to create detailed per-module documentation
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: documentation
|
|
8
|
+
agents: [architect, dev]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Module Documentation Skill
|
|
2
12
|
|
|
3
13
|
How to create detailed per-module documentation.
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: research-methodology
|
|
3
|
+
description: How to conduct thorough technical, market, domain, and competitive research
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: research
|
|
8
|
+
agents: [researcher]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Research Methodology Skill
|
|
2
12
|
|
|
3
13
|
How to conduct thorough technical, market, domain, and competitive research.
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-design
|
|
3
|
+
description: How to design and write effective tests for implementations
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: development
|
|
8
|
+
agents: [dev, coder]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Test Design Skill
|
|
2
12
|
|
|
3
13
|
How to design and write effective tests for implementations.
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: translation
|
|
3
|
+
description: Translate technical docs to user language, export to Confluence format
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: opencode
|
|
6
|
+
metadata:
|
|
7
|
+
domain: documentation
|
|
8
|
+
agents: [pm, all]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Translation & Export Skill
|
|
2
12
|
|
|
3
13
|
> **Purpose**: Translate technical docs to user language, export to Confluence format
|