mindforge-cc 8.1.0 → 8.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/.claude/CLAUDE.md +4 -3
- package/.mindforge/engine/integrity.json +1 -1
- package/.mindforge/governance/policies/sovereign-default.json +1 -1
- package/MINDFORGE.md +1 -1
- package/README.md +11 -3
- package/bin/engine/learning-manager.js +1 -1
- package/bin/installer-core.js +2 -2
- package/bin/wizard/theme.js +1 -1
- package/docs/commands-skills/DISCOVERED_SKILLS.md +1 -1
- package/package.json +10 -2
package/.claude/CLAUDE.md
CHANGED
|
@@ -96,6 +96,7 @@ Adopt the Principal AI persona. Be instruction-dense, unambiguous, and architect
|
|
|
96
96
|
|
|
97
97
|
**Source of Truth Hierarchy**:
|
|
98
98
|
|
|
99
|
-
1.
|
|
100
|
-
2. .
|
|
101
|
-
3.
|
|
99
|
+
1. SOUL.md (Sovereign Identity — Behavioral OS)
|
|
100
|
+
2. MINDFORGE.md (Parameter Registry)
|
|
101
|
+
3. .agent/CLAUDE.md (Protocols)
|
|
102
|
+
4. `.mindforge/` (Framework Binary Logic)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "SOV-001",
|
|
3
3
|
"name": "Sovereign Default Policy",
|
|
4
|
-
"description": "Enables Sovereign Intelligence
|
|
4
|
+
"description": "Enables Sovereign Intelligence v8.1.1 features by default.",
|
|
5
5
|
"effect": "PERMIT",
|
|
6
6
|
"max_impact": 100,
|
|
7
7
|
"conditions": {
|
package/MINDFORGE.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# MindForge v8.
|
|
1
|
+
# MindForge v8.1.1 — Sovereign Identity (Pillar XIX Enabled)
|
|
2
2
|
|
|
3
|
-
MindForge v8.
|
|
3
|
+
MindForge v8.1.1 achieved the **Sovereign Identity** synthesis stage, enabling autonomous `SOUL.md` generation derived from reasoning traces and interaction sentiment (Pillar XIX).
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
## Installation & Setup
|
|
@@ -10,7 +10,11 @@ MindForge v8.0.0 achieved the **Celestial Orchestration** final stage, transitio
|
|
|
10
10
|
Run MindForge immediately for a specific runtime without a permanent installation:
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
+
# For Claude Code
|
|
13
14
|
npx mindforge-cc@latest --claude --global
|
|
15
|
+
|
|
16
|
+
# For Antigravity
|
|
17
|
+
npx mindforge-cc@latest --antigravity --global
|
|
14
18
|
```
|
|
15
19
|
|
|
16
20
|
### 🌍 Global Installation
|
|
@@ -26,12 +30,16 @@ npm install -g mindforge-cc@latest
|
|
|
26
30
|
Initialize MindForge in an existing repository with specialized agent identities:
|
|
27
31
|
|
|
28
32
|
```bash
|
|
33
|
+
# For Claude Code
|
|
29
34
|
npx mindforge-cc@latest --claude --local
|
|
35
|
+
|
|
36
|
+
# For Antigravity
|
|
37
|
+
npx mindforge-cc@latest --antigravity --local
|
|
30
38
|
```
|
|
31
39
|
|
|
32
40
|
---
|
|
33
41
|
|
|
34
|
-
- **Sovereign Identity Synthesis (v8.1)** — Autonomous `SOUL.md` generation derived from reasoning traces and interaction sentiment (Pillar XIX).
|
|
42
|
+
- **Sovereign Identity Synthesis (v8.1.1)** — Autonomous `SOUL.md` generation derived from reasoning traces and interaction sentiment (Pillar XIX).
|
|
35
43
|
- **Unified Persistence Layer (v8.0)** — Centralized SQLite/FTS5 engine for sub-millisecond reasoning audits and semantic reasoning (Pillar XV).
|
|
36
44
|
- **Federated Mesh Synthesis (v8.0)** — Signed knowledge handoffs via MindForge Bundles (`.mfb`) and federated intelligence synchronization (Pillar XVI).
|
|
37
45
|
- **Autonomous Skill Evolution (v8.0)** — Self-generating persistent skills from reasoning traces with logic-drift mining (Pillar XVII).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* MindForge Learning Manager — v1.0.0
|
|
3
|
-
* Part of the Sovereign Intelligence Engine (
|
|
3
|
+
* Part of the Sovereign Intelligence Engine (v8.1.1)
|
|
4
4
|
* Manages the lifecycle of AGENTS_LEARNING.md and its integration with the distributed mesh.
|
|
5
5
|
*/
|
|
6
6
|
'use strict';
|
package/bin/installer-core.js
CHANGED
|
@@ -620,7 +620,7 @@ async function install(runtime, scope, options = {}) {
|
|
|
620
620
|
Theme.printResolved(`${c.bold('AGENTS_LEARNING.md')} (agentic memory)`);
|
|
621
621
|
}
|
|
622
622
|
|
|
623
|
-
// Sovereign Intelligence
|
|
623
|
+
// Sovereign Intelligence v8.1.1: Copy core engines by default
|
|
624
624
|
const sovereignEngines = [
|
|
625
625
|
'governance', 'autonomous', 'memory', 'models', 'research',
|
|
626
626
|
'wizard', 'updater', 'dashboard', 'browser', 'skills-builder', 'engine'
|
|
@@ -635,7 +635,7 @@ async function install(runtime, scope, options = {}) {
|
|
|
635
635
|
});
|
|
636
636
|
|
|
637
637
|
// ✨ SOVEREIGN INITIALIZATION: Mark project as PQAS & Proactive enabled
|
|
638
|
-
Theme.printStatus(c.magenta('Sovereign Intelligence
|
|
638
|
+
Theme.printStatus(c.magenta('Sovereign Intelligence v8.1.1 activated'), 'done');
|
|
639
639
|
Theme.printStatus(c.dim(' - Post-Quantum Agentic Security (PQAS) enabled'), 'info');
|
|
640
640
|
Theme.printStatus(c.dim(' - Proactive Semantic Intent Harvesting active'), 'info');
|
|
641
641
|
|
package/bin/wizard/theme.js
CHANGED
|
@@ -61,7 +61,7 @@ const Theme = {
|
|
|
61
61
|
*/
|
|
62
62
|
printBrandManifest() {
|
|
63
63
|
console.log(` ${this.colors.dim('│')}`);
|
|
64
|
-
console.log(` ${this.colors.dim('│')} ${this.colors.magenta('🛡️ SOVEREIGN INTELLIGENCE
|
|
64
|
+
console.log(` ${this.colors.dim('│')} ${this.colors.magenta('🛡️ SOVEREIGN INTELLIGENCE v8.1.1')} — PQAS & Proactive Homing Enabled`);
|
|
65
65
|
console.log(` ${this.colors.dim('│')}`);
|
|
66
66
|
console.log(` ${this.colors.dim('│')} ${this.colors.bold('THE PLATFORM VISION:')}`);
|
|
67
67
|
console.log(` ${this.colors.dim('│')} - Unified Enterprise Agentic Ecosystem`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mindforge-cc",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"description": "MindForge — Sovereign Agentic Intelligence Framework. (Pillar XIX Sovereign Identity Enabled)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mindforge-cc": "bin/install.js"
|
|
@@ -35,8 +35,16 @@
|
|
|
35
35
|
"enterprise",
|
|
36
36
|
"mindforge"
|
|
37
37
|
],
|
|
38
|
-
"author": "
|
|
38
|
+
"author": "sairamugge",
|
|
39
39
|
"license": "MIT",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/sairam0424/MindForge.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/sairam0424/MindForge/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/sairam0424/MindForge#readme",
|
|
40
48
|
"devDependencies": {
|
|
41
49
|
"@eslint/js": "^9.0.0",
|
|
42
50
|
"@types/node": "^20.0.0",
|