convoke-agents 2.4.0 → 3.0.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.
Files changed (67) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/INSTALLATION.md +109 -86
  3. package/README.md +220 -163
  4. package/UPDATE-GUIDE.md +63 -23
  5. package/_bmad/bme/_gyre/README.md +100 -0
  6. package/_bmad/bme/_gyre/agents/.gitkeep +0 -0
  7. package/_bmad/bme/_gyre/agents/model-curator.md +128 -0
  8. package/_bmad/bme/_gyre/agents/readiness-analyst.md +127 -0
  9. package/_bmad/bme/_gyre/agents/review-coach.md +130 -0
  10. package/_bmad/bme/_gyre/agents/stack-detective.md +125 -0
  11. package/_bmad/bme/_gyre/compass-routing-reference.md +168 -0
  12. package/_bmad/bme/_gyre/config.yaml +22 -0
  13. package/_bmad/bme/_gyre/contracts/.gitkeep +0 -0
  14. package/_bmad/bme/_gyre/contracts/gc1-stack-profile.md +152 -0
  15. package/_bmad/bme/_gyre/contracts/gc2-capabilities-manifest.md +189 -0
  16. package/_bmad/bme/_gyre/contracts/gc3-findings-report.md +197 -0
  17. package/_bmad/bme/_gyre/contracts/gc4-feedback-loop.md +209 -0
  18. package/_bmad/bme/_gyre/guides/ATLAS-USER-GUIDE.md +177 -0
  19. package/_bmad/bme/_gyre/guides/COACH-USER-GUIDE.md +172 -0
  20. package/_bmad/bme/_gyre/guides/LENS-USER-GUIDE.md +181 -0
  21. package/_bmad/bme/_gyre/guides/SCOUT-USER-GUIDE.md +158 -0
  22. package/_bmad/bme/_gyre/workflows/.gitkeep +0 -0
  23. package/_bmad/bme/_gyre/workflows/accuracy-validation/steps/step-01-select-repos.md +55 -0
  24. package/_bmad/bme/_gyre/workflows/accuracy-validation/steps/step-02-run-validation.md +78 -0
  25. package/_bmad/bme/_gyre/workflows/accuracy-validation/steps/step-03-score-results.md +143 -0
  26. package/_bmad/bme/_gyre/workflows/accuracy-validation/workflow.md +41 -0
  27. package/_bmad/bme/_gyre/workflows/delta-report/steps/step-01-load-history.md +63 -0
  28. package/_bmad/bme/_gyre/workflows/delta-report/steps/step-02-compute-delta.md +72 -0
  29. package/_bmad/bme/_gyre/workflows/delta-report/steps/step-03-present-delta.md +143 -0
  30. package/_bmad/bme/_gyre/workflows/delta-report/workflow.md +34 -0
  31. package/_bmad/bme/_gyre/workflows/full-analysis/steps/step-01-initialize.md +68 -0
  32. package/_bmad/bme/_gyre/workflows/full-analysis/steps/step-02-detect-stack.md +49 -0
  33. package/_bmad/bme/_gyre/workflows/full-analysis/steps/step-03-generate-model.md +52 -0
  34. package/_bmad/bme/_gyre/workflows/full-analysis/steps/step-04-analyze-gaps.md +42 -0
  35. package/_bmad/bme/_gyre/workflows/full-analysis/steps/step-05-review-findings.md +128 -0
  36. package/_bmad/bme/_gyre/workflows/full-analysis/workflow.md +39 -0
  37. package/_bmad/bme/_gyre/workflows/gap-analysis/steps/step-01-load-manifest.md +70 -0
  38. package/_bmad/bme/_gyre/workflows/gap-analysis/steps/step-02-observability-analysis.md +110 -0
  39. package/_bmad/bme/_gyre/workflows/gap-analysis/steps/step-03-deployment-analysis.md +87 -0
  40. package/_bmad/bme/_gyre/workflows/gap-analysis/steps/step-04-cross-domain-correlation.md +105 -0
  41. package/_bmad/bme/_gyre/workflows/gap-analysis/steps/step-05-present-findings.md +172 -0
  42. package/_bmad/bme/_gyre/workflows/gap-analysis/workflow.md +38 -0
  43. package/_bmad/bme/_gyre/workflows/model-generation/steps/step-01-load-profile.md +74 -0
  44. package/_bmad/bme/_gyre/workflows/model-generation/steps/step-02-generate-capabilities.md +116 -0
  45. package/_bmad/bme/_gyre/workflows/model-generation/steps/step-03-web-enrichment.md +89 -0
  46. package/_bmad/bme/_gyre/workflows/model-generation/steps/step-04-write-manifest.md +122 -0
  47. package/_bmad/bme/_gyre/workflows/model-generation/workflow.md +40 -0
  48. package/_bmad/bme/_gyre/workflows/model-review/steps/step-01-load-context.md +86 -0
  49. package/_bmad/bme/_gyre/workflows/model-review/steps/step-02-walkthrough.md +116 -0
  50. package/_bmad/bme/_gyre/workflows/model-review/steps/step-03-apply-amendments.md +92 -0
  51. package/_bmad/bme/_gyre/workflows/model-review/steps/step-04-capture-feedback.md +107 -0
  52. package/_bmad/bme/_gyre/workflows/model-review/steps/step-05-summary.md +60 -0
  53. package/_bmad/bme/_gyre/workflows/model-review/workflow.md +41 -0
  54. package/_bmad/bme/_gyre/workflows/stack-detection/steps/step-01-scan-filesystem.md +176 -0
  55. package/_bmad/bme/_gyre/workflows/stack-detection/steps/step-02-classify-stack.md +111 -0
  56. package/_bmad/bme/_gyre/workflows/stack-detection/steps/step-03-guard-questions.md +117 -0
  57. package/_bmad/bme/_gyre/workflows/stack-detection/workflow.md +42 -0
  58. package/_bmad/bme/_vortex/config.yaml +1 -1
  59. package/package.json +6 -2
  60. package/scripts/archive.js +304 -0
  61. package/scripts/convoke-doctor.js +146 -132
  62. package/scripts/docs-audit.js +21 -5
  63. package/scripts/install-gyre-agents.js +140 -0
  64. package/scripts/install-vortex-agents.js +0 -0
  65. package/scripts/update/lib/agent-registry.js +70 -0
  66. package/scripts/update/lib/refresh-installation.js +152 -30
  67. package/scripts/update/lib/validator.js +160 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [3.0.0] - 2026-03-25
11
+
12
+ ### Added
13
+
14
+ - **Team Factory extension workflows** — Add Agent (`step-add-agent.md`) and Add Skill (`step-add-skill.md`) workflows for extending existing teams and agents
15
+ - **Appender modules** — `registry-appender.js`, `config-appender.js`, `csv-appender.js` for automated wiring when adding agents or skills to existing teams
16
+ - **Extension validator** — `validateSkillExtension()` and `buildSkillExtensionManifest()` for validating factory-generated extensions
17
+ - **Multi-team docs-audit** — `checkStaleReferences()` now validates against all registered teams (Vortex + Gyre) instead of only Vortex, eliminating false positives for Gyre references
18
+
19
+ ### Fixed
20
+
21
+ - **docs-audit false positives** — 39 false-positive stale reference findings caused by audit only knowing Vortex counts (7 agents, 22 workflows). Now uses registry-driven valid count Sets for all teams.
22
+ - **Brand reference false positives** — Lines documenting the historical rename (`bmad-enhanced → convoke-agents`) no longer flagged as stale brand references
23
+
24
+ ---
25
+
10
26
  ## [2.4.0] - 2026-03-15
11
27
 
12
28
  ### Added
package/INSTALLATION.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Installation Guide
2
2
 
3
- Complete guide to installing Convoke Vortex agents into your project.
3
+ Complete guide to installing Convoke agent teams into your project.
4
+
5
+ - **Package:** `convoke-agents`
6
+ - **Version:** 3.0.0
7
+ - **Last Updated:** 2026-03-24
4
8
 
5
9
  ---
6
10
 
@@ -16,11 +20,25 @@ Convoke works **standalone** or as an extension to [BMAD Method](https://github.
16
20
 
17
21
  ## Quick Install
18
22
 
23
+ **Everything (Vortex + Gyre + Enhance):**
24
+
25
+ ```bash
26
+ npm install convoke-agents && npx -p convoke-agents convoke-install
27
+ ```
28
+
29
+ All 11 agents (7 Vortex + 4 Gyre), the Enhance module, and all supporting files are installed and ready to use.
30
+
31
+ **Vortex only** (product discovery):
32
+
19
33
  ```bash
20
34
  npm install convoke-agents && npx -p convoke-agents convoke-install-vortex
21
35
  ```
22
36
 
23
- All 7 Vortex agents (Emma, Isla, Mila, Liam, Wade, Noah, Max) with 22 workflows are installed and ready to use.
37
+ **Gyre only** (production readiness):
38
+
39
+ ```bash
40
+ npm install convoke-agents && npx -p convoke-agents convoke-install-gyre
41
+ ```
24
42
 
25
43
  ---
26
44
 
@@ -32,8 +50,12 @@ All 7 Vortex agents (Emma, Isla, Mila, Liam, Wade, Noah, Max) with 22 workflows
32
50
  # Install into your project
33
51
  npm install convoke-agents
34
52
 
35
- # Install all Vortex agents and workflows
36
- npx -p convoke-agents convoke-install-vortex
53
+ # Install everything
54
+ npx -p convoke-agents convoke-install
55
+
56
+ # Or install individual teams
57
+ npx -p convoke-agents convoke-install-vortex # Product Discovery (7 agents)
58
+ npx -p convoke-agents convoke-install-gyre # Production Readiness (4 agents)
37
59
  ```
38
60
 
39
61
  ### Option 2: Clone from Source (Contributors Only)
@@ -56,73 +78,51 @@ Agents are pre-installed in the repository for development. Note that this does
56
78
 
57
79
  ```
58
80
  your-project/
59
- ├── _bmad/
60
- │ ├── bme/
61
- │ │ └── _vortex/
62
- │ │ ├── agents/
63
- │ │ ├── contextualization-expert.md # Emma
64
- │ │ ├── discovery-empathy-expert.md # Isla
65
- │ │ ├── research-convergence-specialist.md # Mila
66
- │ │ ├── hypothesis-engineer.md # Liam
67
- │ │ ├── lean-experiments-specialist.md # Wade
68
- │ │ ├── production-intelligence-specialist.md # Noah
69
- │ │ └── learning-decision-expert.md # Max
70
- │ │ ├── workflows/
71
- │ │ ├── lean-persona/ # Emma workflows
72
- │ │ ├── product-vision/
73
- ├── contextualize-scope/
74
- ├── empathy-map/ # Isla workflows
75
- ├── user-interview/
76
- │ ├── user-discovery/
77
- │ │ │ ├── research-convergence/ # Mila workflows
78
- │ │ │ ├── pivot-resynthesis/
79
- │ │ ├── pattern-mapping/
80
- │ │ │ ├── hypothesis-engineering/ # Liam workflows
81
- │ │ │ ├── assumption-mapping/
82
- │ │ │ ├── experiment-design/
83
- │ │ │ ├── mvp/ # Wade workflows
84
- │ │ │ ├── lean-experiment/
85
- │ │ │ ├── proof-of-concept/
86
- │ │ │ ├── proof-of-value/
87
- │ │ │ ├── signal-interpretation/ # Noah workflows
88
- │ │ │ ├── behavior-analysis/
89
- │ │ │ ├── production-monitoring/
90
- │ │ │ ├── learning-card/ # Max workflows
91
- │ │ │ ├── pivot-patch-persevere/
92
- │ │ │ └── vortex-navigation/
93
- │ │ └── config.yaml
94
- │ └── _config/
95
- │ └── agent-manifest.csv
81
+ ├── _bmad/bme/
82
+ │ ├── _vortex/ # Team: Product Discovery
83
+ │ │ ├── agents/ # 7 agent definition files
84
+ │ │ ├── workflows/ # 22 workflows
85
+ │ │ ├── contracts/ # Handoff contracts (HC1-HC5 artifact, HC6-HC10 routing)
86
+ │ │ ├── guides/ # User guides (all 7 agents)
87
+ │ │ └── config.yaml # Configuration
88
+ │ ├── _gyre/ # Team: Production Readiness
89
+ │ │ ├── agents/ # 4 agent definition files
90
+ │ │ ├── workflows/ # 7 workflows
91
+ │ │ ├── contracts/ # Artifact contract schemas (GC1-GC4)
92
+ │ │ ├── guides/ # User guides (all 4 agents)
93
+ │ │ └── config.yaml # Configuration
94
+ └── _enhance/ # Skill: Agent Capability Upgrades
95
+ │ ├── workflows/ # Skill workflows (initiatives-backlog)
96
+ │ ├── extensions/ # Agent menu patch descriptors
97
+ │ ├── guides/ # Module author guide
98
+ └── config.yaml # Configuration
99
+ ├── .claude/skills/ # Claude Code skill wrappers (auto-generated)
100
+ ├── _bmad/_config/
101
+ └── agent-manifest.csv # Agent registry
96
102
  └── _bmad-output/
97
- └── vortex-artifacts/
98
- ├── EMMA-USER-GUIDE.md
99
- ├── ISLA-USER-GUIDE.md
100
- ├── MILA-USER-GUIDE.md
101
- ├── LIAM-USER-GUIDE.md
102
- ├── WADE-USER-GUIDE.md
103
- ├── NOAH-USER-GUIDE.md
104
- ├── MAX-USER-GUIDE.md
105
- └── (your generated artifacts)
103
+ ├── vortex-artifacts/ # Vortex generated artifacts
104
+ └── gyre-artifacts/ # Gyre generated artifacts
106
105
  ```
107
106
 
108
107
  ### Summary
109
108
 
110
- - **7 agent definitions** in `_bmad/bme/_vortex/agents/`
111
- - **22 workflows** (169 files) — each with steps, templates, and validation
112
- - **Configuration** in `_bmad/bme/_vortex/config.yaml`
113
- - **7 user guides** in `_bmad/bme/_vortex/guides/`
109
+ | Module | Contents |
110
+ |--------|----------|
111
+ | **Vortex** | 7 agents, 22 workflows, 10 handoff contracts (HC1-HC5 artifact, HC6-HC10 routing), 7 user guides |
112
+ | **Gyre** | 4 agents, 7 workflows, 4 contract schemas (GC1-GC4), 4 user guides |
113
+ | **Enhance** | Skill workflows, menu patch descriptors, module author guide |
114
+ | **Skills** | Claude Code skill wrappers in `.claude/skills/` for all 11 agents |
114
115
 
115
116
  ---
116
117
 
117
118
  ## Configuration
118
119
 
119
- The installer creates `_bmad/bme/_vortex/config.yaml`. The key fields you'll want to customize:
120
+ Each team installer creates a `config.yaml` in its module directory. The key fields you'll want to customize:
120
121
 
121
122
  ```yaml
122
- # User-facing settings
123
+ # _bmad/bme/_vortex/config.yaml (or _gyre/config.yaml)
123
124
  user_name: "{user}" # Your name (used in agent greetings)
124
125
  communication_language: "en" # Language for agent communication
125
- output_folder: "{project-root}/_bmad-output/vortex-artifacts" # Where artifacts are saved
126
126
  ```
127
127
 
128
128
  The config also includes auto-generated fields (`submodule_name`, `module`, `version`, `agents`, `workflows`) that you typically don't need to edit — the installer and update system manage those.
@@ -131,32 +131,25 @@ The config also includes auto-generated fields (`submodule_name`, `module`, `ver
131
131
 
132
132
  ## Verification
133
133
 
134
- After installation, verify agents are working by activating one:
134
+ After installation, run diagnostics to confirm everything is in place:
135
135
 
136
136
  ```bash
137
- cat _bmad/bme/_vortex/agents/contextualization-expert.md # Emma
138
- ```
139
-
140
- **Expected result:** Emma should greet you by name and display a numbered menu like this:
141
-
137
+ npx -p convoke-agents convoke-doctor
142
138
  ```
143
- Hey Amalik! I'm Emma — your Contextualization Expert...
144
139
 
145
- 1. [MH] Redisplay Menu Help
146
- 2. [CH] Chat with Emma
147
- 3. [LP] Lean Persona
148
- 4. [PV] Product Vision
149
- 5. [CS] Contextualize Scope
150
- ...
151
- ```
140
+ Doctor validates all installed modules: agent files, skill wrappers, config files, and manifest entries — with actionable fix suggestions for each issue.
152
141
 
153
- If the agent doesn't activate or you see raw markdown instead, run diagnostics:
142
+ Then activate an agent to confirm it works:
154
143
 
155
144
  ```bash
156
- npx -p convoke-agents convoke-doctor
145
+ # Vortex
146
+ cat _bmad/bme/_vortex/agents/contextualization-expert.md # Emma
147
+
148
+ # Gyre
149
+ cat _bmad/bme/_gyre/agents/stack-detective.md # Scout
157
150
  ```
158
151
 
159
- This checks project root, config validity, agent files, workflows, output directory, and version consistency with actionable fix suggestions for each issue.
152
+ **Expected result:** The agent greets you by name and displays a numbered menu. If you see raw markdown instead, re-run `convoke-doctor` to diagnose.
160
153
 
161
154
  ---
162
155
 
@@ -180,8 +173,8 @@ npx -p convoke-agents convoke-install-vortex
180
173
  The installer preserves your custom settings and only adds missing entries. To force a clean installation:
181
174
 
182
175
  ```bash
183
- rm -rf _bmad/bme/_vortex/
184
- npx -p convoke-agents convoke-install-vortex
176
+ rm -rf _bmad/bme/_vortex/ # or _gyre/ for Gyre
177
+ npx -p convoke-agents convoke-install-vortex # or convoke-install-gyre
185
178
  ```
186
179
 
187
180
  ### Installation succeeds but agents don't activate
@@ -189,42 +182,72 @@ npx -p convoke-agents convoke-install-vortex
189
182
  Check that files are in place:
190
183
 
191
184
  ```bash
192
- ls -la _bmad/bme/_vortex/agents/
193
- ls -la _bmad/bme/_vortex/workflows/
194
185
  npx -p convoke-agents convoke-doctor
186
+ ls -la _bmad/bme/_vortex/agents/
187
+ ls -la _bmad/bme/_gyre/agents/
195
188
  ```
196
189
 
190
+ ### Agent skill not appearing in Claude Code
191
+
192
+ Skills are installed to `.claude/skills/bmad-agent-bme-{id}/SKILL.md`. Verify they exist:
193
+
194
+ ```bash
195
+ ls .claude/skills/bmad-agent-bme-*/SKILL.md
196
+ ```
197
+
198
+ If missing, re-run the installer — it regenerates skill wrappers on every run.
199
+
200
+ ---
201
+
202
+ ## BMAD Method Compatibility
203
+
204
+ Convoke works standalone — no BMAD Method installation is required.
205
+
206
+ If the BMAD Method is already installed in your project, the installer detects it automatically and logs confirmation. Both packages coexist in the `_bmad/` directory without conflict.
207
+
208
+ See [BMAD-METHOD-COMPATIBILITY.md](docs/BMAD-METHOD-COMPATIBILITY.md) for the full compatibility matrix.
209
+
197
210
  ---
198
211
 
199
212
  ## Next Steps
200
213
 
201
- 1. **Read the user guides** in `_bmad-output/vortex-artifacts/`
202
- 2. **Activate an agent** — start with Emma for strategic framing or Isla for user research
203
- 3. **Follow a workflow** each agent presents a menu of guided workflows
214
+ 1. **Personalize** — edit the config.yaml for your chosen team and replace `{user}` with your name
215
+ 2. **Pick a starting point:**
216
+ - **Vortex:** Activate Emma select **Lean Persona** from the menu follow the guided steps
217
+ - **Gyre:** Activate Scout → select **Full Analysis** from the menu → walk through the pipeline
218
+ 3. **Find your artifacts** — outputs are saved in `_bmad-output/vortex-artifacts/` or `.gyre/`
204
219
  4. **Check updates** — run `npx -p convoke-agents convoke-version` periodically
205
220
 
206
- See the [Agent Guide](docs/agents.md) for detailed workflow descriptions and the recommended Vortex flow.
221
+ See the [Agent Guide](docs/agents.md) for detailed workflow descriptions. User guides are available for all 11 agents in their respective `guides/` directories.
207
222
 
208
223
  ---
209
224
 
210
225
  ## Uninstallation
211
226
 
212
- Back up any artifacts you want to keep before removing:
227
+ Convoke doesn't provide an uninstall command. To remove:
213
228
 
214
229
  ```bash
215
230
  # 1. Back up your generated artifacts first
216
- cp -r _bmad-output/vortex-artifacts/ ~/my-vortex-backup/
231
+ cp -r _bmad-output/vortex-artifacts/ ~/my-backup/
232
+ cp -r .gyre/ ~/my-backup/
217
233
 
218
- # 2. Remove agent files and workflows
234
+ # 2. Remove agent files, workflows, and skills
219
235
  rm -rf _bmad/bme/_vortex/
236
+ rm -rf _bmad/bme/_gyre/
237
+ rm -rf _bmad/bme/_enhance/
238
+ rm -rf .claude/skills/bmad-agent-bme-*/
239
+ rm -rf .claude/skills/bmad-enhance-*/
220
240
 
221
- # 3. Remove generated artifacts (this deletes all your empathy maps, personas, etc.)
241
+ # 3. Remove generated artifacts
222
242
  rm -rf _bmad-output/vortex-artifacts/
243
+ rm -rf _bmad-output/gyre-artifacts/
223
244
 
224
245
  # 4. Uninstall npm package
225
246
  npm uninstall convoke-agents
226
247
  ```
227
248
 
249
+ Your BMAD Method files (if any) remain untouched.
250
+
228
251
  ---
229
252
 
230
253
  [Back to README](README.md) | [Update Guide](UPDATE-GUIDE.md) | [Agent Guide](docs/agents.md)