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.
Files changed (2) hide show
  1. package/README.md +14 -16
  2. 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
- │ ├── ark/ # Ark core engine ← v6.0
475
- ├── index.js # createArk() factory
476
- ├── gate.js # SafetyGate engine
477
- ├── parser.js # .n2 rule parser
478
- ├── audit.js # Audit logger
479
- │ └── examples/ # Industry rule templates
480
- │ └── arachne/ # Arachne code context engine ← NEW v7.0
481
- ├── index.js # createArachne() factory
482
- ├── indexer.js # File scanner + incremental indexing
483
- ├── chunker.js # Language-aware code chunking
484
- ├── search.js # BM25 search engine
485
- ├── assembler.js # Context assembly with token budget
486
- ├── store.js # SQLite storage (sql.js)
487
- └── ignore.js # .gitignore + .contextignore support
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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n2-soul",
3
- "version": "7.0.4",
3
+ "version": "7.0.5",
4
4
  "description": "Multi-agent session orchestrator with KV-Cache, Ark safety, and Arachne code context for MCP",
5
5
  "main": "index.js",
6
6
  "scripts": {