@joshuaswarren/openclaw-engram 7.2.4 → 8.0.0
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 +16 -0
- package/dist/index.js +665 -21
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +44 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -430,6 +430,7 @@ tail -f ~/.openclaw/logs/gateway.log
|
|
|
430
430
|
All settings are defined in `openclaw.json` under `plugins.entries.openclaw-engram.config`:
|
|
431
431
|
|
|
432
432
|
For a full v2.3-v5 setup (including cron and QMD conversation-index collections) and tuning guidance, see:
|
|
433
|
+
- `docs/README.md` (docs map, v8 reorg entrypoint)
|
|
433
434
|
- `docs/setup-config-tuning.md`
|
|
434
435
|
- `docs/import-export.md`
|
|
435
436
|
- `docs/context-retention.md`
|
|
@@ -504,6 +505,21 @@ Example config:
|
|
|
504
505
|
| `qmdMaxResults` | `8` | Max QMD results per search |
|
|
505
506
|
| `qmdPath` | `(auto)` | Optional absolute path to `qmd` binary (bypasses PATH discovery) |
|
|
506
507
|
|
|
508
|
+
### v8.0 Phase 1 (Experimental, Token-Budget Focused)
|
|
509
|
+
|
|
510
|
+
All options below are safe to leave disabled initially; enable incrementally.
|
|
511
|
+
|
|
512
|
+
| Setting | Default | Description |
|
|
513
|
+
|---------|---------|-------------|
|
|
514
|
+
| `recallPlannerEnabled` | `true` | Lightweight retrieve-vs-think gating (`no_recall`/`minimal`/`full`/`graph_mode`) |
|
|
515
|
+
| `recallPlannerMaxQmdResultsMinimal` | `4` | QMD cap when planner selects `minimal` |
|
|
516
|
+
| `intentRoutingEnabled` | `false` | Write intent metadata (goal/action/entityTypes) and boost compatible recalls |
|
|
517
|
+
| `intentRoutingBoost` | `0.12` | Maximum additive score boost from intent compatibility |
|
|
518
|
+
| `verbatimArtifactsEnabled` | `false` | Persist quote-first artifact anchors for high-confidence extracted memories |
|
|
519
|
+
| `verbatimArtifactsMinConfidence` | `0.8` | Minimum extraction confidence for artifact writes |
|
|
520
|
+
| `verbatimArtifactsMaxRecall` | `5` | Maximum artifact anchors injected per recall |
|
|
521
|
+
| `verbatimArtifactCategories` | `["decision","correction","principle","commitment"]` | Categories eligible for artifact extraction |
|
|
522
|
+
|
|
507
523
|
### Local / OpenAI-Compatible Endpoint Settings
|
|
508
524
|
|
|
509
525
|
| Setting | Default | Description |
|