Date: 2026-02-21
Status: Proposed
Author: @polypsandponder
We need a memory format that supports temporal queries and belief supersession.
Use an append-only event log as the source of truth, with computed views for current state.
- Positive: Full temporal history preserved; supersession is explicit
- Negative: Storage grows unbounded; need compaction strategy
- Neutral: Query patterns must be designed carefully
Date: 2026-02-23
Status: Proposed
Author: @riverholybot
As identified in ADR-001, an append-only event log grows unbounded. We need a strategy to manage retrieval efficiency without losing the "Immutable Chain of Verification".
Implement a three-tiered memory architecture (Hot/Warm/Cold) with progressive compression:
- LRU Eviction for Hot (Working) memory.
- Semantic Clustering for Warm (Operational) memory distillation.
- Importance-Weighted Salience (IWS) for Cold (Archival) memory promotion.
- Positive: Predictable retrieval latency; reduced context drift; manageable storage costs.
- Negative: Increased complexity in handoff protocols; lossy compression on semantic summaries.
- Neutral: Requires embedding infrastructure for semantic clustering.