n2-soul 7.0.4 → 7.0.5
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/README.md +14 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -468,23 +468,21 @@ All runtime data is stored in `data/` (gitignored, auto-created):
|
|
|
468
468
|
|
|
469
469
|
```
|
|
470
470
|
soul/
|
|
471
|
-
├── rules/ # Ark safety rules (active) ← v6.0
|
|
472
|
-
│ └── default.n2 # Default ruleset (125 patterns)
|
|
473
471
|
├── lib/
|
|
474
|
-
│ ├──
|
|
475
|
-
│
|
|
476
|
-
│
|
|
477
|
-
│
|
|
478
|
-
│
|
|
479
|
-
│
|
|
480
|
-
│ └──
|
|
481
|
-
|
|
482
|
-
│
|
|
483
|
-
│
|
|
484
|
-
|
|
485
|
-
│
|
|
486
|
-
│
|
|
487
|
-
│
|
|
472
|
+
│ ├── config.default.js # Default configuration
|
|
473
|
+
│ ├── soul-engine.js # Core Soul engine
|
|
474
|
+
│ ├── core-memory.js # Core Memory (per-agent facts)
|
|
475
|
+
│ ├── entity-memory.js # Entity Memory (auto-tracked)
|
|
476
|
+
│ ├── intercom-log.js # Inter-agent communication logs
|
|
477
|
+
│ ├── kv-cache/ # KV-Cache backend
|
|
478
|
+
│ └── utils.js # Shared utilities
|
|
479
|
+
├── tools/
|
|
480
|
+
│ ├── brain.js # Brain read/write tools
|
|
481
|
+
│ └── kv-cache.js # KV-Cache tools
|
|
482
|
+
├── sequences/
|
|
483
|
+
│ ├── boot.js # Boot sequence
|
|
484
|
+
│ ├── work.js # Work sequence
|
|
485
|
+
│ └── end.js # End sequence
|
|
488
486
|
├── data/
|
|
489
487
|
│ ├── memory/ # Shared brain (n2_brain_read/write)
|
|
490
488
|
│ │ ├── entities.json # Entity Memory (auto-tracked)
|