@joshuaswarren/openclaw-engram 9.0.18 → 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 +4 -0
- package/dist/index.js +605 -434
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -153,6 +153,7 @@ openclaw engram benchmark-status # Benchmark/eval harness packs, run
|
|
|
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
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
|
|
156
157
|
openclaw engram conversation-index-health # Conversation index status
|
|
157
158
|
openclaw engram graph-health # Entity graph status
|
|
158
159
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -175,6 +176,9 @@ Key settings:
|
|
|
175
176
|
| `evalHarnessEnabled` | `false` | Enable the evaluation harness for benchmark packs, run summaries, and shadow recall bookkeeping |
|
|
176
177
|
| `evalShadowModeEnabled` | `false` | Record live recall decisions to the eval store without changing injected output |
|
|
177
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 |
|
|
178
182
|
|
|
179
183
|
Full reference: [Config Reference](docs/config-reference.md)
|
|
180
184
|
|