@joshuaswarren/openclaw-engram 9.0.44 → 9.0.46
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 -1
- package/dist/index.js +731 -388
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +40 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,8 @@ 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
|
|
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
|
+
- **Resume-bundle format foundation** — Engram can now, when `creationMemoryEnabled` and `resumeBundlesEnabled` are enabled, persist typed crash-recovery resume bundles, inspect them with `openclaw engram resume-bundle-status`, and write deterministic handoff shells through `openclaw engram resume-bundle-record`.
|
|
49
50
|
- **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.
|
|
50
51
|
|
|
51
52
|
## Quick Start
|
|
@@ -177,6 +178,8 @@ openclaw engram harmonic-search <query> # Preview blended harmonic retrieval
|
|
|
177
178
|
openclaw engram verified-recall-search <query> # Preview verified episodic recall matches
|
|
178
179
|
openclaw engram commitment-status # Commitment ledger counts and latest recorded obligation
|
|
179
180
|
openclaw engram commitment-record # Record a typed commitment ledger entry
|
|
181
|
+
openclaw engram commitment-set-state # Transition a commitment to open|fulfilled|cancelled|expired
|
|
182
|
+
openclaw engram commitment-lifecycle-run # Expire overdue commitments and clean aged resolved entries
|
|
180
183
|
openclaw engram work-product-status # Work-product ledger counts and latest recorded output
|
|
181
184
|
openclaw engram work-product-record # Record a typed work-product ledger entry
|
|
182
185
|
openclaw engram work-product-recall-search <query> # Preview reusable work products from the creation-memory ledger
|
|
@@ -223,7 +226,11 @@ Key settings:
|
|
|
223
226
|
| `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` |
|
|
224
227
|
| `creationMemoryEnabled` | `false` | Enable the creation-memory foundation, including the work-product ledger and operator-facing write/status commands |
|
|
225
228
|
| `commitmentLedgerEnabled` | `false` | Enable the explicit commitment ledger for promises, follow-ups, deadlines, and unfinished obligations |
|
|
229
|
+
| `commitmentLifecycleEnabled` | `false` | Enable commitment lifecycle transitions, stale tracking, and resolved-entry cleanup for the commitment ledger |
|
|
230
|
+
| `commitmentStaleDays` | `14` | Days before an open commitment without a due date is considered stale in lifecycle status |
|
|
226
231
|
| `commitmentLedgerDir` | `{memoryDir}/state/commitment-ledger` | Root directory for typed commitment ledger entries |
|
|
232
|
+
| `resumeBundlesEnabled` | `false` | Enable typed resume-bundle storage plus the operator-facing `resume-bundle-status` and `resume-bundle-record` commands |
|
|
233
|
+
| `resumeBundleDir` | `{memoryDir}/state/resume-bundles` | Root directory for typed resume bundles |
|
|
227
234
|
| `workProductRecallEnabled` | `false` | Inject prompt-relevant work-product ledger entries into recall and expose `openclaw engram work-product-recall-search` |
|
|
228
235
|
| `workProductLedgerDir` | `{memoryDir}/state/work-product-ledger` | Root directory for typed work-product ledger entries |
|
|
229
236
|
|