@williambeto/ai-workflow 1.18.13 → 1.18.15

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/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.18.15](https://github.com/williambeto/ai-workflow/compare/v1.18.14...v1.18.15) (2026-05-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **cli-catalog:** sync managed config with current repo skills ([595a4cc](https://github.com/williambeto/ai-workflow/commit/595a4cc71fe89a25664fc2b9c5ae2131b36c92dc))
7
+ * **cli-catalog:** sync managed config with current repo skills ([7202320](https://github.com/williambeto/ai-workflow/commit/72023200ccd7d47a5a6e1106b781013fbf27215f))
8
+
9
+ ## [1.18.14](https://github.com/williambeto/ai-workflow/compare/v1.18.13...v1.18.14) (2026-05-22)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add missing spec-engineer agent to managed OpenCode config ([#58](https://github.com/williambeto/ai-workflow/issues/58)) ([bc0ffc9](https://github.com/williambeto/ai-workflow/commit/bc0ffc963d84956cc2880e6d6903061ea86016cc))
15
+
1
16
  ## [1.18.13](https://github.com/williambeto/ai-workflow/compare/v1.18.12...v1.18.13) (2026-05-22)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.18.13",
2
+ "version": "1.18.15",
3
3
  "name": "@williambeto/ai-workflow",
4
4
  "description": "AI Workflow Kit repository for designing and validating AI-assisted software delivery workflows with Codex and OpenCode",
5
5
  "license": "MIT",
@@ -16,7 +16,8 @@ function buildManagedConfig(profile = "full") {
16
16
  validator: { mode: "primary", description: "Validate with evidence", prompt: "{file:./opencode/agents/validator.md}" },
17
17
  "release-manager": { mode: "primary", description: "Prepare release/deploy steps", prompt: "{file:./opencode/agents/release-manager.md}" },
18
18
  "wordpress-engineer": { mode: "primary", description: "WordPress specialist role", prompt: "{file:./opencode/agents/wordpress-engineer.md}" },
19
- "prompt-engineer": { mode: "primary", description: "Prompt/system design role", prompt: "{file:./opencode/agents/prompt-engineer.md}" },
19
+ "prompt-engineer": { mode: "primary", description: "Prompt/system design role", prompt: "{file:./opencode/agents/prompt-engineer.md}" },
20
+ "spec-engineer": { mode: "primary", description: "Create and review functional specifications", prompt: "{file:./opencode/agents/spec-engineer.md}" },
20
21
  orchestrator: {
21
22
  mode: "primary",
22
23
  description: "Route work by safe workflow gates",
@@ -37,7 +38,6 @@ function buildManagedConfig(profile = "full") {
37
38
  "interface-design": { mode: "subagent", description: "Interface design specialist", prompt: "{file:./.agents/skills/interface-design/SKILL.md}" },
38
39
  "minimal-context": { mode: "subagent", description: "Minimal-context specialist", prompt: "{file:./.agents/skills/minimal-context/SKILL.md}" },
39
40
  napkin: { mode: "subagent", description: "Project memory specialist", prompt: "{file:./.agents/skills/napkin/SKILL.md}" },
40
- "nuxt-dashboard-workflow": { mode: "subagent", description: "Nuxt dashboard workflow specialist", prompt: "{file:./.agents/skills/nuxt-dashboard-workflow/SKILL.md}" },
41
41
  "opencode-agent-design": { mode: "subagent", description: "OpenCode agent design specialist", prompt: "{file:./.agents/skills/opencode-agent-design/SKILL.md}" },
42
42
  "playwright-cli": { mode: "subagent", description: "Playwright specialist", prompt: "{file:./.agents/skills/playwright-cli/SKILL.md}" },
43
43
  "product-manager": { mode: "subagent", description: "Product scope specialist", prompt: "{file:./.agents/skills/product-manager/SKILL.md}" },
@@ -46,7 +46,7 @@ function buildManagedConfig(profile = "full") {
46
46
  "tech-lead": { mode: "subagent", description: "Technical lead specialist", prompt: "{file:./.agents/skills/tech-lead/SKILL.md}" },
47
47
  tester: { mode: "subagent", description: "Testing specialist", prompt: "{file:./.agents/skills/tester/SKILL.md}" },
48
48
  "token-economy": { mode: "subagent", description: "Token economy specialist", prompt: "{file:./.agents/skills/token-economy/SKILL.md}" },
49
- "vue-clean-architecture": { mode: "subagent", description: "Vue architecture specialist", prompt: "{file:./.agents/skills/vue-clean-architecture/SKILL.md}" },
49
+ "vue-nuxt": { mode: "subagent", description: "Vue/Nuxt architecture specialist", prompt: "{file:./.agents/skills/vue-nuxt/SKILL.md}" },
50
50
  "wordpress-engineer": { mode: "subagent", description: "WordPress specialist", prompt: "{file:./.agents/skills/wordpress-engineer/SKILL.md}" }
51
51
  }
52
52
  : {};