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
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
node:internal/modules/cjs/loader:1459
|
|
2
|
+
throw err;
|
|
3
|
+
^
|
|
4
|
+
|
|
5
|
+
Error: Cannot find module 'playwright-core'
|
|
6
|
+
Require stack:
|
|
7
|
+
- /Users/sairamugge/Desktop/MindForge/bin/browser/browser-daemon.js
|
|
8
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1456:15)
|
|
9
|
+
at defaultResolveImpl (node:internal/modules/cjs/loader:1066:19)
|
|
10
|
+
at resolveForCJSWithHooks (node:internal/modules/cjs/loader:1071:22)
|
|
11
|
+
at Module._load (node:internal/modules/cjs/loader:1242:25)
|
|
12
|
+
at wrapModuleLoad (node:internal/modules/cjs/loader:255:19)
|
|
13
|
+
at Module.require (node:internal/modules/cjs/loader:1556:12)
|
|
14
|
+
at require (node:internal/modules/helpers:152:16)
|
|
15
|
+
at Object.<anonymous> (/Users/sairamugge/Desktop/MindForge/bin/browser/browser-daemon.js:9:20)
|
|
16
|
+
at Module._compile (node:internal/modules/cjs/loader:1812:14)
|
|
17
|
+
at Object..js (node:internal/modules/cjs/loader:1943:10) {
|
|
18
|
+
code: 'MODULE_NOT_FOUND',
|
|
19
|
+
requireStack: [
|
|
20
|
+
'/Users/sairamugge/Desktop/MindForge/bin/browser/browser-daemon.js'
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
Node.js v24.14.0
|
|
25
|
+
[daemon] Browser daemon listening on port 7338
|
|
26
|
+
[daemon] Browser daemon listening on port 7338
|
|
27
|
+
[daemon] Browser daemon listening on port 7338
|
|
28
|
+
[daemon] Browser daemon listening on port 7338
|
|
29
|
+
[daemon] Browser daemon listening on port 7338
|
|
30
|
+
[daemon] Browser daemon listening on port 7338
|
|
31
|
+
[daemon] Browser daemon listening on port 7338
|
|
32
|
+
[daemon] Browser daemon listening on port 7338
|
|
File without changes
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.1] — Core Migration Finalization — 2026-03-25
|
|
4
|
+
|
|
5
|
+
🧩 **MindForge v2.1.1 — Core Migration Finalization**
|
|
6
|
+
|
|
7
|
+
This release completes the structural rebranding and migration of the GSD framework into MindForge. It finalizes the path alignment for all 120+ assets and hardens the core configuration management.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **Finalized Path Mapping**: All framework assets now reside in a unified, flat `.agent/` structure.
|
|
11
|
+
- **Rebranded Lifecycle Hooks**: 5 new high-performance hooks for context monitoring, prompt guarding, and status line updates.
|
|
12
|
+
- **Enterprise Manifest**: New `file-manifest.json` with multi-project traceability.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- **Zero-Watermark Integrity**: All residual "GSD" and "get-shit-done" identifiers have been eliminated from the codebase, metadata, and configuration paths.
|
|
16
|
+
- **Hardened Settings**: `settings.json` now features dynamic hook pathing for increased portability.
|
|
17
|
+
|
|
18
|
+
## [2.1.0] — The Specialized Expansion — 2026-03-24
|
|
19
|
+
|
|
20
|
+
🧩 **MindForge v2.1.0 — The Specialized Expansion**
|
|
21
|
+
|
|
22
|
+
This release significantly expands the MindForge persona ecosystem, integrating 18+ high-performance specialized agents from the GSD framework. This expansion doubles the framework's baseline capabilities in research, architecture, execution, and quality assurance.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- **18+ New Specialized Personas**: Integration of advanced agents including `nyquist-auditor`, `user-profiler`, `advisor-researcher`, `ui-auditor`, and more.
|
|
26
|
+
- **Extended Mapping & Strategy**: Enhanced `roadmapper-extend` and `codebase-mapper-extend` for deep project lifecycle management.
|
|
27
|
+
- **Comprehensive Permissions Audit**: Full tool-access transparency for all 32 personas in `docs/PERSONAS.md`.
|
|
28
|
+
- **Architectural State Update**: `Master-Context.md` now reflects the 32-persona structural foundation.
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- **Documentation Overhaul**: Complete update of `PERSONAS.md` and `Master-Context.md` to reflect the expanded ecosystem.
|
|
32
|
+
- **Branding Alignment**: All integrated GSD personas rebranded and fully sanitized for MindForge native use.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
3
36
|
## [2.0.0] — The Autonomous Enterprise — 2026-03-24
|
|
4
37
|
|
|
5
38
|
🚀 **MindForge v2.0.0 — The Autonomous Enterprise — Major Release**
|
|
@@ -13,6 +46,14 @@ This major release transforms MindForge from a Claude-centric framework into a u
|
|
|
13
46
|
- **Unified Migration Engine (v2.0.0)**: Additive schema upgrades for `AUDIT.jsonl` (runtime/agent_id) and `token-usage.jsonl` (model_group).
|
|
14
47
|
- **Hardened Self-Building Skills**: Automated skill capture from documentation and phase outputs.
|
|
15
48
|
- **7-Dimension Quality Scorer**: Enhanced static analysis for skill authoring.
|
|
49
|
+
- **GSD Integration**: 10 new advanced commands for design-first planning, zero-friction capture, and smart routing.
|
|
50
|
+
- **`/mindforge:do`**: Smart natural language dispatcher that routes intent to the correct command.
|
|
51
|
+
- **`/mindforge:ui-phase` & `/mindforge:ui-review`**: Tier-1 visual design contract and visual audit engine.
|
|
52
|
+
- **`/mindforge:note`**: Instant idea capture with todo promotion.
|
|
53
|
+
- **`/mindforge:validate-phase`**: Requirement coverage and test gap identification.
|
|
54
|
+
- **`/mindforge:session-report`**: Professional stakeholder summary with token profiling.
|
|
55
|
+
- **Backlog & Seed Management**: `/mindforge:add-backlog`, `/mindforge:review-backlog`, and `/mindforge:plant-seed`.
|
|
56
|
+
- **Parallel Workstreams**: `/mindforge:workstreams` for concurrent milestone execution.
|
|
16
57
|
- **65-Point Production Checklist**: Exhaustive verification suite for enterprise readiness.
|
|
17
58
|
|
|
18
59
|
### Changed
|
package/MINDFORGE.md
CHANGED
|
@@ -81,6 +81,8 @@ BROWSER_HEADLESS=true
|
|
|
81
81
|
DEV_SERVER_URL=http://localhost:3000
|
|
82
82
|
AUTO_RUN_QA_AFTER_UI_WAVES=true
|
|
83
83
|
BROWSER_IDLE_TIMEOUT_MINUTES=30
|
|
84
|
+
AUTO_RUN_UI_REVIEW_AFTER_UI_WAVES=true
|
|
85
|
+
UI_PHASE_ACCESSIBILITY_STANDARD=WCAG_AA
|
|
84
86
|
|
|
85
87
|
## Project-specific agent instructions
|
|
86
88
|
ADDITIONAL_AGENT_INSTRUCTIONS="""
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# MindForge — Enterprise Agentic Framework (v2.
|
|
1
|
+
# MindForge — Enterprise Agentic Framework (v2.1.1)
|
|
2
2
|
|
|
3
3
|
MindForge turns Claude Code and Antigravity into production-grade engineering
|
|
4
4
|
partners with governance, observability, and a disciplined workflow engine.
|
|
5
|
-
Release published: v2.
|
|
5
|
+
Release published: v2.1.1.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npx mindforge-cc@latest
|
|
@@ -125,6 +125,7 @@ If issues are found, run:
|
|
|
125
125
|
## Quick start (existing codebase)
|
|
126
126
|
```bash
|
|
127
127
|
/mindforge:map-codebase
|
|
128
|
+
/mindforge:do I want to plan the next phase
|
|
128
129
|
/mindforge:plan-phase 1
|
|
129
130
|
```
|
|
130
131
|
|
|
@@ -136,6 +137,15 @@ If issues are found, run:
|
|
|
136
137
|
→ Requirements interview
|
|
137
138
|
→ Creates PROJECT.md, REQUIREMENTS.md, STATE.md
|
|
138
139
|
|
|
140
|
+
/ mindforge:do <text>
|
|
141
|
+
→ Smart natural language dispatcher (v2)
|
|
142
|
+
|
|
143
|
+
/ mindforge:note <text>
|
|
144
|
+
→ Zero-friction idea capture and todo promotion (v2)
|
|
145
|
+
|
|
146
|
+
/ mindforge:ui-phase 1
|
|
147
|
+
→ Create UI design contract (UI-SPEC.md) (v2)
|
|
148
|
+
|
|
139
149
|
/ mindforge:plan-phase 1
|
|
140
150
|
→ Discuss scope and decisions
|
|
141
151
|
→ Research domain (parallel)
|
|
@@ -146,6 +156,32 @@ If issues are found, run:
|
|
|
146
156
|
→ One commit per task
|
|
147
157
|
→ Automated verification
|
|
148
158
|
|
|
159
|
+
/ mindforge:ui-review 1
|
|
160
|
+
→ Retroactive 6-pillar visual audit (v2)
|
|
161
|
+
|
|
162
|
+
/ mindforge:validate-phase 1
|
|
163
|
+
→ Requirement coverage and test gap audit (v2)
|
|
164
|
+
|
|
165
|
+
/ mindforge:session-report
|
|
166
|
+
→ Automated post-session stakeholder summary (v2)
|
|
167
|
+
|
|
168
|
+
/ mindforge:add-backlog <desc>
|
|
169
|
+
→ Park ideas in 999.x "parking lot" (v2)
|
|
170
|
+
|
|
171
|
+
/ mindforge:review-backlog
|
|
172
|
+
→ Review and promote backlog items (v2)
|
|
173
|
+
|
|
174
|
+
/ mindforge:plant-seed <idea>
|
|
175
|
+
→ Capture speculative ideas with triggers (v2)
|
|
176
|
+
|
|
177
|
+
/ mindforge:workstreams
|
|
178
|
+
→ Parallel feature tracks with isolated state (v2)
|
|
179
|
+
|
|
180
|
+
/ mindforge:execute-phase 1
|
|
181
|
+
→ Wave-based parallel execution
|
|
182
|
+
→ One commit per task
|
|
183
|
+
→ Automated verification
|
|
184
|
+
|
|
149
185
|
/ mindforge:verify-phase 1
|
|
150
186
|
→ Human acceptance testing
|
|
151
187
|
→ Debug agent on failures
|
|
@@ -259,7 +295,8 @@ See `.mindforge/production/token-optimiser.md`.
|
|
|
259
295
|
- **Visual QA Engine**: `/mindforge:qa` and automated regression tests.
|
|
260
296
|
- **Persistent Browser Runtime**: `/mindforge:browse` and Playwright integration.
|
|
261
297
|
- **Autonomous Execution Engine**: `/mindforge:auto` and `/mindforge:steer`.
|
|
262
|
-
-
|
|
298
|
+
- **GSD Integration**: 10 new advanced commands for design, capture, and routing.
|
|
299
|
+
- 58+ commands across 12 workflow categories.
|
|
263
300
|
- 12 core skill packs with a three-tier registry.
|
|
264
301
|
- 8 specialised agent personas.
|
|
265
302
|
- Wave-based execution with dependency graph and compaction.
|
package/bin/installer-core.js
CHANGED
|
@@ -223,7 +223,7 @@ function verifyInstall(baseDir, cmdsDir, runtime, scope) {
|
|
|
223
223
|
const cfg = RUNTIMES[runtime];
|
|
224
224
|
const pfx = runtime === 'antigravity' ? 'mindforge:' : '';
|
|
225
225
|
const required = [
|
|
226
|
-
scope === 'local' ? path.join(process.cwd(), cfg.entryFile) : path.join(baseDir, cfg.entryFile),
|
|
226
|
+
scope === 'local' ? path.join(process.cwd(), (cfg.entryFile || 'CLAUDE.md').replace(/\.rd$/, '.md')) : path.join(baseDir, (cfg.entryFile || 'CLAUDE.md').replace(/\.rd$/, '.md')),
|
|
227
227
|
path.join(cmdsDir, `${pfx}help.md`),
|
|
228
228
|
path.join(cmdsDir, `${pfx}init-project.md`),
|
|
229
229
|
path.join(cmdsDir, `${pfx}health.md`),
|
|
@@ -267,10 +267,9 @@ async function install(runtime, scope, options = {}) {
|
|
|
267
267
|
return;
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
-
|
|
271
|
-
if (fsu.exists(claudeSrc)) {
|
|
270
|
+
if (fsu.exists(src('.claude', 'CLAUDE.md'))) {
|
|
272
271
|
// ✨ PERSISTENT MEMORY: Load relevant context for this session
|
|
273
|
-
let content = fsu.read(
|
|
272
|
+
let content = fsu.read(src('.claude', 'CLAUDE.md'));
|
|
274
273
|
if (scope === 'local') {
|
|
275
274
|
try {
|
|
276
275
|
const stack = SessionMemoryLoader.readTechStack();
|