mindforge-cc 1.0.4 → 2.0.0-alpha.4
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/CLAUDE.md +53 -0
- package/.agent/mindforge/auto.md +22 -0
- package/.agent/mindforge/browse.md +26 -0
- package/.agent/mindforge/costs.md +11 -0
- package/.agent/mindforge/cross-review.md +17 -0
- package/.agent/mindforge/execute-phase.md +5 -3
- package/.agent/mindforge/qa.md +16 -0
- package/.agent/mindforge/remember.md +14 -0
- package/.agent/mindforge/research.md +11 -0
- package/.agent/mindforge/steer.md +13 -0
- package/.agent/workflows/publish-release.md +36 -0
- package/.claude/CLAUDE.md +53 -0
- package/.claude/commands/mindforge/auto.md +22 -0
- package/.claude/commands/mindforge/browse.md +26 -0
- package/.claude/commands/mindforge/costs.md +11 -0
- package/.claude/commands/mindforge/cross-review.md +17 -0
- package/.claude/commands/mindforge/execute-phase.md +5 -3
- package/.claude/commands/mindforge/qa.md +16 -0
- package/.claude/commands/mindforge/remember.md +14 -0
- package/.claude/commands/mindforge/research.md +11 -0
- package/.claude/commands/mindforge/steer.md +13 -0
- package/.mindforge/MINDFORGE-V2-SCHEMA.json +47 -0
- package/.mindforge/browser/daemon-protocol.md +24 -0
- package/.mindforge/browser/qa-engine.md +16 -0
- package/.mindforge/browser/session-manager.md +18 -0
- package/.mindforge/browser/visual-verify-spec.md +31 -0
- package/.mindforge/engine/autonomous/auto-executor.md +266 -0
- package/.mindforge/engine/autonomous/headless-adapter.md +66 -0
- package/.mindforge/engine/autonomous/node-repair.md +190 -0
- package/.mindforge/engine/autonomous/progress-reporter.md +58 -0
- package/.mindforge/engine/autonomous/steering-manager.md +64 -0
- package/.mindforge/engine/autonomous/stuck-detector.md +89 -0
- package/.mindforge/memory/MEMORY-SCHEMA.md +155 -0
- package/.mindforge/memory/decision-library.jsonl +0 -0
- package/.mindforge/memory/engine/capture-protocol.md +36 -0
- package/.mindforge/memory/engine/global-sync-spec.md +42 -0
- package/.mindforge/memory/engine/retrieval-spec.md +44 -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/models/model-registry.md +48 -0
- package/.mindforge/models/model-router.md +30 -0
- package/.mindforge/personas/research-agent.md +24 -0
- package/.planning/browser-daemon.log +32 -0
- package/.planning/decisions/ADR-021-autonomy-boundary.md +17 -0
- package/.planning/decisions/ADR-022-node-repair-hierarchy.md +19 -0
- package/.planning/decisions/ADR-023-gate-3-timing.md +15 -0
- package/CHANGELOG.md +73 -0
- package/MINDFORGE.md +26 -3
- package/README.md +59 -18
- package/bin/autonomous/auto-runner.js +95 -0
- package/bin/autonomous/headless.js +36 -0
- package/bin/autonomous/progress-stream.js +49 -0
- package/bin/autonomous/repair-operator.js +213 -0
- package/bin/autonomous/steer.js +71 -0
- package/bin/autonomous/stuck-monitor.js +77 -0
- package/bin/browser/browser-daemon.js +139 -0
- package/bin/browser/daemon-manager.js +91 -0
- package/bin/browser/qa-engine.js +47 -0
- package/bin/browser/qa-report-writer.js +32 -0
- package/bin/browser/regression-writer.js +27 -0
- package/bin/browser/screenshot-store.js +49 -0
- package/bin/browser/session-manager.js +93 -0
- package/bin/browser/visual-verify-executor.js +89 -0
- package/bin/install.js +7 -6
- package/bin/installer-core.js +64 -26
- package/bin/memory/cli.js +99 -0
- package/bin/memory/global-sync.js +107 -0
- package/bin/memory/knowledge-capture.js +278 -0
- package/bin/memory/knowledge-indexer.js +172 -0
- package/bin/memory/knowledge-store.js +319 -0
- package/bin/memory/session-memory-loader.js +137 -0
- package/bin/migrations/0.1.0-to-0.5.0.js +2 -3
- package/bin/migrations/0.5.0-to-0.6.0.js +1 -1
- package/bin/migrations/0.6.0-to-1.0.0.js +3 -3
- package/bin/migrations/migrate.js +15 -11
- package/bin/models/anthropic-provider.js +77 -0
- package/bin/models/cost-tracker.js +118 -0
- package/bin/models/gemini-provider.js +79 -0
- package/bin/models/model-client.js +98 -0
- package/bin/models/model-router.js +111 -0
- package/bin/models/openai-provider.js +78 -0
- package/bin/research/research-engine.js +115 -0
- package/bin/review/cross-review-engine.js +81 -0
- package/bin/review/finding-synthesizer.js +116 -0
- package/bin/review/review-report-writer.js +49 -0
- package/bin/updater/self-update.js +13 -13
- package/bin/wizard/setup-wizard.js +2 -1
- package/docs/adr/ADR-024-browser-localhost-only.md +17 -0
- package/docs/adr/ADR-025-visual-verify-failure-treatment.md +19 -0
- package/docs/adr/ADR-026-session-persistence-security.md +20 -0
- package/docs/architecture/README.md +4 -2
- package/docs/publishing-guide.md +78 -0
- package/docs/reference/commands.md +17 -2
- package/docs/reference/sdk-api.md +6 -1
- package/docs/user-guide.md +98 -9
- package/docs/usp-features.md +56 -8
- package/package.json +3 -2
package/docs/usp-features.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# MindForge
|
|
1
|
+
# MindForge v2.0.0 — Unique Selling Points, Features, and Best Practices (v2.0.0-alpha.4)
|
|
2
2
|
|
|
3
|
-
This document summarizes what makes MindForge
|
|
4
|
-
are included in the
|
|
3
|
+
This document summarizes what makes MindForge v2.0.0 distinct, what features
|
|
4
|
+
are included in the latest alpha release, and how to use them effectively.
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -31,6 +31,18 @@ are included in the first stable release, and how to use them effectively.
|
|
|
31
31
|
7. **Extensible with plugins and skills**
|
|
32
32
|
- Plugins add commands and skills without changing core files, keeping upgrades safe.
|
|
33
33
|
|
|
34
|
+
8. **Autonomous “Walk-Away” Execution (v2)**
|
|
35
|
+
- `/mindforge:auto` allows for full phase/milestone completion with intelligent stuck detection and node repair (RETRY → DECOMPOSE → ESCALATE).
|
|
36
|
+
|
|
37
|
+
9. **Persistent Visual QA (v2)**
|
|
38
|
+
- Headful/headless browser runtime with named session persistence and systematic visual diff verification.
|
|
39
|
+
|
|
40
|
+
10. **Multi-Model Intelligence Layer (v2)**
|
|
41
|
+
- Dynamic routing between Anthropic, OpenAI, and Gemini based on task persona and security tier. Adversarial code reviews ensure maximum coverage.
|
|
42
|
+
|
|
43
|
+
11. **Persistent Knowledge Graph (v2)**
|
|
44
|
+
- Captures and ranks engineering context (decisions, bug patterns, preferences) across project sessions using TF-IDF and confidence reinforcement.
|
|
45
|
+
|
|
34
46
|
---
|
|
35
47
|
|
|
36
48
|
## Feature Set (v1.0.0)
|
|
@@ -141,18 +153,54 @@ preserving scope (local vs global).
|
|
|
141
153
|
|
|
142
154
|
---
|
|
143
155
|
|
|
144
|
-
###
|
|
145
|
-
**What it does:**
|
|
156
|
+
### 11. Autonomous Execution (v2)
|
|
157
|
+
**What it does:** Enables handoff-free execution of complex phases and milestones.
|
|
146
158
|
|
|
147
159
|
**How to use:**
|
|
160
|
+
```bash
|
|
161
|
+
/mindforge:auto --phase 1
|
|
162
|
+
/mindforge:steer "Focus on security hardening next"
|
|
148
163
|
```
|
|
149
|
-
|
|
150
|
-
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
### 12. Browser Runtime & Visual QA (v2)
|
|
168
|
+
**What it does:** Playwright-powered browser control with session persistence and automated UI bug detection.
|
|
169
|
+
|
|
170
|
+
**How to use:**
|
|
171
|
+
```bash
|
|
172
|
+
/mindforge:browse --navigate https://example.com
|
|
173
|
+
/mindforge:qa --diff
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
### 13. Multi-Model Intelligence (v2)
|
|
179
|
+
**What it does:** Unified API client for Anthropic, OpenAI, and Gemini with persona-based routing and automated cost tracking.
|
|
180
|
+
|
|
181
|
+
**How to use:**
|
|
182
|
+
```bash
|
|
183
|
+
/mindforge:cross-review # Adversarial multi-model review
|
|
184
|
+
/mindforge:research "Deep search query" # 1M context research
|
|
185
|
+
/mindforge:costs # Usage and budget summary
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
### 14. Persistent Knowledge Graph (v2)
|
|
191
|
+
**What it does:** Long-term memory system that ensures architectural decisions and bug patterns are never forgotten. Supports TF-IDF search, confidence scoring, and global promotion.
|
|
192
|
+
|
|
193
|
+
**How to use:**
|
|
194
|
+
```bash
|
|
195
|
+
/mindforge:remember --add "insight" # Manual capture
|
|
196
|
+
/mindforge:remember --search "query" # Manual retrieval
|
|
197
|
+
/mindforge:remember --promote [ID] # Promote to machine-wide global store
|
|
198
|
+
/mindforge:remember --stats # View memory health
|
|
151
199
|
```
|
|
152
200
|
|
|
153
201
|
---
|
|
154
202
|
|
|
155
|
-
###
|
|
203
|
+
### 15. SDK (TypeScript)
|
|
156
204
|
**What it does:** Programmatic access to health, audit log, event stream, and commands.
|
|
157
205
|
|
|
158
206
|
**How to use:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mindforge-cc",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.4",
|
|
4
4
|
"description": "MindForge - Enterprise Agentic Framework for Claude Code and Antigravity",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mindforge-cc": "bin/install.js"
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"@eslint/js": "^9.0.0",
|
|
40
40
|
"@types/node": "^20.0.0",
|
|
41
41
|
"eslint": "^9.0.0",
|
|
42
|
-
"globals": "^15.0.0"
|
|
42
|
+
"globals": "^15.0.0",
|
|
43
|
+
"playwright": "^1.40.0"
|
|
43
44
|
},
|
|
44
45
|
"engines": {
|
|
45
46
|
"node": ">=18.0.0"
|