mindforge-cc 11.6.0 → 11.7.1
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/.agent/mindforge/wf-catalog.md +37 -0
- package/.agent/mindforge/wf-code-audit.md +31 -0
- package/.agent/mindforge/wf-competitive-analysis.md +31 -0
- package/.agent/mindforge/wf-deep-research.md +32 -0
- package/.agent/mindforge/wf-feature-planner.md +31 -0
- package/.agent/mindforge/wf-incident-response.md +31 -0
- package/.agent/mindforge/wf-onboard-codebase.md +31 -0
- package/.agent/mindforge/wf-perf-optimize.md +31 -0
- package/.agent/mindforge/wf-pr-review.md +31 -0
- package/.agent/mindforge/wf-refactor-plan.md +31 -0
- package/.agent/mindforge/wf-release-prep.md +31 -0
- package/.agent/mindforge/wf-tdd-sprint.md +31 -0
- package/.agent/mindforge/wf-tech-evaluation.md +31 -0
- package/.claude/commands/mindforge/wf-catalog.md +37 -0
- package/.claude/commands/mindforge/wf-code-audit.md +31 -0
- package/.claude/commands/mindforge/wf-competitive-analysis.md +31 -0
- package/.claude/commands/mindforge/wf-deep-research.md +32 -0
- package/.claude/commands/mindforge/wf-feature-planner.md +31 -0
- package/.claude/commands/mindforge/wf-incident-response.md +31 -0
- package/.claude/commands/mindforge/wf-onboard-codebase.md +31 -0
- package/.claude/commands/mindforge/wf-perf-optimize.md +31 -0
- package/.claude/commands/mindforge/wf-pr-review.md +31 -0
- package/.claude/commands/mindforge/wf-refactor-plan.md +31 -0
- package/.claude/commands/mindforge/wf-release-prep.md +31 -0
- package/.claude/commands/mindforge/wf-tdd-sprint.md +31 -0
- package/.claude/commands/mindforge/wf-tech-evaluation.md +31 -0
- package/.mindforge/config.json +2 -2
- package/.mindforge/dynamic-workflows/REGISTRY.md +65 -0
- package/.mindforge/dynamic-workflows/index.json +171 -0
- package/.mindforge/dynamic-workflows/scripts/code-audit.js +103 -0
- package/.mindforge/dynamic-workflows/scripts/competitive-analysis.js +85 -0
- package/.mindforge/dynamic-workflows/scripts/deep-research.js +151 -0
- package/.mindforge/dynamic-workflows/scripts/feature-planner.js +104 -0
- package/.mindforge/dynamic-workflows/scripts/incident-response.js +106 -0
- package/.mindforge/dynamic-workflows/scripts/onboard-codebase.js +102 -0
- package/.mindforge/dynamic-workflows/scripts/perf-optimize.js +128 -0
- package/.mindforge/dynamic-workflows/scripts/pr-review.js +87 -0
- package/.mindforge/dynamic-workflows/scripts/refactor-plan.js +121 -0
- package/.mindforge/dynamic-workflows/scripts/release-prep.js +102 -0
- package/.mindforge/dynamic-workflows/scripts/tdd-sprint.js +103 -0
- package/.mindforge/dynamic-workflows/scripts/tech-evaluation.js +72 -0
- package/.mindforge/memory/sync-manifest.json +1 -1
- package/CHANGELOG.md +34 -0
- package/MINDFORGE.md +2 -2
- package/README.md +37 -4
- package/RELEASENOTES.md +54 -0
- package/bin/installer-core.js +6 -2
- package/bin/mindforge-cli.js +7 -0
- package/bin/parse-workflow-args.js +47 -0
- package/bin/workflows/workflow-runner.js +110 -0
- package/docs/commands-reference.md +25 -0
- package/package.json +2 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Browse the MindForge dynamic workflow library — 12 pre-built multi-agent workflows"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-catalog
|
|
5
|
+
|
|
6
|
+
Browse and discover the MindForge **Dynamic Workflow Library** — 12 pre-built multi-agent workflows that run via Claude Code's Workflow tool.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-catalog` — show all workflows grouped by tier
|
|
10
|
+
|
|
11
|
+
## Tiers
|
|
12
|
+
|
|
13
|
+
**Research** — Fan-out search, adversarial verification, cited synthesis
|
|
14
|
+
- `/mindforge:wf-deep-research` — Multi-source fact-checked research report
|
|
15
|
+
- `/mindforge:wf-competitive-analysis` — SWOT and positioning summary
|
|
16
|
+
- `/mindforge:wf-tech-evaluation` — Scored technology comparison matrix
|
|
17
|
+
|
|
18
|
+
**Dev** — Coding-assistant power workflows
|
|
19
|
+
- `/mindforge:wf-code-audit` — Parallel security + quality + performance audit
|
|
20
|
+
- `/mindforge:wf-feature-planner` — Brief → PRD → architecture → user stories
|
|
21
|
+
- `/mindforge:wf-pr-review` — 4-dimensional parallel PR review
|
|
22
|
+
- `/mindforge:wf-tdd-sprint` — Strict Red-Green-Refactor TDD loop
|
|
23
|
+
- `/mindforge:wf-refactor-plan` — Technical debt scan → safe refactor plan
|
|
24
|
+
|
|
25
|
+
**Ops** — Infrastructure and release workflows
|
|
26
|
+
- `/mindforge:wf-incident-response` — Parallel investigation → RCA → postmortem
|
|
27
|
+
- `/mindforge:wf-release-prep` — Tests → changelog → version bump → PR
|
|
28
|
+
|
|
29
|
+
**Intelligence** — Deep analysis and optimization
|
|
30
|
+
- `/mindforge:wf-onboard-codebase` — Map → domain → architecture → guided tour
|
|
31
|
+
- `/mindforge:wf-perf-optimize` — Profile → bottleneck hunt → prioritized fix plan
|
|
32
|
+
|
|
33
|
+
## CLI Discovery
|
|
34
|
+
```bash
|
|
35
|
+
node bin/mindforge-cli.js workflow list
|
|
36
|
+
node bin/mindforge-cli.js workflow info <name>
|
|
37
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Parallel security + quality + performance audit with adversarial finding verification"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-code-audit
|
|
5
|
+
|
|
6
|
+
Runs the **Code Audit** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-code-audit [path or 'current git diff']`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Builds file list from git diff, specified path, or entire codebase
|
|
13
|
+
- **Audit**: 3 parallel auditors — OWASP security, code quality, performance patterns
|
|
14
|
+
- **Verify**: Adversarial 2-vote verification for all high/critical severity findings
|
|
15
|
+
- **Report**: Risk-ranked report with remediation steps for each confirmed finding
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/code-audit.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info code-audit
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Multi-angle competitive research producing a SWOT and positioning summary"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-competitive-analysis
|
|
5
|
+
|
|
6
|
+
Runs the **Competitive Analysis** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-competitive-analysis <product/company/technology>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Defines the competitive landscape target
|
|
13
|
+
- **Research**: 5 parallel angles — product features, pricing, reviews, community, roadmap
|
|
14
|
+
- **SWOT**: Synthesizes strengths, weaknesses, opportunities, threats
|
|
15
|
+
- **Position**: Produces strategic positioning and differentiation recommendations
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/competitive-analysis.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info competitive-analysis
|
|
31
|
+
```
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Fan-out web research with adversarial claim verification and cited synthesis"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-deep-research
|
|
5
|
+
|
|
6
|
+
Runs the **Deep Research** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-deep-research <your research question>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Decomposes your question into 5 independent search angles
|
|
13
|
+
- **Search**: 5 parallel web search agents, one per angle (~30s)
|
|
14
|
+
- **Fetch**: Deduplicates URLs, fetches top 15 sources, extracts falsifiable claims
|
|
15
|
+
- **Verify**: 3-vote adversarial verification per claim — 2/3 refutes kills a claim
|
|
16
|
+
- **Synthesize**: Merges confirmed findings, ranks by confidence, cites all sources
|
|
17
|
+
|
|
18
|
+
## Running
|
|
19
|
+
|
|
20
|
+
Invoke via Claude Code's Workflow tool:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
Workflow({
|
|
24
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/deep-research.js",
|
|
25
|
+
args: "<your input>"
|
|
26
|
+
})
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or discover via CLI:
|
|
30
|
+
```bash
|
|
31
|
+
node bin/mindforge-cli.js workflow info deep-research
|
|
32
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Sequential pipeline: brief → PRD → architecture → user stories"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-feature-planner
|
|
5
|
+
|
|
6
|
+
Runs the **Feature Planner** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-feature-planner <feature description>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Brief**: Clarifies goals, target users, success criteria, and out-of-scope items
|
|
13
|
+
- **PRD**: Generates functional + non-functional requirements with priorities
|
|
14
|
+
- **Architecture**: Designs technical approach, components, data flow, files to create/modify
|
|
15
|
+
- **Stories**: Breaks feature into user stories with Given/When/Then and t-shirt estimates
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/feature-planner.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info feature-planner
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Parallel investigation across logs, metrics, traces, and code → mitigation → RCA → postmortem"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-incident-response
|
|
5
|
+
|
|
6
|
+
Runs the **Incident Response** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-incident-response <incident description and symptoms>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Alert**: Characterizes severity (P0-P3), affected systems, and initial hypothesis
|
|
13
|
+
- **Investigate**: 4 parallel agents — logs, metrics, distributed traces, recent code changes
|
|
14
|
+
- **Mitigate**: Identifies immediate mitigation steps with risk level and rollback procedures
|
|
15
|
+
- **RCA**: Blameless postmortem with root cause, timeline, action items, lessons learned
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/incident-response.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info incident-response
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Map structure → domain analysis → architecture → generate guided tour and onboarding docs"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-onboard-codebase
|
|
5
|
+
|
|
6
|
+
Runs the **Onboard Codebase** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-onboard-codebase [repo path or description]`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Map**: Discovers languages, frameworks, entry points, and key directory purposes
|
|
13
|
+
- **Domain**: Identifies business domains, core abstractions, and the software's purpose
|
|
14
|
+
- **Architecture**: Maps layers, data flow, key patterns, and developer gotchas
|
|
15
|
+
- **Tour**: Generates a 5-10 step guided tour, conventions guide, and quick-start
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/onboard-codebase.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info onboard-codebase
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Profile → parallel bottleneck hunt across DB/network/CPU/memory → prioritized fix plan"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-perf-optimize
|
|
5
|
+
|
|
6
|
+
Runs the **Perf Optimize** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-perf-optimize [application or path description]`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Profile**: Establishes baseline, identifies slowest paths, forms bottleneck hypothesis
|
|
13
|
+
- **Identify**: 4 parallel agents — DB queries, network, CPU/compute, memory
|
|
14
|
+
- **Plan**: Prioritizes fixes by impact-to-effort ratio with implementation guidance
|
|
15
|
+
- **Benchmark**: Defines before/after benchmark tests and success criteria for each fix
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/perf-optimize.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info perf-optimize
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "4-dimensional parallel PR review: correctness, security, performance, style → consensus verdict"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-pr-review
|
|
5
|
+
|
|
6
|
+
Runs the **Pr Review** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-pr-review [diff target or 'current HEAD~1']`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Reads the diff and gathers review context
|
|
13
|
+
- **Review**: 4 parallel reviewers — correctness, security, performance, code style
|
|
14
|
+
- **Consensus**: Merges all findings, deduplicates, assigns severity (blocking/major/minor)
|
|
15
|
+
- **Verdict**: APPROVED / APPROVED_WITH_SUGGESTIONS / CHANGES_REQUIRED / BLOCKING
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/pr-review.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info pr-review
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Technical debt scan → risk-sorted sequence → safe refactor implementation plan"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-refactor-plan
|
|
5
|
+
|
|
6
|
+
Runs the **Refactor Plan** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-refactor-plan [path or 'current codebase']`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scan**: 3 parallel scans — structural debt, complexity debt, maintenance debt
|
|
13
|
+
- **Prioritize**: Risk-sorts items by blast radius × test coverage inverse
|
|
14
|
+
- **Sequence**: Orders changes to minimize conflicts and risk
|
|
15
|
+
- **Plan**: Step-by-step refactor plan with verification gates and rollback procedures
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/refactor-plan.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info refactor-plan
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Automated release pipeline: tests → changelog → version bump → PR → announcement draft"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-release-prep
|
|
5
|
+
|
|
6
|
+
Runs the **Release Prep** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-release-prep [repo context]`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Check**: Verifies readiness — no uncommitted changes, tests passing, no critical open bugs
|
|
13
|
+
- **Changelog**: Generates changelog from conventional commits since last release
|
|
14
|
+
- **Bump**: Determines next semver version based on breaking/feature/fix counts
|
|
15
|
+
- **PR**: Drafts the release PR body, release notes, and social announcement
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/release-prep.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info release-prep
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Strict Red-Green-Refactor TDD loop with spec-first discipline"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-tdd-sprint
|
|
5
|
+
|
|
6
|
+
Runs the **Tdd Sprint** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-tdd-sprint <feature or behavior to implement>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Spec**: Writes a precise Given-When-Then behavioral spec with edge cases
|
|
13
|
+
- **Red**: Writes a failing test that captures exactly the required behavior
|
|
14
|
+
- **Green**: Writes the MINIMAL implementation to make the test pass
|
|
15
|
+
- **Refactor**: Cleans up the passing implementation with specific improvements listed
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/tdd-sprint.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info tdd-sprint
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Scored technology evaluation across DX, performance, security, ecosystem, community"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-tech-evaluation
|
|
5
|
+
|
|
6
|
+
Runs the **Tech Evaluation** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-tech-evaluation <TechA vs TechB vs TechC for [use case]>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Parses candidates and evaluation criteria from your input
|
|
13
|
+
- **Evaluate**: 5 parallel dimension agents — DX, performance, security, ecosystem, community
|
|
14
|
+
- **Score**: Builds a weighted 1-10 scoring matrix per dimension
|
|
15
|
+
- **Recommend**: Produces ranked recommendation with trade-offs for each option
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/tech-evaluation.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info tech-evaluation
|
|
31
|
+
```
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Browse the MindForge dynamic workflow library — 12 pre-built multi-agent workflows"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-catalog
|
|
5
|
+
|
|
6
|
+
Browse and discover the MindForge **Dynamic Workflow Library** — 12 pre-built multi-agent workflows that run via Claude Code's Workflow tool.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-catalog` — show all workflows grouped by tier
|
|
10
|
+
|
|
11
|
+
## Tiers
|
|
12
|
+
|
|
13
|
+
**Research** — Fan-out search, adversarial verification, cited synthesis
|
|
14
|
+
- `/mindforge:wf-deep-research` — Multi-source fact-checked research report
|
|
15
|
+
- `/mindforge:wf-competitive-analysis` — SWOT and positioning summary
|
|
16
|
+
- `/mindforge:wf-tech-evaluation` — Scored technology comparison matrix
|
|
17
|
+
|
|
18
|
+
**Dev** — Coding-assistant power workflows
|
|
19
|
+
- `/mindforge:wf-code-audit` — Parallel security + quality + performance audit
|
|
20
|
+
- `/mindforge:wf-feature-planner` — Brief → PRD → architecture → user stories
|
|
21
|
+
- `/mindforge:wf-pr-review` — 4-dimensional parallel PR review
|
|
22
|
+
- `/mindforge:wf-tdd-sprint` — Strict Red-Green-Refactor TDD loop
|
|
23
|
+
- `/mindforge:wf-refactor-plan` — Technical debt scan → safe refactor plan
|
|
24
|
+
|
|
25
|
+
**Ops** — Infrastructure and release workflows
|
|
26
|
+
- `/mindforge:wf-incident-response` — Parallel investigation → RCA → postmortem
|
|
27
|
+
- `/mindforge:wf-release-prep` — Tests → changelog → version bump → PR
|
|
28
|
+
|
|
29
|
+
**Intelligence** — Deep analysis and optimization
|
|
30
|
+
- `/mindforge:wf-onboard-codebase` — Map → domain → architecture → guided tour
|
|
31
|
+
- `/mindforge:wf-perf-optimize` — Profile → bottleneck hunt → prioritized fix plan
|
|
32
|
+
|
|
33
|
+
## CLI Discovery
|
|
34
|
+
```bash
|
|
35
|
+
node bin/mindforge-cli.js workflow list
|
|
36
|
+
node bin/mindforge-cli.js workflow info <name>
|
|
37
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Parallel security + quality + performance audit with adversarial finding verification"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-code-audit
|
|
5
|
+
|
|
6
|
+
Runs the **Code Audit** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-code-audit [path or 'current git diff']`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Builds file list from git diff, specified path, or entire codebase
|
|
13
|
+
- **Audit**: 3 parallel auditors — OWASP security, code quality, performance patterns
|
|
14
|
+
- **Verify**: Adversarial 2-vote verification for all high/critical severity findings
|
|
15
|
+
- **Report**: Risk-ranked report with remediation steps for each confirmed finding
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/code-audit.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info code-audit
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Multi-angle competitive research producing a SWOT and positioning summary"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-competitive-analysis
|
|
5
|
+
|
|
6
|
+
Runs the **Competitive Analysis** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-competitive-analysis <product/company/technology>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Defines the competitive landscape target
|
|
13
|
+
- **Research**: 5 parallel angles — product features, pricing, reviews, community, roadmap
|
|
14
|
+
- **SWOT**: Synthesizes strengths, weaknesses, opportunities, threats
|
|
15
|
+
- **Position**: Produces strategic positioning and differentiation recommendations
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/competitive-analysis.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info competitive-analysis
|
|
31
|
+
```
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Fan-out web research with adversarial claim verification and cited synthesis"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-deep-research
|
|
5
|
+
|
|
6
|
+
Runs the **Deep Research** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-deep-research <your research question>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Scope**: Decomposes your question into 5 independent search angles
|
|
13
|
+
- **Search**: 5 parallel web search agents, one per angle (~30s)
|
|
14
|
+
- **Fetch**: Deduplicates URLs, fetches top 15 sources, extracts falsifiable claims
|
|
15
|
+
- **Verify**: 3-vote adversarial verification per claim — 2/3 refutes kills a claim
|
|
16
|
+
- **Synthesize**: Merges confirmed findings, ranks by confidence, cites all sources
|
|
17
|
+
|
|
18
|
+
## Running
|
|
19
|
+
|
|
20
|
+
Invoke via Claude Code's Workflow tool:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
Workflow({
|
|
24
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/deep-research.js",
|
|
25
|
+
args: "<your input>"
|
|
26
|
+
})
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or discover via CLI:
|
|
30
|
+
```bash
|
|
31
|
+
node bin/mindforge-cli.js workflow info deep-research
|
|
32
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Sequential pipeline: brief → PRD → architecture → user stories"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-feature-planner
|
|
5
|
+
|
|
6
|
+
Runs the **Feature Planner** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-feature-planner <feature description>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Brief**: Clarifies goals, target users, success criteria, and out-of-scope items
|
|
13
|
+
- **PRD**: Generates functional + non-functional requirements with priorities
|
|
14
|
+
- **Architecture**: Designs technical approach, components, data flow, files to create/modify
|
|
15
|
+
- **Stories**: Breaks feature into user stories with Given/When/Then and t-shirt estimates
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/feature-planner.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info feature-planner
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Parallel investigation across logs, metrics, traces, and code → mitigation → RCA → postmortem"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-incident-response
|
|
5
|
+
|
|
6
|
+
Runs the **Incident Response** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-incident-response <incident description and symptoms>`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Alert**: Characterizes severity (P0-P3), affected systems, and initial hypothesis
|
|
13
|
+
- **Investigate**: 4 parallel agents — logs, metrics, distributed traces, recent code changes
|
|
14
|
+
- **Mitigate**: Identifies immediate mitigation steps with risk level and rollback procedures
|
|
15
|
+
- **RCA**: Blameless postmortem with root cause, timeline, action items, lessons learned
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/incident-response.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info incident-response
|
|
31
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Map structure → domain analysis → architecture → generate guided tour and onboarding docs"
|
|
3
|
+
---
|
|
4
|
+
# /mindforge:wf-onboard-codebase
|
|
5
|
+
|
|
6
|
+
Runs the **Onboard Codebase** dynamic workflow.
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
`/mindforge:wf-onboard-codebase [repo path or description]`
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
- **Map**: Discovers languages, frameworks, entry points, and key directory purposes
|
|
13
|
+
- **Domain**: Identifies business domains, core abstractions, and the software's purpose
|
|
14
|
+
- **Architecture**: Maps layers, data flow, key patterns, and developer gotchas
|
|
15
|
+
- **Tour**: Generates a 5-10 step guided tour, conventions guide, and quick-start
|
|
16
|
+
|
|
17
|
+
## Running
|
|
18
|
+
|
|
19
|
+
Invoke via Claude Code's Workflow tool:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
Workflow({
|
|
23
|
+
scriptPath: ".mindforge/dynamic-workflows/scripts/onboard-codebase.js",
|
|
24
|
+
args: "<your input>"
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or discover via CLI:
|
|
29
|
+
```bash
|
|
30
|
+
node bin/mindforge-cli.js workflow info onboard-codebase
|
|
31
|
+
```
|