mindforge-cc 2.1.0 → 2.1.2
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/discuss-phase.md +1 -1
- package/.agent/mindforge/help.md +1 -1
- package/.agent/mindforge/learn.md +3 -2
- package/.agent/mindforge/research.md +3 -2
- package/.agent/mindforge/steer.md +1 -1
- 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/.mindforge/personas/advisor-researcher.md +3 -3
- package/.mindforge/personas/debug-specialist.md +1 -1
- package/.mindforge/personas/debugger.md +1 -1
- package/.mindforge/personas/developer.md +1 -1
- package/.mindforge/personas/phase-researcher.md +4 -4
- package/.mindforge/personas/project-researcher.md +3 -3
- package/.mindforge/personas/research-agent.md +4 -3
- package/.mindforge/personas/tech-writer.md +1 -1
- package/.mindforge/personas/ui-researcher.md +1 -1
- package/.planning/ROADMAP.md +10 -0
- package/CHANGELOG.md +34 -0
- package/README.md +70 -45
- package/RELEASENOTES.md +26 -26
- package/bin/install.js +41 -41
- package/bin/installer-core.js +67 -26
- package/bin/wizard/setup-wizard.js +11 -24
- package/bin/wizard/theme.js +141 -0
- package/docs/PERSONAS.md +119 -87
- package/docs/References/checkpoints.md +778 -0
- package/docs/References/config-reference.md +81 -0
- 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/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/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/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/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/Templates/System/CONFIG.json +43 -0
- package/docs/Templates/System/CONTEXT.md +352 -0
- package/docs/architecture/README.md +54 -42
- package/docs/commands-reference.md +62 -14
- package/docs/getting-started.md +26 -18
- package/docs/skills-authoring-guide.md +40 -12
- package/docs/tutorial.md +83 -116
- package/docs/user-guide.md +72 -198
- package/package.json +7 -2
- package/.mindforge/memory/knowledge-base.jsonl +0 -7
- package/.mindforge/memory/pattern-library.jsonl +0 -1
- package/.mindforge/memory/team-preferences.jsonl +0 -4
- package/.planning/browser-daemon.log +0 -32
- package/docs/mindforge-md-reference.md +0 -57
- package/docs/reference/config-reference.md +0 -64
- /package/{.mindforge/memory/decision-library.jsonl → .planning/phases/01-migrate-gsd-to-mindforge/.gitkeep} +0 -0
- /package/docs/{reference → References}/audit-events.md +0 -0
- /package/docs/{reference → References}/commands.md +0 -0
- /package/docs/{reference → References}/sdk-api.md +0 -0
- /package/docs/{reference → References}/skills-api.md +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-project-researcher
|
|
3
3
|
description: Principal domain researcher. Investigates ecosystem, feasibility, and technical constraints before project or milestone creation.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, search_web, read_url_content
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, search_web, read_url_content, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -32,8 +32,8 @@ The most valuable thing you can find is what *won't* work. Identify the "Critica
|
|
|
32
32
|
<process>
|
|
33
33
|
|
|
34
34
|
<step name="ecosystem_discovery">
|
|
35
|
-
Identify
|
|
36
|
-
|
|
35
|
+
Identify primary framework choices. Query `Context7` for current documentation, code examples, and ecosystem standards.
|
|
36
|
+
Supplement with manual search for popularity and community sentiment.
|
|
37
37
|
</step>
|
|
38
38
|
|
|
39
39
|
<step name="feasibility_assessment">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-research-agent
|
|
3
3
|
description: Technical research specialist with 1M+ token context window. Ingests large documentation sets and codebases to identify patterns, debt, and integration paths.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, Browser
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, Browser, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -38,9 +38,9 @@ Identify the primary sources: Existing code, external URL docs, or local regulat
|
|
|
38
38
|
</step>
|
|
39
39
|
|
|
40
40
|
<step name="deep_ingestion">
|
|
41
|
-
Use `
|
|
41
|
+
Use `Context7` MCP as the primary engine for external documentation and code examples. Fallback to `Browser` for niche sites or non-standard documentation. Use `Read` for large local files.
|
|
42
42
|
Look for:
|
|
43
|
-
- API contracts and examples.
|
|
43
|
+
- API contracts and examples (via Context7).
|
|
44
44
|
- Performance limits.
|
|
45
45
|
- Known pitfalls/issues.
|
|
46
46
|
- Licensing and security status.
|
|
@@ -95,6 +95,7 @@ Highlight:
|
|
|
95
95
|
|
|
96
96
|
<critical_rules>
|
|
97
97
|
- **NO GUESSING**: If the documentation is unclear, state it as an "Open Question." Never fill gaps with hallucinated details.
|
|
98
|
+
- **CONTEXT7 FIRST**: Always query Context7 for library documentation before manual browsing.
|
|
98
99
|
- **ABSOLUTE PATHS**: Always cite your sources with absolute paths or valid URLs.
|
|
99
100
|
- **CONTEXT OVER BREVITY**: When researching complex integrations, favor detail. The Decision Architect needs the "Why" and the "How."
|
|
100
101
|
</critical_rules>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-tech-writer
|
|
3
3
|
description: Senior technical writer and communication specialist. Produces minimal, high-utility documentation for developers and stakeholders.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-ui-researcher
|
|
3
3
|
description: Produced design contracts (UI-SPEC.md) for frontend phases. Researches stack, tokens, and components.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, search_web
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, search_web, Context7
|
|
5
5
|
color: #E879F9
|
|
6
6
|
---
|
|
7
7
|
|
package/.planning/ROADMAP.md
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.2] — Beast Mode Branding & CI Fix — 2026-03-25
|
|
4
|
+
|
|
5
|
+
🚀 **MindForge v2.1.2 — Beast Mode Branding & CI Fix**
|
|
6
|
+
|
|
7
|
+
This release transforms the MindForge installation experience with a high-impact "Beast Mode" CLI interface and resolves critical CI/CD integration issues.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **Beast Mode CLI Branding**: New ultra-blocky ASCII "MINDFORGE" branding and high-contrast "Digital Architect" design system.
|
|
11
|
+
- **Payload Manifest Summary**: Architectural summary screen displaying dynamic counts of deployed Personas, Skills, and Integrations.
|
|
12
|
+
- **"TRY IT NOW" Utility**: Boxed terminal widget providing immediate post-install command guidance.
|
|
13
|
+
- **Enhanced Status Reporting**: Unified architectural status grid for environment detection.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **CI/CD Permissions**: Resolved `RequestError [HttpError]: GitHub Actions is not permitted to create or approve pull requests` by adding `contents: write` to `auto-pr.yml`.
|
|
17
|
+
|
|
18
|
+
## [2.1.1] — Core Migration Finalization — 2026-03-25
|
|
19
|
+
|
|
20
|
+
🧩 **MindForge v2.1.1 — Core Migration Finalization**
|
|
21
|
+
|
|
22
|
+
This release completes the structural rebranding and migration of the GSD framework into MindForge. It finalizes the path alignment for all 120+ assets, hardens the core configuration management, and fully integrates the expanded persona ecosystem.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- **Finalized Path Mapping**: All framework assets (skills, workflows, bin) now reside in a unified, flat `.agent/` structure for cross-IDE compatibility.
|
|
26
|
+
- **32-Persona Ecosystem**: Full integration of 32 specialized engineering personas with defined tool permissions and capability matrices.
|
|
27
|
+
- **Unified 4-Pillar Workflow**: Hardened `plan`, `execute`, `verify`, and `ship` logic with project-level `.agent/` integrity.
|
|
28
|
+
- **Enterprise Manifest**: New `file-manifest.json` serving as the single source of truth for multi-project codebase mapping.
|
|
29
|
+
- **Consolidated Configuration**: Unified framework settings and project-level governance in `.mindforge/` and `.agent/`.
|
|
30
|
+
- **Rebranded Lifecycle Hooks**: 5 new high-performance hooks for context monitoring, prompt guarding, and real-time status updates.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
- **Zero-Watermark Integrity**: 100% elimination of residual "GSD" and "get-shit-done" identifiers from codebase, documentation, and metadata.
|
|
34
|
+
- **Documentation Overhaul**: Modernized the entire documentation suite, including Architecture, Personas, Skills Authoring, and Command References.
|
|
35
|
+
- **Hardened Settings**: `settings.json` now features dynamic hook pathing for increased portability across system environments.
|
|
36
|
+
|
|
3
37
|
## [2.1.0] — The Specialized Expansion — 2026-03-24
|
|
4
38
|
|
|
5
39
|
🧩 **MindForge v2.1.0 — The Specialized Expansion**
|
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
|
|
@@ -10,7 +10,9 @@ npx mindforge-cc@latest
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
|
|
13
14
|
## Why MindForge
|
|
15
|
+
|
|
14
16
|
AI coding agents degrade over long sessions. Context fills up. Quality drops.
|
|
15
17
|
Decisions get forgotten. MindForge fixes that with:
|
|
16
18
|
|
|
@@ -29,14 +31,18 @@ Decisions get forgotten. MindForge fixes that with:
|
|
|
29
31
|
|
|
30
32
|
---
|
|
31
33
|
|
|
34
|
+
|
|
32
35
|
## Install
|
|
33
36
|
|
|
34
37
|
### Claude Code (global)
|
|
38
|
+
|
|
35
39
|
```bash
|
|
36
40
|
npx mindforge-cc@latest --claude --global
|
|
37
41
|
```
|
|
38
42
|
|
|
43
|
+
|
|
39
44
|
### Claude Code (local)
|
|
45
|
+
|
|
40
46
|
```bash
|
|
41
47
|
npx mindforge-cc@latest --claude --local
|
|
42
48
|
```
|
|
@@ -51,7 +57,9 @@ npm install -g mindforge-cc
|
|
|
51
57
|
npm install -g mindforge-cc@alpha
|
|
52
58
|
```
|
|
53
59
|
|
|
60
|
+
|
|
54
61
|
### Antigravity
|
|
62
|
+
|
|
55
63
|
```bash
|
|
56
64
|
npx mindforge-cc@latest --antigravity --global
|
|
57
65
|
```
|
|
@@ -68,40 +76,55 @@ Optional: minimal project scaffolding
|
|
|
68
76
|
npx mindforge-cc@latest --claude --local --minimal
|
|
69
77
|
```
|
|
70
78
|
|
|
79
|
+
|
|
71
80
|
### Cursor
|
|
81
|
+
|
|
72
82
|
```bash
|
|
73
83
|
npx mindforge-cc@latest --cursor --local
|
|
74
84
|
```
|
|
75
85
|
|
|
86
|
+
|
|
76
87
|
### Gemini CLI
|
|
88
|
+
|
|
77
89
|
```bash
|
|
78
90
|
npx mindforge-cc@latest --gemini --global
|
|
79
91
|
```
|
|
80
92
|
|
|
93
|
+
|
|
81
94
|
### GitHub Copilot
|
|
95
|
+
|
|
82
96
|
```bash
|
|
83
97
|
npx mindforge-cc@latest --copilot --local
|
|
84
98
|
```
|
|
85
99
|
|
|
100
|
+
|
|
86
101
|
### OpenCode
|
|
102
|
+
|
|
87
103
|
```bash
|
|
88
104
|
npx mindforge-cc@latest --opencode --global
|
|
89
105
|
```
|
|
90
106
|
|
|
107
|
+
|
|
91
108
|
### Specific Runtime (Universal)
|
|
109
|
+
|
|
92
110
|
```bash
|
|
93
111
|
npx mindforge-cc@latest --runtime <name>
|
|
94
112
|
```
|
|
95
113
|
|
|
114
|
+
|
|
96
115
|
### Multiple runtimes
|
|
116
|
+
|
|
97
117
|
```bash
|
|
98
118
|
npx mindforge-cc@latest --runtime claude,cursor --local
|
|
99
119
|
```
|
|
100
120
|
|
|
101
121
|
---
|
|
102
122
|
|
|
123
|
+
|
|
103
124
|
## Verify
|
|
125
|
+
|
|
104
126
|
Open Claude Code or Antigravity in your project directory and run:
|
|
127
|
+
|
|
105
128
|
```bash
|
|
106
129
|
/mindforge:health
|
|
107
130
|
```
|
|
@@ -113,7 +136,9 @@ If issues are found, run:
|
|
|
113
136
|
|
|
114
137
|
---
|
|
115
138
|
|
|
139
|
+
|
|
116
140
|
## Quick start (new project)
|
|
141
|
+
|
|
117
142
|
```bash
|
|
118
143
|
/mindforge:init-project
|
|
119
144
|
/mindforge:plan-phase 1
|
|
@@ -122,7 +147,9 @@ If issues are found, run:
|
|
|
122
147
|
/mindforge:ship 1
|
|
123
148
|
```
|
|
124
149
|
|
|
150
|
+
|
|
125
151
|
## Quick start (existing codebase)
|
|
152
|
+
|
|
126
153
|
```bash
|
|
127
154
|
/mindforge:map-codebase
|
|
128
155
|
/mindforge:do I want to plan the next phase
|
|
@@ -131,106 +158,108 @@ If issues are found, run:
|
|
|
131
158
|
|
|
132
159
|
---
|
|
133
160
|
|
|
161
|
+
|
|
134
162
|
## Core workflow
|
|
163
|
+
|
|
135
164
|
```bash
|
|
136
|
-
/
|
|
165
|
+
/mindforge:init-project
|
|
137
166
|
→ Requirements interview
|
|
138
167
|
→ Creates PROJECT.md, REQUIREMENTS.md, STATE.md
|
|
139
168
|
|
|
140
|
-
/
|
|
169
|
+
/mindforge:do <text>
|
|
141
170
|
→ Smart natural language dispatcher (v2)
|
|
142
171
|
|
|
143
|
-
/
|
|
172
|
+
/mindforge:note <text>
|
|
144
173
|
→ Zero-friction idea capture and todo promotion (v2)
|
|
145
174
|
|
|
146
|
-
/
|
|
175
|
+
/mindforge:ui-phase 1
|
|
147
176
|
→ Create UI design contract (UI-SPEC.md) (v2)
|
|
148
177
|
|
|
149
|
-
/
|
|
178
|
+
/mindforge:plan-phase 1
|
|
150
179
|
→ Discuss scope and decisions
|
|
151
180
|
→ Research domain (parallel)
|
|
152
181
|
→ Create atomic XML task plans
|
|
153
182
|
|
|
154
|
-
/
|
|
183
|
+
/mindforge:execute-phase 1
|
|
155
184
|
→ Wave-based parallel execution
|
|
156
185
|
→ One commit per task
|
|
157
186
|
→ Automated verification
|
|
158
187
|
|
|
159
|
-
/
|
|
188
|
+
/mindforge:ui-review 1
|
|
160
189
|
→ Retroactive 6-pillar visual audit (v2)
|
|
161
190
|
|
|
162
|
-
/
|
|
191
|
+
/mindforge:validate-phase 1
|
|
163
192
|
→ Requirement coverage and test gap audit (v2)
|
|
164
193
|
|
|
165
|
-
/
|
|
194
|
+
/mindforge:session-report
|
|
166
195
|
→ Automated post-session stakeholder summary (v2)
|
|
167
196
|
|
|
168
|
-
/
|
|
197
|
+
/mindforge:add-backlog <desc>
|
|
169
198
|
→ Park ideas in 999.x "parking lot" (v2)
|
|
170
199
|
|
|
171
|
-
/
|
|
200
|
+
/mindforge:review-backlog
|
|
172
201
|
→ Review and promote backlog items (v2)
|
|
173
202
|
|
|
174
|
-
/
|
|
203
|
+
/mindforge:plant-seed <idea>
|
|
175
204
|
→ Capture speculative ideas with triggers (v2)
|
|
176
205
|
|
|
177
|
-
/
|
|
206
|
+
/mindforge:workstreams
|
|
178
207
|
→ Parallel feature tracks with isolated state (v2)
|
|
179
208
|
|
|
180
|
-
/
|
|
209
|
+
/mindforge:execute-phase 1
|
|
181
210
|
→ Wave-based parallel execution
|
|
182
211
|
→ One commit per task
|
|
183
212
|
→ Automated verification
|
|
184
213
|
|
|
185
|
-
/
|
|
214
|
+
/mindforge:verify-phase 1
|
|
186
215
|
→ Human acceptance testing
|
|
187
216
|
→ Debug agent on failures
|
|
188
217
|
→ UAT sign-off
|
|
189
218
|
|
|
190
|
-
/
|
|
219
|
+
/mindforge:ship 1
|
|
191
220
|
→ Changelog generation
|
|
192
221
|
→ Final quality gates
|
|
193
222
|
→ PR creation
|
|
194
223
|
|
|
195
|
-
/
|
|
224
|
+
/mindforge:auto --phase 1
|
|
196
225
|
→ Walk-away autonomous execution (v2)
|
|
197
226
|
→ Intelligent stuck detection and node repair
|
|
198
227
|
→ External steering via steering-queue
|
|
199
228
|
|
|
200
|
-
/
|
|
229
|
+
/mindforge:qa
|
|
201
230
|
→ Systematic visual verification of UI changes (v2)
|
|
202
231
|
→ Automated regression test generation
|
|
203
232
|
→ Persistent browser sessions and daemon
|
|
204
233
|
|
|
205
|
-
/
|
|
234
|
+
/mindforge:cross-review
|
|
206
235
|
→ Adversarial multi-model code review and synthesis (v2)
|
|
207
236
|
→ Consensus detection and severity normalization
|
|
208
237
|
|
|
209
|
-
/
|
|
238
|
+
/mindforge:research
|
|
210
239
|
→ Deep research using Gemini 1.5 Pro 1M context (v2)
|
|
211
240
|
→ Codebase-wide context packaging and SSRF protection
|
|
212
241
|
|
|
213
|
-
/
|
|
242
|
+
/mindforge:costs
|
|
214
243
|
→ Real-time token usage and cost profiling (v2)
|
|
215
244
|
→ Daily budget tracking across all providers
|
|
216
245
|
|
|
217
|
-
/
|
|
246
|
+
/mindforge:remember
|
|
218
247
|
→ Manual knowledge management and search (v2)
|
|
219
248
|
→ Persistent knowledge graph retrieval and promotion
|
|
220
249
|
|
|
221
|
-
/
|
|
250
|
+
/mindforge:dashboard
|
|
222
251
|
→ Real-time web observability and governance at localhost:7339 (v2)
|
|
223
252
|
→ Live audit logs, metrics, activity, and team feed
|
|
224
253
|
|
|
225
|
-
/
|
|
254
|
+
/mindforge:learn
|
|
226
255
|
→ Automatically capture skills from Docs, Sessions, or npm (v2)
|
|
227
256
|
→ 7-dimension quality scoring and injection protection
|
|
228
257
|
|
|
229
|
-
/
|
|
258
|
+
/mindforge:marketplace
|
|
230
259
|
→ Search, install, and publish community skills (v2)
|
|
231
260
|
→ Verified installation via npm-based registry
|
|
232
261
|
|
|
233
|
-
/
|
|
262
|
+
/mindforge:new-runtime
|
|
234
263
|
→ Scaffold custom runtime configurations for any AI agent (v2)
|
|
235
264
|
```
|
|
236
265
|
|
|
@@ -288,24 +317,20 @@ See `.mindforge/production/token-optimiser.md`.
|
|
|
288
317
|
|
|
289
318
|
---
|
|
290
319
|
|
|
291
|
-
## What
|
|
292
|
-
- **
|
|
293
|
-
- **
|
|
320
|
+
## What's new in v2.1.1
|
|
321
|
+
- **Unified 4-Pillar Workflow**: `plan`, `execute`, `verify`, `ship` now hardened with `.agent/` structural integrity.
|
|
322
|
+
- **Expanded Persona Ecosystem**: 32+ specialized engineering personas integrated from the GSD core.
|
|
323
|
+
- **Real-time Dashboard**: `/mindforge:dashboard` and high-performance web-based observability.
|
|
324
|
+
- **Persistent Knowledge Graph**: `/mindforge:remember` and long-term project memory.
|
|
294
325
|
- **Multi-Model Intelligence Layer**: `/mindforge:cross-review`, `/mindforge:research`, and `/mindforge:costs`.
|
|
295
|
-
- **Visual QA Engine**: `/mindforge:qa` and automated regression
|
|
296
|
-
- **Persistent Browser Runtime**: `/mindforge:browse` and Playwright
|
|
297
|
-
- **Autonomous Execution Engine**: `/mindforge:auto` and `/mindforge:steer`.
|
|
298
|
-
- **
|
|
299
|
-
-
|
|
300
|
-
-
|
|
301
|
-
-
|
|
302
|
-
-
|
|
303
|
-
- Enterprise integrations: Jira, Confluence, Slack, GitHub, GitLab.
|
|
304
|
-
- Three-tier governance with 6 non-bypassable compliance gates.
|
|
305
|
-
- Intelligence layer: health engine, difficulty scoring, anti-pattern detection.
|
|
306
|
-
- Public skills registry and plugin system.
|
|
307
|
-
- @mindforge/sdk with event stream and command builders.
|
|
308
|
-
- 20 test suites, production checklist, and 32 ADRs.
|
|
326
|
+
- **Visual QA Engine**: `/mindforge:qa` and automated regression test generation.
|
|
327
|
+
- **Persistent Browser Runtime**: `/mindforge:browse` and Playwright-powered Chromium daemon.
|
|
328
|
+
- **Autonomous Execution Engine**: `/mindforge:auto` and mid-execution `/mindforge:steer`.
|
|
329
|
+
- **Unified Skills Registry**: 3-tier registry (Core/Org/Project) with 12 core skill packs.
|
|
330
|
+
- **120+ Framework Assets**: Standardized directory structure for cross-IDE compatibility.
|
|
331
|
+
- **Enterprise Manifest**: `file-manifest.json` for multi-project codebase mapping.
|
|
332
|
+
- **Enterprise Integrations**: Jira, Confluence, Slack, GitHub, GitLab.
|
|
333
|
+
- **Governance Pillars**: 6 non-bypassable compliance gates and Tier 3 security scaffolding.
|
|
309
334
|
|
|
310
335
|
---
|
|
311
336
|
|
package/RELEASENOTES.md
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
# MindForge
|
|
1
|
+
# MindForge v2.1.1 — Core Migration & Persona Expansion
|
|
2
2
|
|
|
3
3
|
## Top Summary
|
|
4
|
-
|
|
5
|
-
This release
|
|
6
|
-
It adds a first-class plugin system, token optimization workflows, and a full public doc set.
|
|
7
|
-
Quality gates, security posture, and release readiness are documented for enterprise adoption.
|
|
4
|
+
|
|
5
|
+
MindForge v2.1.1 is a major structural update that finalizes the migration of the GSD framework into the MindForge ecosystem. This release establishes a unified `.agent/` asset structure, expands the persona count from 8 to 32+, and hardens the 4-pillar workflow (`plan`, `execute`, `verify`, `ship`) for enterprise-scale AI orchestration.
|
|
8
6
|
|
|
9
7
|
## Highlights
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
8
|
+
|
|
9
|
+
- **Unified .agent/ Structure**: 120+ framework assets consolidated for maximum compatibility across Claude Code, Antigravity, and Cursor.
|
|
10
|
+
- **32-Persona Expansion**: Integrated advanced personas including `advisor-researcher`, `nyquist-auditor`, and `ui-auditor`.
|
|
11
|
+
- **Zero-Watermark Integrity**: 100% removal of legacy rebranding fragments across the entire core and documentation.
|
|
12
|
+
- **Enterprise Manifest**: Single source of truth via `file-manifest.json` for multi-project codebase intelligence.
|
|
13
|
+
- **Hardened Governance**: Unified settings and non-bypassable quality gates across all runtimes.
|
|
16
14
|
|
|
17
15
|
## Developer Experience
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
16
|
+
|
|
17
|
+
- **Consolidated Documentation**: Modernized guides for Skills Authoring, Architecture, and Persona-based engineering.
|
|
18
|
+
- **Enhanced Hooks**: New lifecycle hooks for better context monitoring and real-time status reporting.
|
|
19
|
+
- **Command Parity**: Full support for `/mindforge:browse`, `/mindforge:remember`, and `/mindforge:costs`.
|
|
22
20
|
|
|
23
21
|
## Quality & Stability
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
22
|
+
|
|
23
|
+
- **Grep-Audit Verified**: Verified zero residual branding through recursive deep scanning.
|
|
24
|
+
- **Path-Aligned Workflows**: All 60+ workflows now strictly follow the v2.1.1 directory standards.
|
|
25
|
+
- **Cross-IDE Tested**: Core features validated across multiple AI-native IDE runtimes.
|
|
28
26
|
|
|
29
27
|
## Getting Started
|
|
28
|
+
|
|
30
29
|
- Install: `npx mindforge-cc@latest --claude --local`
|
|
31
|
-
-
|
|
32
|
-
- Docs
|
|
30
|
+
- Verify Health: `/mindforge:health`
|
|
31
|
+
- Docs Entry: `README.md`
|
|
33
32
|
|
|
34
33
|
## Upgrade Notes
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
34
|
+
|
|
35
|
+
- Projects on v1.0.0 or v2.0.0 should run `/mindforge:migrate` to align with the new path standards.
|
|
36
|
+
- Residual custom skills in legacy folders may need manual relocation to `.agent/skills/`.
|
|
38
37
|
|
|
39
38
|
## Breaking Changes
|
|
40
|
-
|
|
41
|
-
-
|
|
39
|
+
|
|
40
|
+
- Legacy `.agent/workflows` (without YAML frontmatter) is no longer automatically registered in Antigravity mode.
|
|
41
|
+
- See `docs/upgrade.md` for detailed migration paths.
|
package/bin/install.js
CHANGED
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
|
|
23
23
|
const VERSION = require('../package.json').version;
|
|
24
24
|
const ARGS = process.argv.slice(2);
|
|
25
|
+
const Theme = require('./wizard/theme');
|
|
26
|
+
const c = Theme.colors;
|
|
25
27
|
|
|
26
28
|
// Note: Structural integrity check requires the presence of 'verifyInstall'.
|
|
27
29
|
// The actual logic is now modularized in ./installer-core.js
|
|
@@ -30,9 +32,9 @@ const ARGS = process.argv.slice(2);
|
|
|
30
32
|
const NODE_MAJOR = parseInt(process.versions.node.split('.')[0], 10);
|
|
31
33
|
if (NODE_MAJOR < 18) {
|
|
32
34
|
process.stderr.write(
|
|
33
|
-
|
|
35
|
+
`\n${c.red(Theme.chars.cross)} ${c.bold('MindForge requires Node.js 18 or later.')}\n` +
|
|
34
36
|
` Current: v${process.versions.node}\n` +
|
|
35
|
-
|
|
37
|
+
` Install: ${c.cyan('https://nodejs.org/en/download/')}\n\n`
|
|
36
38
|
);
|
|
37
39
|
process.exit(1);
|
|
38
40
|
}
|
|
@@ -78,51 +80,49 @@ if (IS_NON_INTERACTIVE) {
|
|
|
78
80
|
}
|
|
79
81
|
|
|
80
82
|
function printHelp() {
|
|
81
|
-
|
|
82
|
-
⚡ MindForge v${VERSION} — Enterprise Agentic Framework
|
|
83
|
+
Theme.printHeader('MindForge', VERSION);
|
|
83
84
|
|
|
84
|
-
|
|
85
|
+
process.stdout.write(`
|
|
86
|
+
${c.bold('USAGE')}
|
|
85
87
|
npx mindforge-cc@latest [runtime] [scope] [action] [options]
|
|
86
88
|
|
|
87
|
-
RUNTIMES (pick one or use --all)
|
|
88
|
-
--claude Claude Code (~/.claude or .claude/)
|
|
89
|
-
--antigravity Antigravity (~/.gemini/antigravity or .agents/; .agent/ legacy)
|
|
90
|
-
--cursor Cursor (~/.cursor or .cursor/)
|
|
91
|
-
--opencode OpenCode (~/.opencode or .opencode/)
|
|
92
|
-
--gemini Gemini CLI (~/.gemini or .gemini/)
|
|
93
|
-
--copilot GitHub Copilot (~/.github/copilot or .github/)
|
|
94
|
-
--all All 6 runtimes
|
|
95
|
-
--runtime <name> Explicitly specify runtime by name
|
|
96
|
-
|
|
97
|
-
SCOPE
|
|
98
|
-
--global, -g Install to home directory (all projects)
|
|
99
|
-
--local, -l Install to current directory (this project only)
|
|
100
|
-
|
|
101
|
-
ACTIONS (default: install)
|
|
102
|
-
--install Install MindForge (default)
|
|
103
|
-
--update Update existing installation
|
|
104
|
-
--uninstall Remove MindForge
|
|
105
|
-
--check Check for updates without installing
|
|
106
|
-
|
|
107
|
-
OPTIONS
|
|
108
|
-
--dry-run Show what would happen without making changes
|
|
109
|
-
--force Override existing installation without backup
|
|
110
|
-
--skip-wizard Skip interactive wizard even in TTY
|
|
111
|
-
--with-utils Install local bin/ utilities (optional)
|
|
112
|
-
--minimal Install only essential project scaffolding
|
|
113
|
-
--verbose Detailed output
|
|
114
|
-
--version, -v Print version
|
|
115
|
-
--help, -h Print this help
|
|
116
|
-
|
|
117
|
-
EXAMPLES
|
|
89
|
+
${c.bold('RUNTIMES')} (pick one or use --all)
|
|
90
|
+
${c.cyan('--claude')} Claude Code (~/.claude or .claude/)
|
|
91
|
+
${c.cyan('--antigravity')} Antigravity (~/.gemini/antigravity or .agents/; .agent/ legacy)
|
|
92
|
+
${c.cyan('--cursor')} Cursor (~/.cursor or .cursor/)
|
|
93
|
+
${c.cyan('--opencode')} OpenCode (~/.opencode or .opencode/)
|
|
94
|
+
${c.cyan('--gemini')} Gemini CLI (~/.gemini or .gemini/)
|
|
95
|
+
${c.cyan('--copilot')} GitHub Copilot (~/.github/copilot or .github/)
|
|
96
|
+
${c.cyan('--all')} All 6 runtimes
|
|
97
|
+
${c.cyan('--runtime <name>')} Explicitly specify runtime by name
|
|
98
|
+
|
|
99
|
+
${c.bold('SCOPE')}
|
|
100
|
+
${c.cyan('--global, -g')} Install to home directory (all projects)
|
|
101
|
+
${c.cyan('--local, -l')} Install to current directory (this project only)
|
|
102
|
+
|
|
103
|
+
${c.bold('ACTIONS')} (default: install)
|
|
104
|
+
${c.cyan('--install')} Install MindForge (default)
|
|
105
|
+
${c.cyan('--update')} Update existing installation
|
|
106
|
+
${c.cyan('--uninstall')} Remove MindForge
|
|
107
|
+
${c.cyan('--check')} Check for updates without installing
|
|
108
|
+
|
|
109
|
+
${c.bold('OPTIONS')}
|
|
110
|
+
${c.cyan('--dry-run')} Show what would happen without making changes
|
|
111
|
+
${c.cyan('--force')} Override existing installation without backup
|
|
112
|
+
${c.cyan('--skip-wizard')} Skip interactive wizard even in TTY
|
|
113
|
+
${c.cyan('--with-utils')} Install local bin/ utilities (optional)
|
|
114
|
+
${c.cyan('--minimal')} Install only essential project scaffolding
|
|
115
|
+
${c.cyan('--verbose')} Detailed output
|
|
116
|
+
${c.cyan('--version, -v')} Print version
|
|
117
|
+
${c.cyan('--help, -h')} Print this help
|
|
118
|
+
|
|
119
|
+
${c.bold('EXAMPLES')}
|
|
118
120
|
npx mindforge-cc@latest Interactive setup
|
|
119
121
|
npx mindforge-cc@latest --claude --local Local Claude Code install
|
|
120
122
|
npx mindforge-cc@latest --all --global Global install for all runtimes
|
|
121
|
-
npx mindforge-cc@latest --update --global Update global install
|
|
122
|
-
npx mindforge-cc@latest --uninstall --local Remove local install
|
|
123
123
|
|
|
124
|
-
DOCUMENTATION
|
|
125
|
-
https://github.com/mindforge-dev/mindforge
|
|
126
|
-
docs/enterprise-setup.md (after install)
|
|
124
|
+
${c.bold('DOCUMENTATION')}
|
|
125
|
+
${c.dim('https://github.com/mindforge-dev/mindforge')}
|
|
126
|
+
${c.dim('docs/enterprise-setup.md (after install)')}
|
|
127
127
|
\n`);
|
|
128
128
|
}
|