@joshuaswarren/openclaw-engram 9.0.42 → 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 +3 -0
- package/dist/index.js +525 -388
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ 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`.
|
|
47
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.
|
|
48
49
|
|
|
49
50
|
## Quick Start
|
|
@@ -175,6 +176,7 @@ openclaw engram harmonic-search <query> # Preview blended harmonic retrieval
|
|
|
175
176
|
openclaw engram verified-recall-search <query> # Preview verified episodic recall matches
|
|
176
177
|
openclaw engram work-product-status # Work-product ledger counts and latest recorded output
|
|
177
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
|
|
178
180
|
openclaw engram conversation-index-health # Conversation index status
|
|
179
181
|
openclaw engram graph-health # Entity graph status
|
|
180
182
|
openclaw engram tier-status # Hot/cold tier metrics
|
|
@@ -217,6 +219,7 @@ Key settings:
|
|
|
217
219
|
| `semanticRulePromotionEnabled` | `false` | Enable deterministic promotion of explicit `IF ... THEN ...` rules from verified episodic memories via `openclaw engram semantic-rule-promote` |
|
|
218
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` |
|
|
219
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` |
|
|
220
223
|
| `workProductLedgerDir` | `{memoryDir}/state/work-product-ledger` | Root directory for typed work-product ledger entries |
|
|
221
224
|
|
|
222
225
|
Full reference: [Config Reference](docs/config-reference.md)
|