Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.03 KB

File metadata and controls

25 lines (19 loc) · 1.03 KB

Changelog

v0.3.0 · 2026-05-24

  • Visible retrieval demo + sham consolidator comparison.
  • examples/visible_retrieval_demo.js: 5-turn mock agent loop that prints the RETRIEVED block (event id, timestamp, similarity score) on every turn, demonstrates deleteEvent reversibility on turn 3, and prints the cold-start vs warm-start retrieval latency tax.
  • examples/vs_background_consolidator.js: side-by-side run against a sham "fold every N turns into one summary string" consolidator. Shows three failure modes the pull model avoids: opaque retrievals, unreversible forget, and loss of byte accuracy to the source events.
  • Smoke tests for both examples (tests/examples.test.js) so future refactors break loudly if the honesty properties regress.

v0.2.0 · 2026-05-15

  • End-to-end Claude demo (examples/claude-agent.js).
  • Postgres adapter with the same EpisodicStore contract.
  • Streamlit live-demo sibling app.

v0.1.0 · 2026-05-15

  • Initial release: EpisodicStore, OnDemandSummarizer, MemoryDriftWatcher.