@joshuaswarren/openclaw-engram 9.0.41 → 9.0.43
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 +599 -307
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,6 +43,8 @@ AI agents forget everything between conversations. Engram fixes that.
|
|
|
43
43
|
- **Verified episodic recall** — Engram can now, when `verifiedRecallEnabled` is enabled, inject a dedicated `Verified Episodes` recall section that reuses memory boxes but only surfaces boxes whose cited source memories still verify as non-archived episodes.
|
|
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
|
+
- **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`.
|
|
46
48
|
- **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.
|
|
47
49
|
|
|
48
50
|
## Quick Start
|
|
@@ -172,6 +174,9 @@ openclaw engram trust-zone-status # Trust-zone record counts and lates
|
|
|
172
174
|
openclaw engram trust-zone-promote # Dry-run or apply a trust-zone promotion with provenance/corroboration enforcement
|
|
173
175
|
openclaw engram harmonic-search <query> # Preview blended harmonic retrieval matches
|
|
174
176
|
openclaw engram verified-recall-search <query> # Preview verified episodic recall matches
|
|
177
|
+
openclaw engram work-product-status # Work-product ledger counts and latest recorded output
|
|
178
|
+
openclaw engram work-product-record # Record a typed work-product ledger entry
|
|
179
|
+
openclaw engram work-product-recall-search <query> # Preview reusable work products from the creation-memory ledger
|
|
175
180
|
openclaw engram conversation-index-health # Conversation index status
|
|
176
181
|
openclaw engram graph-health # Entity graph status
|
|
177
182
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -213,6 +218,9 @@ Key settings:
|
|
|
213
218
|
| `verifiedRecallEnabled` | `false` | Inject prompt-relevant memory boxes only when their cited source memories verify as non-archived episodes |
|
|
214
219
|
| `semanticRulePromotionEnabled` | `false` | Enable deterministic promotion of explicit `IF ... THEN ...` rules from verified episodic memories via `openclaw engram semantic-rule-promote` |
|
|
215
220
|
| `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
|
+
| `creationMemoryEnabled` | `false` | Enable the creation-memory foundation, including the work-product ledger and operator-facing write/status commands |
|
|
222
|
+
| `workProductRecallEnabled` | `false` | Inject prompt-relevant work-product ledger entries into recall and expose `openclaw engram work-product-recall-search` |
|
|
223
|
+
| `workProductLedgerDir` | `{memoryDir}/state/work-product-ledger` | Root directory for typed work-product ledger entries |
|
|
216
224
|
|
|
217
225
|
Full reference: [Config Reference](docs/config-reference.md)
|
|
218
226
|
|