mindforge-cc 2.0.0 → 2.1.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/bin/lib/commands.cjs +959 -0
- package/.agent/bin/lib/config.cjs +421 -0
- package/.agent/bin/lib/core.cjs +1166 -0
- package/.agent/bin/lib/frontmatter.cjs +307 -0
- package/.agent/bin/lib/init.cjs +1336 -0
- package/.agent/bin/lib/milestone.cjs +252 -0
- package/.agent/bin/lib/model-profiles.cjs +68 -0
- package/.agent/bin/lib/phase.cjs +888 -0
- package/.agent/bin/lib/profile-output.cjs +952 -0
- package/.agent/bin/lib/profile-pipeline.cjs +539 -0
- package/.agent/bin/lib/roadmap.cjs +329 -0
- package/.agent/bin/lib/security.cjs +356 -0
- package/.agent/bin/lib/state.cjs +969 -0
- package/.agent/bin/lib/template.cjs +222 -0
- package/.agent/bin/lib/uat.cjs +189 -0
- package/.agent/bin/lib/verify.cjs +851 -0
- package/.agent/bin/lib/workstream.cjs +491 -0
- package/.agent/bin/mindforge-tools.cjs +897 -0
- package/.agent/file-manifest.json +219 -0
- package/.agent/hooks/mindforge-check-update.js +114 -0
- package/.agent/hooks/mindforge-context-monitor.js +156 -0
- package/.agent/hooks/mindforge-prompt-guard.js +96 -0
- package/.agent/hooks/mindforge-statusline.js +119 -0
- package/.agent/hooks/mindforge-workflow-guard.js +94 -0
- package/.agent/mindforge/add-backlog.md +32 -0
- package/.agent/mindforge/agent.md +31 -0
- package/.agent/mindforge/discuss-phase.md +1 -1
- package/.agent/mindforge/do.md +31 -0
- package/.agent/mindforge/help.md +1 -1
- package/.agent/mindforge/learn.md +3 -2
- package/.agent/mindforge/note.md +35 -0
- package/.agent/mindforge/plant-seed.md +31 -0
- package/.agent/mindforge/research.md +3 -2
- package/.agent/mindforge/review-backlog.md +34 -0
- package/.agent/mindforge/session-report.md +39 -0
- package/.agent/mindforge/steer.md +1 -1
- package/.agent/mindforge/ui-phase.md +34 -0
- package/.agent/mindforge/ui-review.md +36 -0
- package/.agent/mindforge/validate-phase.md +31 -0
- package/.agent/mindforge/workstreams.md +35 -0
- package/.agent/settings.json +38 -0
- package/.agent/skills/mindforge-add-backlog/SKILL.md +72 -0
- package/.agent/skills/mindforge-add-phase/SKILL.md +39 -0
- package/.agent/skills/mindforge-add-tests/SKILL.md +28 -0
- package/.agent/skills/mindforge-add-todo/SKILL.md +42 -0
- package/.agent/skills/mindforge-audit-milestone/SKILL.md +29 -0
- package/.agent/skills/mindforge-audit-uat/SKILL.md +20 -0
- package/.agent/skills/mindforge-autonomous/SKILL.md +33 -0
- package/.agent/skills/mindforge-check-todos/SKILL.md +40 -0
- package/.agent/skills/mindforge-cleanup/SKILL.md +19 -0
- package/.agent/skills/mindforge-complete-milestone/SKILL.md +131 -0
- package/.agent/skills/mindforge-debug/SKILL.md +163 -0
- package/.agent/skills/mindforge-discuss-phase/SKILL.md +54 -0
- package/.agent/skills/mindforge-do/SKILL.md +26 -0
- package/.agent/skills/mindforge-execute-phase/SKILL.md +49 -0
- package/.agent/skills/mindforge-fast/SKILL.md +23 -0
- package/.agent/skills/mindforge-forensics/SKILL.md +49 -0
- package/.agent/skills/mindforge-health/SKILL.md +17 -0
- package/.agent/skills/mindforge-help/SKILL.md +23 -0
- package/.agent/skills/mindforge-insert-phase/SKILL.md +28 -0
- package/.agent/skills/mindforge-join-discord/SKILL.md +19 -0
- package/.agent/skills/mindforge-list-phase-assumptions/SKILL.md +41 -0
- package/.agent/skills/mindforge-list-workspaces/SKILL.md +17 -0
- package/.agent/skills/mindforge-manager/SKILL.md +32 -0
- package/.agent/skills/mindforge-map-codebase/SKILL.md +64 -0
- package/.agent/skills/mindforge-milestone-summary/SKILL.md +44 -0
- package/.agent/skills/mindforge-new-milestone/SKILL.md +38 -0
- package/.agent/skills/mindforge-new-project/SKILL.md +36 -0
- package/.agent/skills/mindforge-new-workspace/SKILL.md +39 -0
- package/.agent/skills/mindforge-next/SKILL.md +19 -0
- package/.agent/skills/mindforge-note/SKILL.md +29 -0
- package/.agent/skills/mindforge-pause-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-plan-milestone-gaps/SKILL.md +28 -0
- package/.agent/skills/mindforge-plan-phase/SKILL.md +37 -0
- package/.agent/skills/mindforge-plant-seed/SKILL.md +22 -0
- package/.agent/skills/mindforge-pr-branch/SKILL.md +21 -0
- package/.agent/skills/mindforge-profile-user/SKILL.md +38 -0
- package/.agent/skills/mindforge-progress/SKILL.md +19 -0
- package/.agent/skills/mindforge-quick/SKILL.md +38 -0
- package/.agent/skills/mindforge-reapply-patches/SKILL.md +124 -0
- package/.agent/skills/mindforge-remove-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-remove-workspace/SKILL.md +22 -0
- package/.agent/skills/mindforge-research-phase/SKILL.md +186 -0
- package/.agent/skills/mindforge-resume-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-review/SKILL.md +31 -0
- package/.agent/skills/mindforge-review-backlog/SKILL.md +58 -0
- package/.agent/skills/mindforge-session-report/SKILL.md +16 -0
- package/.agent/skills/mindforge-set-profile/SKILL.md +9 -0
- package/.agent/skills/mindforge-settings/SKILL.md +32 -0
- package/.agent/skills/mindforge-ship/SKILL.md +16 -0
- package/.agent/skills/mindforge-stats/SKILL.md +16 -0
- package/.agent/skills/mindforge-thread/SKILL.md +123 -0
- package/.agent/skills/mindforge-ui-phase/SKILL.md +24 -0
- package/.agent/skills/mindforge-ui-review/SKILL.md +24 -0
- package/.agent/skills/mindforge-update/SKILL.md +35 -0
- package/.agent/skills/mindforge-validate-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-verify-work/SKILL.md +30 -0
- package/.agent/skills/mindforge-workstreams/SKILL.md +65 -0
- package/.agent/workflows/mindforge-add-phase.md +112 -0
- package/.agent/workflows/mindforge-add-tests.md +351 -0
- package/.agent/workflows/mindforge-add-todo.md +158 -0
- package/.agent/workflows/mindforge-audit-milestone.md +332 -0
- package/.agent/workflows/mindforge-audit-uat.md +109 -0
- package/.agent/workflows/mindforge-autonomous.md +815 -0
- package/.agent/workflows/mindforge-check-todos.md +177 -0
- package/.agent/workflows/mindforge-cleanup.md +152 -0
- package/.agent/workflows/mindforge-complete-milestone.md +766 -0
- package/.agent/workflows/mindforge-diagnose-issues.md +220 -0
- package/.agent/workflows/mindforge-discovery-phase.md +289 -0
- package/.agent/workflows/mindforge-discuss-phase-assumptions.md +645 -0
- package/.agent/workflows/mindforge-discuss-phase.md +1047 -0
- package/.agent/workflows/mindforge-do.md +104 -0
- package/.agent/workflows/mindforge-execute-phase.md +838 -0
- package/.agent/workflows/mindforge-execute-plan.md +509 -0
- package/.agent/workflows/mindforge-fast.md +105 -0
- package/.agent/workflows/mindforge-forensics.md +265 -0
- package/.agent/workflows/mindforge-health.md +181 -0
- package/.agent/workflows/mindforge-help.md +606 -0
- package/.agent/workflows/mindforge-insert-phase.md +130 -0
- package/.agent/workflows/mindforge-list-phase-assumptions.md +178 -0
- package/.agent/workflows/mindforge-list-workspaces.md +56 -0
- package/.agent/workflows/mindforge-manager.md +360 -0
- package/.agent/workflows/mindforge-map-codebase.md +370 -0
- package/.agent/workflows/mindforge-milestone-summary.md +223 -0
- package/.agent/workflows/mindforge-new-milestone.md +469 -0
- package/.agent/workflows/mindforge-new-project.md +1226 -0
- package/.agent/workflows/mindforge-new-workspace.md +237 -0
- package/.agent/workflows/mindforge-next.md +97 -0
- package/.agent/workflows/mindforge-node-repair.md +92 -0
- package/.agent/workflows/mindforge-note.md +156 -0
- package/.agent/workflows/mindforge-pause-work.md +176 -0
- package/.agent/workflows/mindforge-plan-milestone-gaps.md +273 -0
- package/.agent/workflows/mindforge-plan-phase.md +848 -0
- package/.agent/workflows/mindforge-plant-seed.md +169 -0
- package/.agent/workflows/mindforge-pr-branch.md +129 -0
- package/.agent/workflows/mindforge-profile-user.md +450 -0
- package/.agent/workflows/mindforge-progress.md +507 -0
- package/.agent/workflows/mindforge-quick.md +732 -0
- package/.agent/workflows/mindforge-remove-phase.md +155 -0
- package/.agent/workflows/mindforge-remove-workspace.md +90 -0
- package/.agent/workflows/mindforge-research-phase.md +74 -0
- package/.agent/workflows/mindforge-resume-project.md +325 -0
- package/.agent/workflows/mindforge-review.md +228 -0
- package/.agent/workflows/mindforge-session-report.md +146 -0
- package/.agent/workflows/mindforge-settings.md +283 -0
- package/.agent/workflows/mindforge-ship.md +228 -0
- package/.agent/workflows/mindforge-stats.md +60 -0
- package/.agent/workflows/mindforge-transition.md +671 -0
- package/.agent/workflows/mindforge-ui-phase.md +290 -0
- package/.agent/workflows/mindforge-ui-review.md +157 -0
- package/.agent/workflows/mindforge-update.md +323 -0
- package/.agent/workflows/mindforge-validate-phase.md +167 -0
- package/.agent/workflows/mindforge-verify-phase.md +254 -0
- package/.agent/workflows/mindforge-verify-work.md +623 -0
- package/.claude/commands/mindforge/add-backlog.md +32 -0
- package/.claude/commands/mindforge/agent.md +31 -0
- package/.claude/commands/mindforge/approve.md +27 -15
- package/.claude/commands/mindforge/audit.md +30 -26
- package/.claude/commands/mindforge/auto.md +29 -18
- package/.claude/commands/mindforge/benchmark.md +26 -29
- package/.claude/commands/mindforge/browse.md +24 -22
- package/.claude/commands/mindforge/complete-milestone.md +28 -14
- package/.claude/commands/mindforge/costs.md +26 -9
- package/.claude/commands/mindforge/cross-review.md +27 -13
- package/.claude/commands/mindforge/dashboard.md +35 -98
- package/.claude/commands/mindforge/debug.md +34 -126
- package/.claude/commands/mindforge/discuss-phase.md +36 -138
- package/.claude/commands/mindforge/do.md +31 -0
- package/.claude/commands/mindforge/execute-phase.md +37 -190
- package/.claude/commands/mindforge/health.md +27 -17
- package/.claude/commands/mindforge/help.md +25 -19
- package/.claude/commands/mindforge/init-org.md +37 -131
- package/.claude/commands/mindforge/init-project.md +40 -155
- package/.claude/commands/mindforge/install-skill.md +32 -15
- package/.claude/commands/mindforge/learn.md +36 -142
- package/.claude/commands/mindforge/map-codebase.md +36 -298
- package/.claude/commands/mindforge/marketplace.md +33 -120
- package/.claude/commands/mindforge/metrics.md +29 -18
- package/.claude/commands/mindforge/migrate.md +33 -40
- package/.claude/commands/mindforge/milestone.md +35 -12
- package/.claude/commands/mindforge/new-runtime.md +25 -15
- package/.claude/commands/mindforge/next.md +34 -105
- package/.claude/commands/mindforge/note.md +35 -0
- package/.claude/commands/mindforge/plan-phase.md +34 -125
- package/.claude/commands/mindforge/plant-seed.md +31 -0
- package/.claude/commands/mindforge/plugins.md +30 -36
- package/.claude/commands/mindforge/pr-review.md +32 -41
- package/.claude/commands/mindforge/profile-team.md +26 -19
- package/.claude/commands/mindforge/publish-skill.md +28 -17
- package/.claude/commands/mindforge/qa.md +27 -12
- package/.claude/commands/mindforge/quick.md +35 -135
- package/.claude/commands/mindforge/release.md +27 -8
- package/.claude/commands/mindforge/remember.md +25 -10
- package/.claude/commands/mindforge/research.md +27 -9
- package/.claude/commands/mindforge/retrospective.md +28 -22
- package/.claude/commands/mindforge/review-backlog.md +34 -0
- package/.claude/commands/mindforge/review.md +37 -157
- package/.claude/commands/mindforge/security-scan.md +34 -233
- package/.claude/commands/mindforge/session-report.md +39 -0
- package/.claude/commands/mindforge/ship.md +34 -100
- package/.claude/commands/mindforge/skills.md +36 -141
- package/.claude/commands/mindforge/status.md +30 -104
- package/.claude/commands/mindforge/steer.md +25 -10
- package/.claude/commands/mindforge/sync-confluence.md +28 -9
- package/.claude/commands/mindforge/sync-jira.md +32 -12
- package/.claude/commands/mindforge/tokens.md +25 -6
- package/.claude/commands/mindforge/ui-phase.md +34 -0
- package/.claude/commands/mindforge/ui-review.md +36 -0
- package/.claude/commands/mindforge/update.md +33 -42
- package/.claude/commands/mindforge/validate-phase.md +31 -0
- package/.claude/commands/mindforge/verify-phase.md +30 -62
- package/.claude/commands/mindforge/workspace.md +28 -25
- package/.claude/commands/mindforge/workstreams.md +35 -0
- package/.mindforge/memory/decision-library.jsonl +0 -0
- package/.mindforge/memory/knowledge-base.jsonl +7 -0
- package/.mindforge/memory/pattern-library.jsonl +1 -0
- package/.mindforge/memory/team-preferences.jsonl +4 -0
- package/.mindforge/personas/advisor-researcher.md +89 -0
- package/.mindforge/personas/analyst.md +112 -52
- package/.mindforge/personas/architect.md +100 -67
- package/.mindforge/personas/assumptions-analyzer-extend.md +87 -0
- package/.mindforge/personas/assumptions-analyzer.md +109 -0
- package/.mindforge/personas/codebase-mapper-extend.md +93 -0
- package/.mindforge/personas/codebase-mapper.md +770 -0
- package/.mindforge/personas/coverage-specialist.md +104 -0
- package/.mindforge/personas/debug-specialist.md +118 -52
- package/.mindforge/personas/debugger.md +97 -0
- package/.mindforge/personas/decision-architect.md +102 -0
- package/.mindforge/personas/developer.md +97 -85
- package/.mindforge/personas/executor.md +88 -0
- package/.mindforge/personas/integration-checker.md +92 -0
- package/.mindforge/personas/nyquist-auditor.md +84 -0
- package/.mindforge/personas/phase-researcher.md +107 -0
- package/.mindforge/personas/plan-checker.md +92 -0
- package/.mindforge/personas/planner.md +105 -0
- package/.mindforge/personas/project-researcher.md +99 -0
- package/.mindforge/personas/qa-engineer.md +113 -61
- package/.mindforge/personas/release-manager.md +102 -64
- package/.mindforge/personas/research-agent.md +109 -24
- package/.mindforge/personas/research-synthesizer.md +101 -0
- package/.mindforge/personas/roadmapper-extend.md +100 -0
- package/.mindforge/personas/roadmapper.md +103 -0
- package/.mindforge/personas/security-reviewer.md +114 -91
- package/.mindforge/personas/tech-writer.md +118 -51
- package/.mindforge/personas/ui-auditor.md +94 -0
- package/.mindforge/personas/ui-checker.md +89 -0
- package/.mindforge/personas/ui-researcher.md +99 -0
- package/.mindforge/personas/user-profiler.md +93 -0
- package/.mindforge/personas/verifier.md +101 -0
- package/.planning/ROADMAP.md +10 -0
- package/.planning/browser-daemon.log +32 -0
- package/.planning/phases/01-migrate-gsd-to-mindforge/.gitkeep +0 -0
- package/CHANGELOG.md +41 -0
- package/MINDFORGE.md +2 -0
- package/README.md +40 -3
- package/bin/installer-core.js +3 -4
- package/docs/PERSONAS.md +611 -0
- package/docs/commands-reference.md +1 -0
- package/docs/{Context → context}/Master-Context.md +6 -13
- package/docs/references/checkpoints.md +778 -0
- package/docs/{reference → references}/commands.md +53 -43
- package/docs/references/continuation-format.md +249 -0
- package/docs/references/decimal-phase-calculation.md +64 -0
- package/docs/references/git-integration.md +295 -0
- package/docs/references/git-planning-commit.md +38 -0
- package/docs/references/model-profile-resolution.md +36 -0
- package/docs/references/model-profiles.md +139 -0
- package/docs/references/phase-argument-parsing.md +61 -0
- package/docs/references/planning-config.md +202 -0
- package/docs/references/questioning.md +162 -0
- package/docs/references/tdd.md +263 -0
- package/docs/references/ui-brand.md +160 -0
- package/docs/references/user-profiling.md +681 -0
- package/docs/references/verification-patterns.md +612 -0
- package/docs/references/workstream-flag.md +58 -0
- package/docs/skills-authoring-guide.md +1 -1
- package/docs/templates/Agents/CLAUDE-MD.md +122 -0
- package/docs/templates/Agents/COPILOT-INSTRUCTIONS.md +7 -0
- package/docs/templates/Agents/DEBUGGER-PROMPT.md +91 -0
- package/docs/templates/Agents/PLANNER-PROMPT.md +117 -0
- package/docs/templates/Execution/CONTINUE-HERE.md +78 -0
- package/docs/templates/Execution/DISCUSSION-LOG.md +63 -0
- package/docs/templates/Execution/PHASE-PROMPT.md +610 -0
- package/docs/templates/Execution/STATE.md +176 -0
- package/docs/templates/Execution/SUMMARY-COMPLEX.md +59 -0
- package/docs/templates/Execution/SUMMARY-MINIMAL.md +41 -0
- package/docs/templates/Execution/SUMMARY-STANDARD.md +48 -0
- package/docs/templates/Execution/SUMMARY.md +248 -0
- package/docs/templates/Profile/DEV-PREFERENCES.md +21 -0
- package/docs/templates/Profile/USER-PROFILE.md +146 -0
- package/docs/templates/Profile/USER-SETUP.md +311 -0
- package/docs/templates/Project/DISCOVERY.md +146 -0
- package/docs/templates/Project/MILESTONE-ARCHIVE.md +123 -0
- package/docs/templates/Project/MILESTONE.md +115 -0
- package/docs/templates/Project/PROJECT.md +206 -0
- package/docs/templates/Project/REQUIREMENTS.md +231 -0
- package/docs/templates/Project/RETROSPECTIVE.md +54 -0
- package/docs/templates/Project/ROADMAP.md +202 -0
- package/docs/templates/Quality/DEBUG.md +164 -0
- package/docs/templates/Quality/UAT.md +280 -0
- package/docs/templates/Quality/UI-SPEC.md +100 -0
- package/docs/templates/Quality/VALIDATION.md +76 -0
- package/docs/templates/Quality/VERIFICATION-REPORT.md +322 -0
- package/docs/templates/System/CONFIG.json +43 -0
- package/docs/templates/System/CONTEXT.md +352 -0
- package/docs/templates/codebase/architecture.md +255 -0
- package/docs/templates/codebase/concerns.md +310 -0
- package/docs/templates/codebase/conventions.md +307 -0
- package/docs/templates/codebase/integrations.md +280 -0
- package/docs/templates/codebase/stack.md +186 -0
- package/docs/templates/codebase/structure.md +285 -0
- package/docs/templates/codebase/testing.md +480 -0
- package/docs/templates/research/ARCHITECTURE.md +204 -0
- package/docs/templates/research/FEATURES.md +147 -0
- package/docs/templates/research/PITFALLS.md +200 -0
- package/docs/templates/research/STACK.md +120 -0
- package/docs/templates/research/SUMMARY.md +170 -0
- package/docs/user-guide.md +1 -1
- package/package.json +7 -2
- /package/docs/{reference → references}/audit-events.md +0 -0
- /package/docs/{reference → references}/config-reference.md +0 -0
- /package/docs/{reference → references}/sdk-api.md +0 -0
- /package/docs/{reference → references}/skills-api.md +0 -0
|
@@ -1,89 +1,99 @@
|
|
|
1
1
|
# MindForge v2.0.0 — Complete Commands Reference
|
|
2
2
|
|
|
3
|
-
## All
|
|
3
|
+
## All 50+ commands
|
|
4
4
|
|
|
5
5
|
### Lifecycle commands (core workflow)
|
|
6
6
|
|
|
7
7
|
| Command | Usage | Description | Added |
|
|
8
8
|
|---|---|---|---|
|
|
9
|
-
| `/mindforge:init-project` | `init-project` | Guided project setup — creates all `.planning/` files |
|
|
10
|
-
| `/mindforge:discuss-phase` | `discuss-phase [N] [--batch|--auto]` | Pre-planning interview to capture implementation decisions |
|
|
11
|
-
| `/mindforge:
|
|
9
|
+
| `/mindforge:init-project` | `init-project` | Guided project setup — creates all `.planning/` files | |
|
|
10
|
+
| `/mindforge:discuss-phase` | `discuss-phase [N] [--batch|--auto]` | Pre-planning interview to capture implementation decisions | |
|
|
11
|
+
| `/mindforge:ui-phase` | `ui-phase [N]` | Generate UI design contract (UI-SPEC.md) | v2.0.0 |
|
|
12
|
+
| `/mindforge:plan-phase` | `plan-phase [N]` | Research, decompose, and create atomic task plans | |
|
|
12
13
|
| `/mindforge:execute-phase` | `execute-phase [N]` | Wave-based parallel execution of all phase plans | Day 1+2 |
|
|
13
|
-
| `/mindforge:
|
|
14
|
-
| `/mindforge:
|
|
15
|
-
| `/mindforge:
|
|
16
|
-
| `/mindforge:
|
|
17
|
-
| `/mindforge:
|
|
18
|
-
| `/mindforge:
|
|
19
|
-
| `/mindforge:
|
|
20
|
-
| `/mindforge:
|
|
14
|
+
| `/mindforge:ui-review` | `ui-review [N]` | Retroactive 6-pillar visual audit | v2.0.0 |
|
|
15
|
+
| `/mindforge:verify-phase` | `verify-phase [N]` | Automated + human acceptance testing pipeline | |
|
|
16
|
+
| `/mindforge:validate-phase` | `validate-phase [N]` | Requirement coverage and test gap audit | v2.0.0 |
|
|
17
|
+
| `/mindforge:ship` | `ship [N]` | Create PR, write release notes, push to remote | |
|
|
18
|
+
| `/mindforge:auto` | `auto [--phase N] [--milestone M]` | Walk-away autonomous execution with stuck detection | |
|
|
19
|
+
| `/mindforge:steer` | `steer "instruction"` | Inject guidance into a running autonomous session | |
|
|
20
|
+
| `/mindforge:next` | `next` | Auto-detect and execute the correct next workflow step | |
|
|
21
|
+
| `/mindforge:cross-review` | `cross-review` | Adversarial multi-model code review and synthesis | |
|
|
22
|
+
| `/mindforge:research` | `research "query"` | Deep research using Gemini 1.5 Pro 1M context | |
|
|
23
|
+
| `/mindforge:remember` | `remember [--add X|--search Y|--promote ID|--stats]` | Persistent knowledge graph management | |
|
|
24
|
+
| `/mindforge:workstreams` | `workstreams [list|create|switch|status|complete]` | Manage parallel feature tracks with isolated state | v2.0.0 |
|
|
21
25
|
|
|
22
26
|
### Project setup & discovery
|
|
23
27
|
|
|
24
28
|
| Command | Usage | Description | Added |
|
|
25
29
|
|---|---|---|---|
|
|
26
|
-
| `/mindforge:map-codebase` | `map-codebase` | Brownfield onboarding: infer stack and seed docs |
|
|
27
|
-
| `/mindforge:
|
|
28
|
-
| `/mindforge:
|
|
29
|
-
| `/mindforge:
|
|
30
|
-
| `/mindforge:
|
|
31
|
-
| `/mindforge:
|
|
30
|
+
| `/mindforge:map-codebase` | `map-codebase` | Brownfield onboarding: infer stack and seed docs | |
|
|
31
|
+
| `/mindforge:do` | `do <text>` | Smart dispatcher for natural language intent | v2.0.0 |
|
|
32
|
+
| `/mindforge:note` | `note <text> [list|promote N]` | Zero-friction idea capture and todo promotion | v2.0.0 |
|
|
33
|
+
| `/mindforge:quick` | `quick` | Run a small, single-task plan without a full phase | |
|
|
34
|
+
| `/mindforge:status` | `status` | Show current phase, plan status, and next action | |
|
|
35
|
+
| `/mindforge:health` | `health [--repair]` | Validate installation and repair drift | |
|
|
36
|
+
| `/mindforge:review` | `review [N]` | Run a structured review pass for a phase | |
|
|
37
|
+
| `/mindforge:debug` | `debug [plan-id]` | Debug a failed plan with root-cause workflow | |
|
|
38
|
+
| `/mindforge:add-backlog` | `add-backlog <desc>` | Park ideas in 999.x "parking lot" | v2.0.0 |
|
|
39
|
+
| `/mindforge:review-backlog` | `review-backlog` | Review and promote backlog items to active phases | v2.0.0 |
|
|
40
|
+
| `/mindforge:plant-seed` | `plant-seed <idea>` | Capture speculative ideas with triggers | v2.0.0 |
|
|
32
41
|
|
|
33
42
|
### Governance & compliance
|
|
34
43
|
|
|
35
44
|
| Command | Usage | Description | Added |
|
|
36
45
|
|---|---|---|---|
|
|
37
|
-
| `/mindforge:approve` | `approve [--tier 2|3]` | Process approvals and emergency overrides |
|
|
38
|
-
| `/mindforge:audit` | `audit [--phase N] [--event X] [--since DATE]` | Query `AUDIT.jsonl` history |
|
|
39
|
-
| `/mindforge:security-scan` | `security-scan [--deep] [--secrets] [--deps]` | Security scan with OWASP classification |
|
|
40
|
-
| `/mindforge:milestone` | `milestone [name]` | Create or update milestone definitions |
|
|
41
|
-
| `/mindforge:complete-milestone` | `complete-milestone [name]` | Archive milestone and generate release report |
|
|
42
|
-
| `/mindforge:retrospective` | `retrospective [N]` | Phase retrospective and improvement actions |
|
|
46
|
+
| `/mindforge:approve` | `approve [--tier 2|3]` | Process approvals and emergency overrides | |
|
|
47
|
+
| `/mindforge:audit` | `audit [--phase N] [--event X] [--since DATE]` | Query `AUDIT.jsonl` history | |
|
|
48
|
+
| `/mindforge:security-scan` | `security-scan [--deep] [--secrets] [--deps]` | Security scan with OWASP classification | |
|
|
49
|
+
| `/mindforge:milestone` | `milestone [name]` | Create or update milestone definitions | |
|
|
50
|
+
| `/mindforge:complete-milestone` | `complete-milestone [name]` | Archive milestone and generate release report | |
|
|
51
|
+
| `/mindforge:retrospective` | `retrospective [N]` | Phase retrospective and improvement actions | |
|
|
43
52
|
|
|
44
53
|
### Skills & plugins
|
|
45
54
|
|
|
46
55
|
| Command | Usage | Description | Added |
|
|
47
56
|
|---|---|---|---|
|
|
48
|
-
| `/mindforge:skills` | `skills [list|validate|refresh]` | Manage core/org/project skills |
|
|
49
|
-
| `/mindforge:install-skill` | `install-skill <name> [--version]` | Install skill from registry |
|
|
50
|
-
| `/mindforge:publish-skill` | `publish-skill <path>` | Publish a skill to the registry |
|
|
51
|
-
| `/mindforge:plugins` | `plugins [list|install|uninstall|validate]` | Manage plugin lifecycle |
|
|
57
|
+
| `/mindforge:skills` | `skills [list|validate|refresh]` | Manage core/org/project skills | |
|
|
58
|
+
| `/mindforge:install-skill` | `install-skill <name> [--version]` | Install skill from registry | |
|
|
59
|
+
| `/mindforge:publish-skill` | `publish-skill <path>` | Publish a skill to the registry | |
|
|
60
|
+
| `/mindforge:plugins` | `plugins [list|install|uninstall|validate]` | Manage plugin lifecycle | |
|
|
52
61
|
|
|
53
62
|
### Intelligence & metrics
|
|
54
63
|
|
|
55
64
|
| Command | Usage | Description | Added |
|
|
56
65
|
|---|---|---|---|
|
|
57
|
-
| `/mindforge:metrics` | `metrics [--phase N]` | Compute quality and throughput metrics |
|
|
58
|
-
| `/mindforge:profile-team` | `profile-team` | Generate team skill and ownership profile |
|
|
59
|
-
| `/mindforge:benchmark` | `benchmark [--skill X]` | Measure skill effectiveness |
|
|
60
|
-
| `/mindforge:tokens` | `tokens [--profile] [--summary]` | Token usage profiling and optimisation |
|
|
66
|
+
| `/mindforge:metrics` | `metrics [--phase N]` | Compute quality and throughput metrics | |
|
|
67
|
+
| `/mindforge:profile-team` | `profile-team` | Generate team skill and ownership profile | |
|
|
68
|
+
| `/mindforge:benchmark` | `benchmark [--skill X]` | Measure skill effectiveness | |
|
|
69
|
+
| `/mindforge:tokens` | `tokens [--profile] [--summary]` | Token usage profiling and optimisation | |
|
|
61
70
|
|
|
62
71
|
### Integrations & distribution
|
|
63
72
|
|
|
64
73
|
| Command | Usage | Description | Added |
|
|
65
74
|
|---|---|---|---|
|
|
66
|
-
| `/mindforge:init-org` | `init-org` | Org-wide MindForge setup |
|
|
67
|
-
| `/mindforge:sync-jira` | `sync-jira [--project KEY]` | Sync phases and plans to Jira |
|
|
68
|
-
| `/mindforge:sync-confluence` | `sync-confluence [--page ...]` | Publish docs to Confluence |
|
|
69
|
-
| `/mindforge:pr-review` | `pr-review [--range A..B]` | AI PR review with context |
|
|
70
|
-
| `/mindforge:workspace` | `workspace [detect|plan|test]` | Monorepo workspace management |
|
|
71
|
-
| `/mindforge:browse` | `browse [--navigate URL] [--command]` | Control persistent browser daemon and sessions |
|
|
72
|
-
| `/mindforge:qa` | `qa [--diff] [--all]` | Run systematic visual QA and regression tests |
|
|
75
|
+
| `/mindforge:init-org` | `init-org` | Org-wide MindForge setup | |
|
|
76
|
+
| `/mindforge:sync-jira` | `sync-jira [--project KEY]` | Sync phases and plans to Jira | |
|
|
77
|
+
| `/mindforge:sync-confluence` | `sync-confluence [--page ...]` | Publish docs to Confluence | |
|
|
78
|
+
| `/mindforge:pr-review` | `pr-review [--range A..B]` | AI PR review with context | |
|
|
79
|
+
| `/mindforge:workspace` | `workspace [detect|plan|test]` | Monorepo workspace management | |
|
|
80
|
+
| `/mindforge:browse` | `browse [--navigate URL] [--command]` | Control persistent browser daemon and sessions | |
|
|
81
|
+
| `/mindforge:qa` | `qa [--diff] [--all]` | Run systematic visual QA and regression tests | |
|
|
73
82
|
|
|
74
83
|
### Release & maintenance
|
|
75
84
|
|
|
76
85
|
| Command | Usage | Description | Added |
|
|
77
86
|
|---|---|---|---|
|
|
78
|
-
| `/mindforge:update` | `update [--apply] [--force] [--check]` | Check for and apply framework updates |
|
|
79
|
-
| `/mindforge:migrate` | `migrate [--from vX] [--to vY] [--dry-run]` | Run schema migrations |
|
|
80
|
-
| `/mindforge:
|
|
87
|
+
| `/mindforge:update` | `update [--apply] [--force] [--check]` | Check for and apply framework updates | |
|
|
88
|
+
| `/mindforge:migrate` | `migrate [--from vX] [--to vY] [--dry-run]` | Run schema migrations | |
|
|
89
|
+
| `/mindforge:session-report` | `session-report` | Generate post-session summary and resource profiling | v2.0.0 |
|
|
90
|
+
| `/mindforge:release` | `release [--tag vX]` | Framework release pipeline (core team) | |
|
|
81
91
|
|
|
82
92
|
### Utility
|
|
83
93
|
|
|
84
94
|
| Command | Usage | Description | Added |
|
|
85
95
|
|---|---|---|---|
|
|
86
|
-
| `/mindforge:help` | `help` | Show all available commands and current project status |
|
|
96
|
+
| `/mindforge:help` | `help` | Show all available commands and current project status | |
|
|
87
97
|
|
|
88
98
|
## Command interface contract (v1.0.0 stable)
|
|
89
99
|
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
# Continuation Format
|
|
2
|
+
|
|
3
|
+
Standard format for presenting next steps after completing a command or workflow.
|
|
4
|
+
|
|
5
|
+
## Core Structure
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ▶ Next Up
|
|
11
|
+
|
|
12
|
+
**{identifier}: {name}** — {one-line description}
|
|
13
|
+
|
|
14
|
+
`{command to copy-paste}`
|
|
15
|
+
|
|
16
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
**Also available:**
|
|
21
|
+
- `{alternative option 1}` — description
|
|
22
|
+
- `{alternative option 2}` — description
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Format Rules
|
|
28
|
+
|
|
29
|
+
1. **Always show what it is** — name + description, never just a command path
|
|
30
|
+
2. **Pull context from source** — ROADMAP.md for phases, PLAN.md `<objective>` for plans
|
|
31
|
+
3. **Command in inline code** — backticks, easy to copy-paste, renders as clickable link
|
|
32
|
+
4. **`/clear` explanation** — always include, keeps it concise but explains why
|
|
33
|
+
5. **"Also available" not "Other options"** — sounds more app-like
|
|
34
|
+
6. **Visual separators** — `---` above and below to make it stand out
|
|
35
|
+
|
|
36
|
+
## Variants
|
|
37
|
+
|
|
38
|
+
### Execute Next Plan
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## ▶ Next Up
|
|
44
|
+
|
|
45
|
+
**02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
|
|
46
|
+
|
|
47
|
+
`/mindforge-execute-phase 2`
|
|
48
|
+
|
|
49
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
**Also available:**
|
|
54
|
+
- Review plan before executing
|
|
55
|
+
- `/mindforge-list-phase-assumptions 2` — check assumptions
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Execute Final Plan in Phase
|
|
61
|
+
|
|
62
|
+
Add note that this is the last plan and what comes after:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## ▶ Next Up
|
|
68
|
+
|
|
69
|
+
**02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
|
|
70
|
+
<sub>Final plan in Phase 2</sub>
|
|
71
|
+
|
|
72
|
+
`/mindforge-execute-phase 2`
|
|
73
|
+
|
|
74
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
**After this completes:**
|
|
79
|
+
- Phase 2 → Phase 3 transition
|
|
80
|
+
- Next: **Phase 3: Core Features** — User dashboard and settings
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Plan a Phase
|
|
86
|
+
|
|
87
|
+
```
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## ▶ Next Up
|
|
91
|
+
|
|
92
|
+
**Phase 2: Authentication** — JWT login flow with refresh tokens
|
|
93
|
+
|
|
94
|
+
`/mindforge-plan-phase 2`
|
|
95
|
+
|
|
96
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
**Also available:**
|
|
101
|
+
- `/mindforge-discuss-phase 2` — gather context first
|
|
102
|
+
- `/mindforge-research-phase 2` — investigate unknowns
|
|
103
|
+
- Review roadmap
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Phase Complete, Ready for Next
|
|
109
|
+
|
|
110
|
+
Show completion status before next action:
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## ✓ Phase 2 Complete
|
|
116
|
+
|
|
117
|
+
3/3 plans executed
|
|
118
|
+
|
|
119
|
+
## ▶ Next Up
|
|
120
|
+
|
|
121
|
+
**Phase 3: Core Features** — User dashboard, settings, and data export
|
|
122
|
+
|
|
123
|
+
`/mindforge-plan-phase 3`
|
|
124
|
+
|
|
125
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
**Also available:**
|
|
130
|
+
- `/mindforge-discuss-phase 3` — gather context first
|
|
131
|
+
- `/mindforge-research-phase 3` — investigate unknowns
|
|
132
|
+
- Review what Phase 2 built
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Multiple Equal Options
|
|
138
|
+
|
|
139
|
+
When there's no clear primary action:
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## ▶ Next Up
|
|
145
|
+
|
|
146
|
+
**Phase 3: Core Features** — User dashboard, settings, and data export
|
|
147
|
+
|
|
148
|
+
**To plan directly:** `/mindforge-plan-phase 3`
|
|
149
|
+
|
|
150
|
+
**To discuss context first:** `/mindforge-discuss-phase 3`
|
|
151
|
+
|
|
152
|
+
**To research unknowns:** `/mindforge-research-phase 3`
|
|
153
|
+
|
|
154
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### Milestone Complete
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## 🎉 Milestone v1.0 Complete
|
|
165
|
+
|
|
166
|
+
All 4 phases shipped
|
|
167
|
+
|
|
168
|
+
## ▶ Next Up
|
|
169
|
+
|
|
170
|
+
**Start v1.1** — questioning → research → requirements → roadmap
|
|
171
|
+
|
|
172
|
+
`/mindforge-new-milestone`
|
|
173
|
+
|
|
174
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
## Pulling Context
|
|
180
|
+
|
|
181
|
+
### For phases (from ROADMAP.md):
|
|
182
|
+
|
|
183
|
+
```markdown
|
|
184
|
+
### Phase 2: Authentication
|
|
185
|
+
**Goal**: JWT login flow with refresh tokens
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
Extract: `**Phase 2: Authentication** — JWT login flow with refresh tokens`
|
|
189
|
+
|
|
190
|
+
### For plans (from ROADMAP.md):
|
|
191
|
+
|
|
192
|
+
```markdown
|
|
193
|
+
Plans:
|
|
194
|
+
- [ ] 02-03: Add refresh token rotation
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
Or from PLAN.md `<objective>`:
|
|
198
|
+
|
|
199
|
+
```xml
|
|
200
|
+
<objective>
|
|
201
|
+
Add refresh token rotation with sliding expiry window.
|
|
202
|
+
|
|
203
|
+
Purpose: Extend session lifetime without compromising security.
|
|
204
|
+
</objective>
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Extract: `**02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry`
|
|
208
|
+
|
|
209
|
+
## Anti-Patterns
|
|
210
|
+
|
|
211
|
+
### Don't: Command-only (no context)
|
|
212
|
+
|
|
213
|
+
```
|
|
214
|
+
## To Continue
|
|
215
|
+
|
|
216
|
+
Run `/clear`, then paste:
|
|
217
|
+
/mindforge-execute-phase 2
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
User has no idea what 02-03 is about.
|
|
221
|
+
|
|
222
|
+
### Don't: Missing /clear explanation
|
|
223
|
+
|
|
224
|
+
```
|
|
225
|
+
`/mindforge-plan-phase 3`
|
|
226
|
+
|
|
227
|
+
Run /clear first.
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
Doesn't explain why. User might skip it.
|
|
231
|
+
|
|
232
|
+
### Don't: "Other options" language
|
|
233
|
+
|
|
234
|
+
```
|
|
235
|
+
Other options:
|
|
236
|
+
- Review roadmap
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
Sounds like an afterthought. Use "Also available:" instead.
|
|
240
|
+
|
|
241
|
+
### Don't: Fenced code blocks for commands
|
|
242
|
+
|
|
243
|
+
```
|
|
244
|
+
```
|
|
245
|
+
/mindforge-plan-phase 3
|
|
246
|
+
```
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
Fenced blocks inside templates create nesting ambiguity. Use inline backticks instead.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Decimal Phase Calculation
|
|
2
|
+
|
|
3
|
+
Calculate the next decimal phase number for urgent insertions.
|
|
4
|
+
|
|
5
|
+
## Using mindforge-tools
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Get next decimal phase after phase 6
|
|
9
|
+
node ".agent/mindforge/bin/mindforge-tools.cjs" phase next-decimal 6
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Output:
|
|
13
|
+
```json
|
|
14
|
+
{
|
|
15
|
+
"found": true,
|
|
16
|
+
"base_phase": "06",
|
|
17
|
+
"next": "06.1",
|
|
18
|
+
"existing": []
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
With existing decimals:
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"found": true,
|
|
26
|
+
"base_phase": "06",
|
|
27
|
+
"next": "06.3",
|
|
28
|
+
"existing": ["06.1", "06.2"]
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Extract Values
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
DECIMAL_PHASE=$(node ".agent/mindforge/bin/mindforge-tools.cjs" phase next-decimal "${AFTER_PHASE}" --pick next)
|
|
36
|
+
BASE_PHASE=$(node ".agent/mindforge/bin/mindforge-tools.cjs" phase next-decimal "${AFTER_PHASE}" --pick base_phase)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Or with --raw flag:
|
|
40
|
+
```bash
|
|
41
|
+
DECIMAL_PHASE=$(node ".agent/mindforge/bin/mindforge-tools.cjs" phase next-decimal "${AFTER_PHASE}" --raw)
|
|
42
|
+
# Returns just: 06.1
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Examples
|
|
46
|
+
|
|
47
|
+
| Existing Phases | Next Phase |
|
|
48
|
+
|-----------------|------------|
|
|
49
|
+
| 06 only | 06.1 |
|
|
50
|
+
| 06, 06.1 | 06.2 |
|
|
51
|
+
| 06, 06.1, 06.2 | 06.3 |
|
|
52
|
+
| 06, 06.1, 06.3 (gap) | 06.4 |
|
|
53
|
+
|
|
54
|
+
## Directory Naming
|
|
55
|
+
|
|
56
|
+
Decimal phase directories use the full decimal number:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
SLUG=$(node ".agent/mindforge/bin/mindforge-tools.cjs" generate-slug "$DESCRIPTION" --raw)
|
|
60
|
+
PHASE_DIR=".planning/phases/${DECIMAL_PHASE}-${SLUG}"
|
|
61
|
+
mkdir -p "$PHASE_DIR"
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Example: `.planning/phases/06.1-fix-critical-auth-bug/`
|