@joshuaswarren/openclaw-engram 9.0.48 → 9.0.50
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 +5 -3
- package/dist/index.js +766 -379
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ AI agents forget everything between conversations. Engram fixes that.
|
|
|
47
47
|
- **Artifact recovery recall** — Engram can now, when both `creationMemoryEnabled` and `workProductRecallEnabled` are enabled, surface prompt-relevant work-product ledger entries back into recall as a dedicated `Work Products` section and inspect reuse candidates with `openclaw engram work-product-recall-search`.
|
|
48
48
|
- **Commitment lifecycle foundation** — Engram can now, when `creationMemoryEnabled`, `commitmentLedgerEnabled`, and `commitmentLifecycleEnabled` are enabled, transition existing commitments to `fulfilled` / `cancelled` / `expired`, inspect overdue and stale obligations in `openclaw engram commitment-status`, and run deterministic lifecycle cleanup with `openclaw engram commitment-lifecycle-run`.
|
|
49
49
|
- **Resume-bundle builder** — Engram can now, when `creationMemoryEnabled` and `resumeBundlesEnabled` are enabled, persist typed crash-recovery resume bundles, inspect them with `openclaw engram resume-bundle-status`, write explicit handoff shells through `openclaw engram resume-bundle-record`, and build bounded resume bundles from transcript recovery, recent objective-state snapshots, work products, and open commitments through `openclaw engram resume-bundle-build`.
|
|
50
|
-
- **Utility-learning
|
|
50
|
+
- **Utility-learning runtime weighting** — Engram can now persist typed downstream utility events, learn bounded offline promotion/ranking weights, inspect the learner snapshot, and, when both `memoryUtilityLearningEnabled` and `promotionByOutcomeEnabled` are enabled, apply those learned weights back to ranking heuristics and tier-migration thresholds in a bounded fail-open way.
|
|
51
51
|
- **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.
|
|
52
52
|
|
|
53
53
|
## Quick Start
|
|
@@ -186,6 +186,8 @@ openclaw engram work-product-record # Record a typed work-product ledger
|
|
|
186
186
|
openclaw engram work-product-recall-search <query> # Preview reusable work products from the creation-memory ledger
|
|
187
187
|
openclaw engram utility-status # Utility-learning telemetry counts and latest observed outcome event
|
|
188
188
|
openclaw engram utility-record # Record a typed utility-learning telemetry event
|
|
189
|
+
openclaw engram utility-learning-status # Latest offline utility-learning snapshot and learned weight counts
|
|
190
|
+
openclaw engram utility-learn # Learn bounded offline promotion/ranking weights from recorded utility events
|
|
189
191
|
openclaw engram conversation-index-health # Conversation index status
|
|
190
192
|
openclaw engram graph-health # Entity graph status
|
|
191
193
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -228,8 +230,8 @@ Key settings:
|
|
|
228
230
|
| `semanticRulePromotionEnabled` | `false` | Enable deterministic promotion of explicit `IF ... THEN ...` rules from verified episodic memories via `openclaw engram semantic-rule-promote` |
|
|
229
231
|
| `semanticRuleVerificationEnabled` | `false` | Verify promoted semantic rules against their cited source episodes at recall time and inject a dedicated `Verified Rules` section via `openclaw engram semantic-rule-verify` |
|
|
230
232
|
| `creationMemoryEnabled` | `false` | Enable the creation-memory foundation, including the work-product ledger and operator-facing write/status commands |
|
|
231
|
-
| `memoryUtilityLearningEnabled` | `false` | Enable typed utility-learning telemetry storage
|
|
232
|
-
| `promotionByOutcomeEnabled` | `false` |
|
|
233
|
+
| `memoryUtilityLearningEnabled` | `false` | Enable typed utility-learning telemetry storage, offline learning, and runtime loading of learned utility snapshots |
|
|
234
|
+
| `promotionByOutcomeEnabled` | `false` | Apply bounded learned utility weights to ranking heuristics and tier-migration thresholds when a learner snapshot is available |
|
|
233
235
|
| `commitmentLedgerEnabled` | `false` | Enable the explicit commitment ledger for promises, follow-ups, deadlines, and unfinished obligations |
|
|
234
236
|
| `commitmentLifecycleEnabled` | `false` | Enable commitment lifecycle transitions, stale tracking, and resolved-entry cleanup for the commitment ledger |
|
|
235
237
|
| `commitmentStaleDays` | `14` | Days before an open commitment without a due date is considered stale in lifecycle status |
|