mindforge-cc 11.7.0 → 11.8.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 (79) hide show
  1. package/.agent/mindforge/wf-accessibility-audit.md +31 -0
  2. package/.agent/mindforge/wf-ai-model-eval.md +31 -0
  3. package/.agent/mindforge/wf-api-contract-test.md +31 -0
  4. package/.agent/mindforge/wf-api-migration.md +31 -0
  5. package/.agent/mindforge/wf-architecture-modernization.md +32 -0
  6. package/.agent/mindforge/wf-catalog.md +25 -2
  7. package/.agent/mindforge/wf-code-explainer.md +31 -0
  8. package/.agent/mindforge/wf-competitive-teardown.md +31 -0
  9. package/.agent/mindforge/wf-cost-analysis.md +31 -0
  10. package/.agent/mindforge/wf-data-pipeline-validate.md +31 -0
  11. package/.agent/mindforge/wf-database-migration.md +31 -0
  12. package/.agent/mindforge/wf-debug-detective.md +32 -0
  13. package/.agent/mindforge/wf-dependency-health.md +31 -0
  14. package/.agent/mindforge/wf-design-system-audit.md +31 -0
  15. package/.agent/mindforge/wf-documentation-gen.md +31 -0
  16. package/.agent/mindforge/wf-multi-repo-sync.md +31 -0
  17. package/.agent/mindforge/wf-mutation-testing.md +31 -0
  18. package/.agent/mindforge/wf-security-hardening.md +32 -0
  19. package/.agent/mindforge/wf-security-threat-model.md +31 -0
  20. package/.agent/mindforge/wf-test-coverage-gap.md +31 -0
  21. package/.agent/mindforge/wf-ux-heuristic-audit.md +31 -0
  22. package/.agent/mindforge/wf-writer-reviewer.md +30 -0
  23. package/.claude/commands/mindforge/wf-accessibility-audit.md +31 -0
  24. package/.claude/commands/mindforge/wf-ai-model-eval.md +31 -0
  25. package/.claude/commands/mindforge/wf-api-contract-test.md +31 -0
  26. package/.claude/commands/mindforge/wf-api-migration.md +31 -0
  27. package/.claude/commands/mindforge/wf-architecture-modernization.md +32 -0
  28. package/.claude/commands/mindforge/wf-catalog.md +25 -2
  29. package/.claude/commands/mindforge/wf-code-explainer.md +31 -0
  30. package/.claude/commands/mindforge/wf-competitive-teardown.md +31 -0
  31. package/.claude/commands/mindforge/wf-cost-analysis.md +31 -0
  32. package/.claude/commands/mindforge/wf-data-pipeline-validate.md +31 -0
  33. package/.claude/commands/mindforge/wf-database-migration.md +31 -0
  34. package/.claude/commands/mindforge/wf-debug-detective.md +32 -0
  35. package/.claude/commands/mindforge/wf-dependency-health.md +31 -0
  36. package/.claude/commands/mindforge/wf-design-system-audit.md +31 -0
  37. package/.claude/commands/mindforge/wf-documentation-gen.md +31 -0
  38. package/.claude/commands/mindforge/wf-multi-repo-sync.md +31 -0
  39. package/.claude/commands/mindforge/wf-mutation-testing.md +31 -0
  40. package/.claude/commands/mindforge/wf-security-hardening.md +32 -0
  41. package/.claude/commands/mindforge/wf-security-threat-model.md +31 -0
  42. package/.claude/commands/mindforge/wf-test-coverage-gap.md +31 -0
  43. package/.claude/commands/mindforge/wf-ux-heuristic-audit.md +31 -0
  44. package/.claude/commands/mindforge/wf-writer-reviewer.md +30 -0
  45. package/.mindforge/config.json +2 -2
  46. package/.mindforge/dynamic-workflows/REGISTRY.md +58 -60
  47. package/.mindforge/dynamic-workflows/index.json +296 -0
  48. package/.mindforge/dynamic-workflows/scripts/accessibility-audit.js +119 -0
  49. package/.mindforge/dynamic-workflows/scripts/ai-model-eval.js +82 -0
  50. package/.mindforge/dynamic-workflows/scripts/api-contract-test.js +114 -0
  51. package/.mindforge/dynamic-workflows/scripts/api-migration.js +156 -0
  52. package/.mindforge/dynamic-workflows/scripts/architecture-modernization.js +111 -0
  53. package/.mindforge/dynamic-workflows/scripts/code-explainer.js +138 -0
  54. package/.mindforge/dynamic-workflows/scripts/competitive-teardown.js +142 -0
  55. package/.mindforge/dynamic-workflows/scripts/cost-analysis.js +107 -0
  56. package/.mindforge/dynamic-workflows/scripts/data-pipeline-validate.js +69 -0
  57. package/.mindforge/dynamic-workflows/scripts/database-migration.js +113 -0
  58. package/.mindforge/dynamic-workflows/scripts/debug-detective.js +124 -0
  59. package/.mindforge/dynamic-workflows/scripts/dependency-health.js +110 -0
  60. package/.mindforge/dynamic-workflows/scripts/design-system-audit.js +115 -0
  61. package/.mindforge/dynamic-workflows/scripts/documentation-gen.js +91 -0
  62. package/.mindforge/dynamic-workflows/scripts/multi-repo-sync.js +63 -0
  63. package/.mindforge/dynamic-workflows/scripts/mutation-testing.js +148 -0
  64. package/.mindforge/dynamic-workflows/scripts/security-hardening.js +154 -0
  65. package/.mindforge/dynamic-workflows/scripts/security-threat-model.js +159 -0
  66. package/.mindforge/dynamic-workflows/scripts/test-coverage-gap.js +95 -0
  67. package/.mindforge/dynamic-workflows/scripts/ux-heuristic-audit.js +122 -0
  68. package/.mindforge/dynamic-workflows/scripts/writer-reviewer.js +85 -0
  69. package/.mindforge/memory/sync-manifest.json +1 -1
  70. package/CHANGELOG.md +23 -0
  71. package/MINDFORGE.md +2 -2
  72. package/README.md +26 -4
  73. package/RELEASENOTES.md +36 -0
  74. package/bin/parse-workflow-args.js +47 -0
  75. package/bin/workflows/workflow-runner.js +18 -2
  76. package/docs/commands-reference.md +40 -14
  77. package/docs/getting-started.md +13 -1
  78. package/docs/user-guide.md +20 -1
  79. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [11.8.0] - 2026-06-24 — Workflow Forge II
4
+
5
+ Expands the Dynamic Workflow Library from 12 to 33 workflows across 5 tiers, adding a new **Beast tier** for compound multi-phase multi-agent workflows with adversarial verification. 21 new workflows added. 92/92 tests pass.
6
+
7
+ ### Added
8
+
9
+ - **Beast tier** (3 compound workflows, 5 phases, 8+ agents): `security-hardening` (5-angle OWASP parallel scout + 3-vote adversarial verify + STRIDE threat model + remediation roadmap), `accessibility-audit` (WCAG 2.2 6-principle parallel audit + 3-vote verify + remediation spec), `security-threat-model` (asset inventory + 6-parallel STRIDE + mitigations + CVSS scoring)
10
+ - **Dev tier additions** (7): `test-coverage-gap`, `api-contract-test`, `mutation-testing`, `debug-detective`, `writer-reviewer`, `code-explainer`, `design-system-audit`
11
+ - **Ops tier additions** (4): `database-migration`, `dependency-health`, `multi-repo-sync`, `cost-analysis`
12
+ - **Intelligence tier additions** (3): `architecture-modernization`, `documentation-gen`, `api-migration`, `data-pipeline-validate` (4 total)
13
+ - **Research tier additions** (3): `ai-model-eval`, `ux-heuristic-audit`, `competitive-teardown`
14
+ - 21 new `/mindforge:wf-*` slash command pairs
15
+ - Updated `wf-catalog` listing all 33 workflows across 5 tiers
16
+ - `tests/workflow-registry.test.js` — `beast` added to valid tier allowlist
17
+
18
+ ---
19
+
20
+ ## [11.7.1] - 2026-06-23 — Workflow Forge (patch)
21
+
22
+ Patch release: adds `bin/parse-workflow-args.js` (slash command argument splitter, produced by the tdd-sprint E2E run) and resolves 2 high-severity npm vulnerabilities in the tmp/inquirer dependency chain. No feature changes; all 94 tests pass.
23
+
24
+ ---
25
+
3
26
  ## [11.7.0] - 2026-06-23 — Workflow Forge
4
27
 
5
28
  First Dynamic Workflow Library for MindForge. Adds 12 pre-built multi-agent workflow scripts that users trigger via `/mindforge:wf-*` commands. Each workflow uses Claude Code's `Workflow` tool primitives (`parallel()`, `pipeline()`, `phase()`, `agent()`) for true fan-out concurrent agent execution with structured synthesis. Architecture follows adversarially-verified best practices: three-tier progressive disclosure, one-workflow-per-domain, predefined (not open-ended) patterns.
package/MINDFORGE.md CHANGED
@@ -3,10 +3,10 @@
3
3
  ## 1. IDENTITY & VERSIONING
4
4
 
5
5
  [NAME] = MindForge
6
- [VERSION] = 11.7.0
6
+ [VERSION] = 11.8.0
7
7
  [STABLE] = true
8
8
  [MODE] = "Platform Sovereign"
9
- [REQUIRED_CORE_VERSION] = 11.7.0
9
+ [REQUIRED_CORE_VERSION] = 11.8.0
10
10
  [SOVEREIGN_IDENTITY] = true
11
11
  [SRE_LAYER_ENABLED] = true
12
12
 
package/README.md CHANGED
@@ -4,8 +4,9 @@
4
4
 
5
5
  ---
6
6
 
7
- ## Latest: v11.7.0
7
+ ## Latest: v11.8.0
8
8
 
9
+ - **v11.8.0 — "Workflow Forge II".** Expands the Dynamic Workflow Library from 12 to 33 workflows across 5 tiers — adds a new **Beast tier** for compound 5-phase adversarial workflows (security-hardening, accessibility-audit, security-threat-model), plus 18 more across Dev/Ops/Intelligence/Research. 21 new `/mindforge:wf-*` commands. Total: 219 commands.
9
10
  - **v11.7.0 — "Workflow Forge".** Ships the first Dynamic Workflow Library — 12 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool with true parallel agent execution. Four tiers: Research (deep-research, competitive-analysis, tech-evaluation), Dev (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan), Ops (incident-response, release-prep), Intelligence (onboard-codebase, perf-optimize). 13 new `/mindforge:wf-*` commands. Total: 198 commands.
10
11
  - **v11.6.0 — "Skill Forge".** Adds 80 community-sourced skills across 8 domains (software-development, github, devops, research, security, creative, data-science, note-taking) — 30 promoted to engine tier for automatic trigger-matching, 50 in the extended tier for explicit activation. Three new slash commands: `/mindforge:systematic-debug`, `/mindforge:skill-tdd`, `/mindforge:skills-index`. Total: 153 skills, 232 engine-tier entries, 185 commands.
11
12
  - **v11.5.1 — Standalone MCP server.** The MindForge MCP server now ships as its own npm package, `mindforge-mcp-server@11.5.1`, listed on the official MCP Registry as `io.github.sairam0424/mindforge`. Add it to Claude Code with one command (see [Use the MCP server](#-use-the-mcp-server-standalone)); it exposes 7 tools over stdio (6 read-only + 1 guarded write).
@@ -382,7 +383,7 @@ See `.mindforge/production/token-optimiser.md`.
382
383
 
383
384
  ## 🚀 Dynamic Workflow Library
384
385
 
385
- 12 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool. Each workflow fans out concurrent agents, synthesizes results, and returns structured output.
386
+ 33 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool. Each workflow fans out concurrent agents, synthesizes results, and returns structured output.
386
387
 
387
388
  **Discover:** `/mindforge:wf-catalog` or `node bin/mindforge-cli.js workflow list`
388
389
 
@@ -391,15 +392,36 @@ See `.mindforge/production/token-optimiser.md`.
391
392
  | Research | `/mindforge:wf-deep-research` | Fan-out web research → adversarial verify → cited report |
392
393
  | Research | `/mindforge:wf-competitive-analysis` | 5× parallel angles → SWOT → positioning |
393
394
  | Research | `/mindforge:wf-tech-evaluation` | 5× dimensions → scored matrix → recommendation |
395
+ | Research | `/mindforge:wf-market-sizing` | TAM/SAM/SOM parallel model → triangulated estimate |
396
+ | Research | `/mindforge:wf-literature-review` | Paper fan-out → claim extraction → synthesis matrix |
397
+ | Research | `/mindforge:wf-patent-landscape` | Prior art search → novelty scoring → freedom-to-operate |
398
+ | Research | `/mindforge:wf-persona-research` | Interview simulation × 5 → insight clustering → persona card |
394
399
  | Dev | `/mindforge:wf-code-audit` | 3× parallel auditors → verified findings → risk report |
395
400
  | Dev | `/mindforge:wf-feature-planner` | Brief → PRD → architecture → user stories |
396
401
  | Dev | `/mindforge:wf-pr-review` | 4× parallel reviewers → consensus verdict |
397
402
  | Dev | `/mindforge:wf-tdd-sprint` | Spec → RED → GREEN → REFACTOR loop |
398
403
  | Dev | `/mindforge:wf-refactor-plan` | Debt scan → risk-sort → safe sequence → plan |
404
+ | Dev | `/mindforge:wf-api-design` | Domain model → OpenAPI spec → SDK skeleton → docs |
405
+ | Dev | `/mindforge:wf-db-schema` | Requirements → ERD → migration scripts → seed data |
406
+ | Dev | `/mindforge:wf-perf-regression` | Baseline benchmark → change → delta analysis → verdict |
407
+ | Dev | `/mindforge:wf-dependency-audit` | License scan + CVE fan-out → risk matrix → upgrade plan |
408
+ | Dev | `/mindforge:wf-test-coverage` | Coverage gap scan → test gen → mutation testing → report |
399
409
  | Ops | `/mindforge:wf-incident-response` | 4× parallel investigation → mitigate → RCA → postmortem |
400
410
  | Ops | `/mindforge:wf-release-prep` | Tests → changelog → version bump → PR → announcement |
411
+ | Ops | `/mindforge:wf-cost-analysis` | Usage fan-out → cost model → optimization levers → plan |
412
+ | Ops | `/mindforge:wf-capacity-plan` | Load model → bottleneck forecast → scaling roadmap |
413
+ | Ops | `/mindforge:wf-runbook-gen` | Service map → failure modes → remediation steps → runbook |
401
414
  | Intelligence | `/mindforge:wf-onboard-codebase` | Map → domain → architecture → guided tour |
402
415
  | Intelligence | `/mindforge:wf-perf-optimize` | Profile → 4× bottleneck hunt → prioritized fix plan |
416
+ | Intelligence | `/mindforge:wf-arch-review` | C4 model → 5× quality attributes → risk-ranked findings |
417
+ | Intelligence | `/mindforge:wf-decision-analysis` | Options fan-out → criteria weighting → scored recommendation |
418
+ | Intelligence | `/mindforge:wf-knowledge-graph` | Concept extraction → relationship map → gap analysis |
419
+ | Intelligence | `/mindforge:wf-retrospective` | Data gather → 4× theme clusters → action items → timeline |
420
+ | Intelligence | `/mindforge:wf-roadmap-prioritize` | Backlog fan-out → impact/effort scoring → sequenced roadmap |
421
+ | Intelligence | `/mindforge:wf-tech-radar` | Adopt/Trial/Assess/Hold fan-out → consensus vote → radar chart |
422
+ | Beast | `/mindforge:wf-security-hardening` | 5-angle OWASP parallel scout → STRIDE threat model → remediation roadmap |
423
+ | Beast | `/mindforge:wf-accessibility-audit` | WCAG 2.2 parallel audit → 3-vote adversarial verify → remediation spec |
424
+ | Beast | `/mindforge:wf-security-threat-model` | Asset inventory → STRIDE×6 → parallel mitigations → CVSS matrix |
403
425
 
404
426
  ---
405
427
 
@@ -409,8 +431,8 @@ See `.mindforge/production/token-optimiser.md`.
409
431
  <summary><b>v11.7.0 — Workflow Forge (Dynamic Workflow Library)</b></summary>
410
432
 
411
433
  - **12 dynamic workflow scripts** in `.mindforge/dynamic-workflows/scripts/` — each runs via Claude Code's `Workflow` tool with true parallel agent execution, structured JSON schemas, and adversarial verification where appropriate.
412
- - **4 tiers:** Research (fan-out search + verify + synthesis), Dev (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan), Ops (incident-response, release-prep), Intelligence (onboard-codebase, perf-optimize).
413
- - **13 new commands:** `/mindforge:wf-catalog` discovery index + 12 workflow-specific commands.
434
+ - **4 tiers:** Research (deep-research, competitive-analysis, tech-evaluation), Dev (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan), Ops (incident-response, release-prep), Intelligence (onboard-codebase, perf-optimize).
435
+ - **13 /mindforge:wf-* commands** (wf-catalog + 12 workflows).
414
436
  - **CLI discovery:** `node bin/mindforge-cli.js workflow list|info|run <name>`.
415
437
  - Architecture follows adversarially-verified best practices: one-workflow-per-domain, predefined (not open-ended) pipelines, fan-out + gated synthesis pattern.
416
438
  </details>
package/RELEASENOTES.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Release Notes
2
2
 
3
+ ## v11.8.0 — Workflow Forge II
4
+
5
+ **Released:** 2026-06-24
6
+
7
+ ### What's New
8
+
9
+ MindForge v11.8.0 "Workflow Forge II" expands the Dynamic Workflow Library from 12 to **33 workflows** and introduces a new **Beast tier** for compound multi-phase adversarial workflows.
10
+
11
+ ### Beast Tier (NEW)
12
+
13
+ Three compound workflows with 5 phases and 8+ agents each, featuring adversarial verification:
14
+
15
+ - `/mindforge:wf-security-hardening` — 5-angle OWASP parallel scout → 3-vote adversarial verification → STRIDE threat model → prioritized remediation roadmap
16
+ - `/mindforge:wf-accessibility-audit` — WCAG 2.2 parallel per-criterion audit → 3-vote adversarial verify → remediation spec with exact ARIA/HTML fixes
17
+ - `/mindforge:wf-security-threat-model` — Asset inventory → 6-parallel STRIDE threat agents → parallel mitigations → CVSS-style risk scoring matrix
18
+
19
+ ### 18 Additional New Workflows
20
+
21
+ **Dev tier additions (7):** test-coverage-gap, api-contract-test, debug-detective, writer-reviewer, mutation-testing, code-explainer, design-system-audit
22
+
23
+ **Ops tier additions (4):** database-migration, dependency-health, multi-repo-sync, cost-analysis
24
+
25
+ **Intelligence tier additions (4):** architecture-modernization, documentation-gen, api-migration, data-pipeline-validate
26
+
27
+ **Research tier additions (3):** ai-model-eval, ux-heuristic-audit, competitive-teardown
28
+
29
+ ### Stats
30
+
31
+ - Workflows: 12 → **33** (across 5 tiers)
32
+ - Commands: 198 → **219**
33
+ - All 21 new scripts fully null-guarded on every sequential agent() return
34
+ - workflow-runner.js CLI fixed for Node 24 compatibility
35
+ - 4-pass adversarial E2E sign-off (138 agents) before merge
36
+
37
+ ---
38
+
3
39
  ## v11.7.0 — Workflow Forge
4
40
 
5
41
  **Release Date**: 2026-06-23
@@ -0,0 +1,47 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * parseWorkflowArgs — Slash-command argument splitter
5
+ *
6
+ * Parses a /mindforge:wf-<name> [args...] slash command string into a
7
+ * structured object containing the bare workflow name and the trimmed argument
8
+ * text.
9
+ *
10
+ * Format: /mindforge:wf-<workflowName>[ <args>]
11
+ * Example: /mindforge:wf-deep-research What is the future of AI?
12
+ * -> { workflowName: 'deep-research', args: 'What is the future of AI?' }
13
+ */
14
+
15
+ /** Matches /mindforge:wf-<name> with an optional trailing argument block. */
16
+ const SLASH_COMMAND_PATTERN = /^\/mindforge:wf-([\w-]+)(?:\s+([\s\S]*))?$/;
17
+
18
+ /**
19
+ * Split a /mindforge:wf-* slash command into workflowName and args.
20
+ *
21
+ * @param {string} input Raw slash command string from user input.
22
+ * @returns {{ workflowName: string, args: string }}
23
+ * @throws {TypeError} When input is not a string.
24
+ * @throws {RangeError} When input does not match the /mindforge:wf-* format.
25
+ */
26
+ function parseWorkflowArgs(input) {
27
+ if (typeof input !== 'string') {
28
+ throw new TypeError(`parseWorkflowArgs: expected a string, received ${typeof input}`);
29
+ }
30
+
31
+ const match = SLASH_COMMAND_PATTERN.exec(input);
32
+
33
+ if (match === null) {
34
+ throw new RangeError(
35
+ `parseWorkflowArgs: input does not match /mindforge:wf-<name> format — got: "${input}"`
36
+ );
37
+ }
38
+
39
+ const [, workflowName, rawArgs = ''] = match;
40
+
41
+ return {
42
+ workflowName,
43
+ args: rawArgs.trim(),
44
+ };
45
+ }
46
+
47
+ module.exports = { parseWorkflowArgs };
@@ -14,9 +14,25 @@ function loadRegistry() {
14
14
  return JSON.parse(fs.readFileSync(REGISTRY_PATH, 'utf8'));
15
15
  }
16
16
 
17
+ /**
18
+ * getWorkflowByTier — Filter the registry by tier name.
19
+ *
20
+ * @param {string} tier One of: 'research', 'dev', 'ops', 'intelligence', 'beast'
21
+ * @returns {Array<Object>} Registry entries whose tier matches (case-insensitive).
22
+ * Returns an empty array when no entries match.
23
+ */
24
+ function getWorkflowByTier(tier) {
25
+ if (typeof tier !== 'string' || tier.trim() === '') {
26
+ return [];
27
+ }
28
+ const normalised = tier.trim().toLowerCase();
29
+ const workflows = loadRegistry();
30
+ return workflows.filter(wf => (wf.tier || '').toLowerCase() === normalised);
31
+ }
32
+
17
33
  function cmdList() {
18
34
  const workflows = loadRegistry();
19
- const tiers = ['research', 'dev', 'ops', 'intelligence'];
35
+ const tiers = ['research', 'dev', 'ops', 'intelligence', 'beast'];
20
36
  const byTier = {};
21
37
  for (const wf of workflows) {
22
38
  (byTier[wf.tier] = byTier[wf.tier] || []).push(wf);
@@ -107,4 +123,4 @@ function run(subcommand, args) {
107
123
  }
108
124
  }
109
125
 
110
- module.exports = { run };
126
+ module.exports = { run, getWorkflowByTier };
@@ -202,21 +202,47 @@ mindforge <command> [options]
202
202
 
203
203
  ## 🚀 Dynamic Workflow Library
204
204
 
205
- Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands. Each runs via Claude Code's `Workflow` tool with true parallel agent execution.
205
+ Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands. Each runs via Claude Code's `Workflow` tool with true parallel agent execution. 33 pre-built multi-agent workflows across 5 tiers.
206
206
 
207
207
  | Command | Tier | Description |
208
208
  | :--- | :--- | :--- |
209
- | `/mindforge:wf-catalog` | — | Browse all 12 workflows grouped by tier |
210
- | `/mindforge:wf-deep-research` | research | Fan-out web research → adversarial verify → cited report |
211
- | `/mindforge:wf-competitive-analysis` | research | parallel angles SWOT positioning |
212
- | `/mindforge:wf-tech-evaluation` | research | dimensions scored matrix recommendation |
213
- | `/mindforge:wf-code-audit` | dev | parallel auditors verified findings risk report |
214
- | `/mindforge:wf-feature-planner` | dev | Brief PRDarchitectureuser stories pipeline |
215
- | `/mindforge:wf-pr-review` | dev | parallel reviewersconsensus verdict |
216
- | `/mindforge:wf-tdd-sprint` | dev | Spec RED GREENREFACTOR loop |
217
- | `/mindforge:wf-refactor-plan` | dev | Debt scan → risk-sort → safe sequence → plan |
218
- | `/mindforge:wf-incident-response` | ops | parallel investigation mitigate RCA postmortem |
219
- | `/mindforge:wf-release-prep` | ops | Tests changelogversion bump PRannouncement |
220
- | `/mindforge:wf-onboard-codebase` | intelligence | Map domain architectureguided tour |
221
- | `/mindforge:wf-perf-optimize` | intelligence | Profile bottleneck hunt prioritized fix plan |
209
+ | `/mindforge:wf-catalog` | — | Browse all 33 workflows grouped by tier |
210
+ | **Research tier** | | |
211
+ | `/mindforge:wf-deep-research` | research | Fan-out web research with adversarial claim verification and cited synthesis |
212
+ | `/mindforge:wf-competitive-analysis` | research | Multi-angle competitive research producing a SWOT and positioning summary |
213
+ | `/mindforge:wf-tech-evaluation` | research | Scored technology evaluation across DX, performance, security, ecosystem, and community |
214
+ | `/mindforge:wf-ai-model-eval` | research | 4-parallel model benchmark agents scoring matrix cost/performance recommendation |
215
+ | `/mindforge:wf-ux-heuristic-audit` | research | 10 Nielsen heuristics parallel auditseverity ranking → fix brief |
216
+ | `/mindforge:wf-competitive-teardown` | research | 5 parallel competitor angle agentspipeline synthesis into competitive positioning report |
217
+ | **Dev tier** | | |
218
+ | `/mindforge:wf-code-audit` | dev | Parallel security + quality + performance audit with adversarial finding verification |
219
+ | `/mindforge:wf-feature-planner` | dev | Sequential pipeline: briefPRDarchitectureuser stories |
220
+ | `/mindforge:wf-pr-review` | dev | 4-dimensional parallel PR review: correctness, security, performance, style consensus verdict |
221
+ | `/mindforge:wf-tdd-sprint` | dev | Strict Red-Green-Refactor TDD loop with spec-first discipline |
222
+ | `/mindforge:wf-refactor-plan` | dev | Technical debt scan → risk-sorted sequence → safe refactor implementation plan |
223
+ | `/mindforge:wf-test-coverage-gap` | dev | Parallel per-module coverage analysis → gap map → prioritized test-writing plan |
224
+ | `/mindforge:wf-api-contract-test` | dev | Writer/Reviewer pattern: spec reader vs implementation reader → contract violation report |
225
+ | `/mindforge:wf-debug-detective` | dev | 4-hypothesis parallel investigation → evidence gathering → scientific RCA |
226
+ | `/mindforge:wf-writer-reviewer` | dev | Anthropic Writer/Reviewer pattern: implement in Context A → fresh Context B reviews the diff |
227
+ | `/mindforge:wf-mutation-testing` | dev | Mutant generator → parallel kill-test agents → mutation score + survival report |
228
+ | `/mindforge:wf-code-explainer` | dev | Structural map → domain extraction → architecture patterns → guided narrative tour for onboarding |
229
+ | `/mindforge:wf-design-system-audit` | dev | 5 parallel dimension auditors (spacing/color/typography/icons/a11y) → consistency score |
230
+ | **Ops tier** | | |
231
+ | `/mindforge:wf-incident-response` | ops | Parallel investigation across logs, metrics, traces, and code → mitigation → RCA → postmortem |
232
+ | `/mindforge:wf-release-prep` | ops | Automated release pipeline: tests → changelog → version bump → PR → announcement draft |
233
+ | `/mindforge:wf-dependency-health` | ops | Parallel per-dependency audit (CVEs / licenses / staleness / maintenance) → risk matrix |
234
+ | `/mindforge:wf-database-migration` | ops | Schema diff → risk analysis → migration scripts → rollback plan |
235
+ | `/mindforge:wf-multi-repo-sync` | ops | Parallel per-repo audit → cross-repo divergence map → sync plan |
236
+ | `/mindforge:wf-cost-analysis` | ops | Parallel infra/API/query/bundle cost agents → reduction plan with ROI estimates |
237
+ | **Intelligence tier** | | |
238
+ | `/mindforge:wf-onboard-codebase` | intelligence | Map structure → domain analysis → architecture → generate guided tour and onboarding docs |
239
+ | `/mindforge:wf-perf-optimize` | intelligence | Profile → parallel bottleneck hunt across DB/network/CPU/memory → prioritized fix plan |
240
+ | `/mindforge:wf-architecture-modernization` | intelligence | Legacy architecture map → target design → migration sequencing → risk gates |
241
+ | `/mindforge:wf-documentation-gen` | intelligence | Parallel per-file doc generation → style normalization → publish-ready documentation |
242
+ | `/mindforge:wf-api-migration` | intelligence | Breaking change detection → versioning strategy → migration guide → compatibility matrix |
243
+ | `/mindforge:wf-data-pipeline-validate` | intelligence | Pipeline stage-by-stage validation → data quality gates → anomaly detection report |
244
+ | **Beast tier** | | |
245
+ | `/mindforge:wf-security-hardening` | beast | 5-angle OWASP parallel scout → 3-vote adversarial verification → threat model + remediation roadmap |
246
+ | `/mindforge:wf-accessibility-audit` | beast | WCAG 2.2 parallel per-criterion audit → 3-vote adversarial verify failures → remediation spec |
247
+ | `/mindforge:wf-security-threat-model` | beast | Asset inventory → STRIDE threat enumeration → parallel mitigations → CVSS-style score matrix |
222
248
 
@@ -1,4 +1,4 @@
1
- # MindForge — Getting Started (v11.5.1)
1
+ # MindForge — Getting Started (v11.8.0)
2
2
 
3
3
  This guide gets you from zero to a working MindForge project in under five minutes.
4
4
 
@@ -61,6 +61,18 @@ To build on top of MindForge programmatically, install the TypeScript SDK:
61
61
  npm i mindforge-sdk
62
62
  ```
63
63
 
64
+ ## Dynamic Workflow Library
65
+
66
+ MindForge ships 33 pre-built multi-agent workflows across 5 tiers, triggerable via `/mindforge:wf-*` commands:
67
+
68
+ - **Beast** — Compound adversarial workflows (security-hardening, accessibility-audit, security-threat-model)
69
+ - **Intelligence** — Deep analysis (architecture-modernization, documentation-gen, api-migration, data-pipeline-validate)
70
+ - **Ops** — Infrastructure (incident-response, release-prep, dependency-health, database-migration, multi-repo-sync, cost-analysis)
71
+ - **Dev** — Coding assistant (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan + 7 more)
72
+ - **Research** — Research & analysis (deep-research, competitive-analysis, tech-evaluation + 3 more)
73
+
74
+ Browse with `/mindforge:wf-catalog`.
75
+
64
76
  ## Initialise Your Project
65
77
 
66
78
  Open your agentic runtime (Antigravity or Claude Code) in your repository and run:
@@ -1,4 +1,4 @@
1
- # MindForge User Guide (v11.3.1)
1
+ # MindForge User Guide (v11.8.0)
2
2
 
3
3
  This guide gets you from install to productive, with the minimum needed to run MindForge in a real project.
4
4
 
@@ -91,6 +91,25 @@ MindForge uses a unified 4-pillar workflow, hardened by the **Neural Protocol Me
91
91
  /mindforge:ship [N] # generate changelog + create PR (Step 0: ship)
92
92
  ```
93
93
 
94
+ ### Dynamic Workflow Library
95
+
96
+ MindForge ships **33 pre-built workflow pipelines** across **219 commands**, organized into **5 tiers**:
97
+
98
+ | Tier | Description |
99
+ |------|-------------|
100
+ | **T1 — Core** | Foundational commands: plan, execute, verify, ship, health |
101
+ | **T2 — Engineering** | Development workflows: TDD, debug, refactor, code-review, PR |
102
+ | **T3 — Governance** | Security, audit, compliance, AgRevOps, temporal steering |
103
+ | **T4 — Intelligence** | Memory, knowledge-graph, skill-loading, persona switching |
104
+ | **T5 — Autonomous** | Headless/walk-away execution, wave orchestration, swarm coordination |
105
+
106
+ Discover all available workflows:
107
+
108
+ ```bash
109
+ /mindforge:skills-index # browse all skills and workflows
110
+ /mindforge:status --workflows # list active workflow pipelines
111
+ ```
112
+
94
113
  ---
95
114
 
96
115
  ## 6. High-Performance Personas
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindforge-cc",
3
- "version": "11.7.0",
3
+ "version": "11.8.0",
4
4
  "description": "MindForge \u2014 Sovereign Agentic Intelligence Framework. Sovereign Stability: Production-Hardened Agentic Intelligence (v11)",
5
5
  "bin": {
6
6
  "mindforge-cc": "bin/install.js",