@joshuaswarren/openclaw-engram 9.0.43 → 9.0.45

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
@@ -45,6 +45,7 @@ AI agents forget everything between conversations. Engram fixes that.
45
45
  - **Verified rule recall** — Engram can now, when `semanticRuleVerificationEnabled` is enabled, inject a dedicated `Verified Rules` recall section that re-checks promoted rule memories against their cited source episodes at recall time and downgrades stale provenance before the rule can surface.
46
46
  - **Creation-memory ledger** — Engram can now, when `creationMemoryEnabled` is enabled, persist a typed work-product ledger for explicit outputs agents create or update, inspect it with `openclaw engram work-product-status`, and write deterministic entries through `openclaw engram work-product-record`.
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
+ - **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`.
48
49
  - **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.
49
50
 
50
51
  ## Quick Start
@@ -174,6 +175,10 @@ openclaw engram trust-zone-status # Trust-zone record counts and lates
174
175
  openclaw engram trust-zone-promote # Dry-run or apply a trust-zone promotion with provenance/corroboration enforcement
175
176
  openclaw engram harmonic-search <query> # Preview blended harmonic retrieval matches
176
177
  openclaw engram verified-recall-search <query> # Preview verified episodic recall matches
178
+ openclaw engram commitment-status # Commitment ledger counts and latest recorded obligation
179
+ openclaw engram commitment-record # Record a typed commitment ledger entry
180
+ openclaw engram commitment-set-state # Transition a commitment to open|fulfilled|cancelled|expired
181
+ openclaw engram commitment-lifecycle-run # Expire overdue commitments and clean aged resolved entries
177
182
  openclaw engram work-product-status # Work-product ledger counts and latest recorded output
178
183
  openclaw engram work-product-record # Record a typed work-product ledger entry
179
184
  openclaw engram work-product-recall-search <query> # Preview reusable work products from the creation-memory ledger
@@ -219,6 +224,10 @@ Key settings:
219
224
  | `semanticRulePromotionEnabled` | `false` | Enable deterministic promotion of explicit `IF ... THEN ...` rules from verified episodic memories via `openclaw engram semantic-rule-promote` |
220
225
  | `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` |
221
226
  | `creationMemoryEnabled` | `false` | Enable the creation-memory foundation, including the work-product ledger and operator-facing write/status commands |
227
+ | `commitmentLedgerEnabled` | `false` | Enable the explicit commitment ledger for promises, follow-ups, deadlines, and unfinished obligations |
228
+ | `commitmentLifecycleEnabled` | `false` | Enable commitment lifecycle transitions, stale tracking, and resolved-entry cleanup for the commitment ledger |
229
+ | `commitmentStaleDays` | `14` | Days before an open commitment without a due date is considered stale in lifecycle status |
230
+ | `commitmentLedgerDir` | `{memoryDir}/state/commitment-ledger` | Root directory for typed commitment ledger entries |
222
231
  | `workProductRecallEnabled` | `false` | Inject prompt-relevant work-product ledger entries into recall and expose `openclaw engram work-product-recall-search` |
223
232
  | `workProductLedgerDir` | `{memoryDir}/state/work-product-ledger` | Root directory for typed work-product ledger entries |
224
233