@joshuaswarren/openclaw-engram 9.0.17 → 9.0.19
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 +8 -3
- package/dist/index.js +871 -514
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +29 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ AI agents forget everything between conversations. Engram fixes that.
|
|
|
30
30
|
- **Local-first** — All memory data stays on your filesystem as plain markdown files. No cloud dependency, no vendor lock-in, fully portable.
|
|
31
31
|
- **Pluggable search** — Choose from six search backends: QMD (hybrid BM25+vector+reranking), LanceDB, Meilisearch, Orama, remote HTTP, or bring your own.
|
|
32
32
|
- **Memory OS features** — Graph recall, temporal memory tree, lifecycle policy, compounding, shared context, memory boxes, and identity continuity can be enabled progressively as your install grows.
|
|
33
|
-
- **Benchmark-first roadmap** — Engram now has an evaluation harness with live shadow recall recording, so memory improvements can be measured
|
|
33
|
+
- **Benchmark-first roadmap** — Engram now has an evaluation harness with live shadow recall recording and a CI benchmark delta gate, so memory improvements can be measured and regression-checked instead of argued from anecdotes.
|
|
34
34
|
- **Zero-config start** — Install, add an API key, restart. Engram works out of the box with sensible defaults and progressively unlocks advanced features as you enable them.
|
|
35
35
|
|
|
36
36
|
## Quick Start
|
|
@@ -139,7 +139,7 @@ Engram's capabilities are organized into feature families that you can enable pr
|
|
|
139
139
|
| **Compounding** | Weekly synthesis that surfaces patterns and recurring mistakes |
|
|
140
140
|
| **Hot/Cold Tiering** | Automatic migration of aging memories to cold storage |
|
|
141
141
|
| **Behavior Loop Tuning** | Runtime self-tuning of extraction and recall parameters |
|
|
142
|
-
| **Evaluation Harness** | Tracks benchmark packs, run summaries,
|
|
142
|
+
| **Evaluation Harness** | Tracks benchmark packs, run summaries, live shadow recall records, and CI delta comparisons so future PRs can be gated on memory quality instead of anecdotes |
|
|
143
143
|
|
|
144
144
|
Start with defaults, then enable features as needed. See [Enable All Features](docs/enable-all-v8.md) for a full-feature config profile.
|
|
145
145
|
|
|
@@ -152,6 +152,8 @@ openclaw engram compat --strict # Compatibility check
|
|
|
152
152
|
openclaw engram benchmark-status # Benchmark/eval harness packs, runs, shadow recalls, latest summaries
|
|
153
153
|
openclaw engram benchmark-validate <path> # Validate a benchmark manifest or pack directory
|
|
154
154
|
openclaw engram benchmark-import <path> # Import a validated benchmark pack into the eval store
|
|
155
|
+
openclaw engram benchmark-ci-gate # Compare base vs candidate eval stores and fail on regressions
|
|
156
|
+
openclaw engram objective-state-status # Objective-state snapshot counts and latest stored snapshot
|
|
155
157
|
openclaw engram conversation-index-health # Conversation index status
|
|
156
158
|
openclaw engram graph-health # Entity graph status
|
|
157
159
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -174,6 +176,9 @@ Key settings:
|
|
|
174
176
|
| `evalHarnessEnabled` | `false` | Enable the evaluation harness for benchmark packs, run summaries, and shadow recall bookkeeping |
|
|
175
177
|
| `evalShadowModeEnabled` | `false` | Record live recall decisions to the eval store without changing injected output |
|
|
176
178
|
| `evalStoreDir` | `{memoryDir}/state/evals` | Root directory for benchmark packs, run summaries, and shadow recall records |
|
|
179
|
+
| `objectiveStateMemoryEnabled` | `false` | Enable the objective-state memory foundation for normalized world/tool state snapshots |
|
|
180
|
+
| `objectiveStateSnapshotWritesEnabled` | `false` | Permit objective-state snapshot writers to persist typed state records |
|
|
181
|
+
| `objectiveStateStoreDir` | `{memoryDir}/state/objective-state` | Root directory for objective-state snapshots |
|
|
177
182
|
|
|
178
183
|
Full reference: [Config Reference](docs/config-reference.md)
|
|
179
184
|
|
|
@@ -183,7 +188,7 @@ Full reference: [Config Reference](docs/config-reference.md)
|
|
|
183
188
|
- [Search Backends](docs/search-backends.md) — Choosing and configuring search engines
|
|
184
189
|
- [Writing a Search Backend](docs/writing-a-search-backend.md) — Build your own adapter
|
|
185
190
|
- [Config Reference](docs/config-reference.md) — Every setting with defaults
|
|
186
|
-
- [Evaluation Harness](docs/evaluation-harness.md) — Benchmark pack and
|
|
191
|
+
- [Evaluation Harness](docs/evaluation-harness.md) — Benchmark pack, shadow recall, and CI delta gate format
|
|
187
192
|
- [Architecture Overview](docs/architecture/overview.md) — System design and storage layout
|
|
188
193
|
- [Retrieval Pipeline](docs/architecture/retrieval-pipeline.md) — How recall works
|
|
189
194
|
- [Memory Lifecycle](docs/architecture/memory-lifecycle.md) — Write, consolidation, expiry
|