@joshuaswarren/openclaw-engram 9.0.29 → 9.0.31

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
@@ -34,7 +34,8 @@ AI agents forget everything between conversations. Engram fixes that.
34
34
  - **Objective-state recall** — Engram can now store normalized file, process, and tool outcomes and, when `objectiveStateRecallEnabled` is enabled, inject the most relevant objective-state snapshots back into recall context as a separate `Objective State` section.
35
35
  - **Causal trajectory graph foundation** — Engram can now persist typed `goal -> action -> observation -> outcome -> follow-up` chains when `causalTrajectoryMemoryEnabled` is enabled and, with `actionGraphRecallEnabled`, emit deterministic action-conditioned edges into the causal graph for later trajectory-aware retrieval.
36
36
  - **Causal trajectory recall** — Engram can now, when `causalTrajectoryRecallEnabled` is enabled, inject prompt-relevant causal chains back into recall context as a separate `Causal Trajectories` section with lightweight match explainability.
37
- - **Trust-zone store foundation** — Engram can now, when `trustZonesEnabled` is enabled, persist typed quarantine, working, and trusted records with provenance metadata into a dedicated trust-zone store for later promotion and defense slices.
37
+ - **Trust-zone promotion path** — Engram can now, when `trustZonesEnabled` and `quarantinePromotionEnabled` are enabled, persist typed quarantine, working, and trusted records, plan explicit promotions, block direct `quarantine -> trusted` jumps, and require anchored provenance before promoting risky working records into `trusted`.
38
+ - **Trust-zone recall** — Engram can now, when `trustZoneRecallEnabled` is enabled, inject prompt-relevant `working` and `trusted` trust-zone records into recall context as a separate `Trust Zones` section while keeping `quarantine` material out of recall by default.
38
39
  - **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.
39
40
 
40
41
  ## Quick Start
@@ -160,6 +161,8 @@ openclaw engram benchmark-import <path> # Import a validated benchmark pack
160
161
  openclaw engram benchmark-ci-gate # Compare base vs candidate eval stores and fail on regressions
161
162
  openclaw engram objective-state-status # Objective-state snapshot counts and latest stored snapshot
162
163
  openclaw engram causal-trajectory-status # Causal-trajectory record counts and latest stored chain
164
+ openclaw engram trust-zone-status # Trust-zone record counts and latest stored record
165
+ openclaw engram trust-zone-promote # Dry-run or apply a trust-zone promotion with provenance enforcement
163
166
  openclaw engram conversation-index-health # Conversation index status
164
167
  openclaw engram graph-health # Entity graph status
165
168
  openclaw engram tier-status # Hot/cold tier metrics
@@ -190,9 +193,10 @@ Key settings:
190
193
  | `causalTrajectoryStoreDir` | `{memoryDir}/state/causal-trajectories` | Root directory for causal-trajectory records |
191
194
  | `causalTrajectoryRecallEnabled` | `false` | Inject prompt-relevant causal trajectories into recall context |
192
195
  | `actionGraphRecallEnabled` | `false` | Write action-conditioned causal-stage edges from typed trajectory records into the causal graph |
193
- | `trustZonesEnabled` | `false` | Enable the trust-zone memory foundation for quarantine, working, and trusted records |
194
- | `quarantinePromotionEnabled` | `false` | Reserve future promotion flows from quarantine into higher-trust zones |
196
+ | `trustZonesEnabled` | `false` | Enable the trust-zone memory foundation and operator-facing promotion path for quarantine, working, and trusted records |
197
+ | `quarantinePromotionEnabled` | `false` | Allow explicit trust-zone promotions such as `quarantine -> working` and guarded `working -> trusted` |
195
198
  | `trustZoneStoreDir` | `{memoryDir}/state/trust-zones` | Root directory for trust-zone records |
199
+ | `trustZoneRecallEnabled` | `false` | Inject prompt-relevant working and trusted trust-zone records into recall context |
196
200
 
197
201
  Full reference: [Config Reference](docs/config-reference.md)
198
202