@joshuaswarren/openclaw-engram 9.0.18 → 9.0.20

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 CHANGED
@@ -31,6 +31,7 @@ AI agents forget everything between conversations. Engram fixes that.
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
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
+ - **Objective-state foundation** — When `objectiveStateMemoryEnabled` and `objectiveStateSnapshotWritesEnabled` are enabled together, Engram records normalized file, process, and tool outcomes from `agent_end` tool activity into a dedicated objective-state store.
34
35
  - **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
36
 
36
37
  ## Quick Start
@@ -153,6 +154,7 @@ openclaw engram benchmark-status # Benchmark/eval harness packs, run
153
154
  openclaw engram benchmark-validate <path> # Validate a benchmark manifest or pack directory
154
155
  openclaw engram benchmark-import <path> # Import a validated benchmark pack into the eval store
155
156
  openclaw engram benchmark-ci-gate # Compare base vs candidate eval stores and fail on regressions
157
+ openclaw engram objective-state-status # Objective-state snapshot counts and latest stored snapshot
156
158
  openclaw engram conversation-index-health # Conversation index status
157
159
  openclaw engram graph-health # Entity graph status
158
160
  openclaw engram tier-status # Hot/cold tier metrics
@@ -175,6 +177,9 @@ Key settings:
175
177
  | `evalHarnessEnabled` | `false` | Enable the evaluation harness for benchmark packs, run summaries, and shadow recall bookkeeping |
176
178
  | `evalShadowModeEnabled` | `false` | Record live recall decisions to the eval store without changing injected output |
177
179
  | `evalStoreDir` | `{memoryDir}/state/evals` | Root directory for benchmark packs, run summaries, and shadow recall records |
180
+ | `objectiveStateMemoryEnabled` | `false` | Enable the objective-state memory foundation for normalized world/tool state snapshots |
181
+ | `objectiveStateSnapshotWritesEnabled` | `false` | Permit objective-state snapshot writers to persist typed state records |
182
+ | `objectiveStateStoreDir` | `{memoryDir}/state/objective-state` | Root directory for objective-state snapshots |
178
183
 
179
184
  Full reference: [Config Reference](docs/config-reference.md)
180
185