@joshuaswarren/openclaw-engram 9.0.42 → 9.0.44
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 -0
- package/dist/index.js +640 -340
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,8 @@ AI agents forget everything between conversations. Engram fixes that.
|
|
|
44
44
|
- **Semantic rule promotion** — Engram can now, when `semanticRulePromotionEnabled` is enabled, promote explicit `IF ... THEN ...` rules from verified episodic memories into durable `rule` memories with lineage, source-memory provenance, duplicate suppression, and the operator-facing `openclaw engram semantic-rule-promote` CLI.
|
|
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
|
+
- **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 ledger foundation** — Engram can now, when both `creationMemoryEnabled` and `commitmentLedgerEnabled` are enabled, persist typed commitments for promises, follow-ups, deadlines, and unfinished obligations, inspect them with `openclaw engram commitment-status`, and write deterministic entries through `openclaw engram commitment-record`.
|
|
47
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.
|
|
48
50
|
|
|
49
51
|
## Quick Start
|
|
@@ -173,8 +175,11 @@ openclaw engram trust-zone-status # Trust-zone record counts and lates
|
|
|
173
175
|
openclaw engram trust-zone-promote # Dry-run or apply a trust-zone promotion with provenance/corroboration enforcement
|
|
174
176
|
openclaw engram harmonic-search <query> # Preview blended harmonic retrieval matches
|
|
175
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
|
|
176
180
|
openclaw engram work-product-status # Work-product ledger counts and latest recorded output
|
|
177
181
|
openclaw engram work-product-record # Record a typed work-product ledger entry
|
|
182
|
+
openclaw engram work-product-recall-search <query> # Preview reusable work products from the creation-memory ledger
|
|
178
183
|
openclaw engram conversation-index-health # Conversation index status
|
|
179
184
|
openclaw engram graph-health # Entity graph status
|
|
180
185
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -217,6 +222,9 @@ Key settings:
|
|
|
217
222
|
| `semanticRulePromotionEnabled` | `false` | Enable deterministic promotion of explicit `IF ... THEN ...` rules from verified episodic memories via `openclaw engram semantic-rule-promote` |
|
|
218
223
|
| `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` |
|
|
219
224
|
| `creationMemoryEnabled` | `false` | Enable the creation-memory foundation, including the work-product ledger and operator-facing write/status commands |
|
|
225
|
+
| `commitmentLedgerEnabled` | `false` | Enable the explicit commitment ledger for promises, follow-ups, deadlines, and unfinished obligations |
|
|
226
|
+
| `commitmentLedgerDir` | `{memoryDir}/state/commitment-ledger` | Root directory for typed commitment ledger entries |
|
|
227
|
+
| `workProductRecallEnabled` | `false` | Inject prompt-relevant work-product ledger entries into recall and expose `openclaw engram work-product-recall-search` |
|
|
220
228
|
| `workProductLedgerDir` | `{memoryDir}/state/work-product-ledger` | Root directory for typed work-product ledger entries |
|
|
221
229
|
|
|
222
230
|
Full reference: [Config Reference](docs/config-reference.md)
|