@comfanion/workflow 4.36.25 → 4.36.27
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/README.md +5 -0
- package/package.json +1 -1
- package/src/build-info.json +2 -2
- package/src/opencode/FLOW.yaml +2 -3
- package/src/opencode/agents/researcher.md +5 -4
package/README.md
CHANGED
|
@@ -297,6 +297,11 @@ export JIRA_API_TOKEN="your-api-token"
|
|
|
297
297
|
- **npm:** https://www.npmjs.com/package/@comfanion/workflow
|
|
298
298
|
- **GitLab:** https://gitlab.com/comfanion/workflow
|
|
299
299
|
|
|
300
|
+
## Inspired By
|
|
301
|
+
|
|
302
|
+
- **[BMAD Method](https://github.com/bmadcode/BMAD-METHOD)** - Breakthrough Method of Agile AI-Driven Development
|
|
303
|
+
- **[OpenCode](https://github.com/opencode-ai/opencode)** - AI-native code editor
|
|
304
|
+
|
|
300
305
|
## License
|
|
301
306
|
|
|
302
307
|
MIT
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED
package/src/opencode/FLOW.yaml
CHANGED
|
@@ -412,9 +412,8 @@ agents:
|
|
|
412
412
|
icon: "🔍"
|
|
413
413
|
description: Researcher - conducts technical, market, and domain research
|
|
414
414
|
mode: subagent
|
|
415
|
-
model: google/gemini-
|
|
416
|
-
#
|
|
417
|
-
# alternatives: gemini-2.5-flash (faster), claude-4.5-opus (wiser)
|
|
415
|
+
model: google/gemini-2.5-pro # Best for research - 1M context, grounding
|
|
416
|
+
# Alternatives: gemini-2.5-flash (faster), gemini-3-pro (preview)
|
|
418
417
|
temperature: 0.4
|
|
419
418
|
file: agents/researcher.md
|
|
420
419
|
expertise:
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Research Specialist - Use for: technical research, market research, domain research, competitive analysis. Has skills: research-methodology, methodologies"
|
|
3
3
|
|
|
4
|
-
#
|
|
5
|
-
model: google/gemini-2.5-pro
|
|
4
|
+
# Model for research - Gemini recommended for large context and grounding
|
|
5
|
+
model: google/gemini-2.5-pro
|
|
6
6
|
# Alternatives:
|
|
7
|
-
# google/gemini-2.5-flash-
|
|
8
|
-
#
|
|
7
|
+
# google/gemini-2.5-flash - faster, cheaper
|
|
8
|
+
# google/gemini-2.0-flash - even faster
|
|
9
|
+
# anthropic/claude-sonnet-4-20250514 - balanced
|
|
9
10
|
|
|
10
11
|
mode: all # Can be primary agent or invoked via @researcher
|
|
11
12
|
temperature: 0.4
|