From 076cc3173add18a22139b89688941de1ebaee240 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 11 Dec 2025 20:25:27 +0100 Subject: [PATCH] mom: update changelog with AgentSession integration, closes #115 --- packages/mom/CHANGELOG.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/mom/CHANGELOG.md b/packages/mom/CHANGELOG.md index 2da664dc..83d7ec37 100644 --- a/packages/mom/CHANGELOG.md +++ b/packages/mom/CHANGELOG.md @@ -4,11 +4,14 @@ ### Changed -- Complete rewrite of message handling architecture - - `log.jsonl` is now the source of truth for all channel messages - - `context.jsonl` stores LLM context (messages sent to Claude) +- Complete rewrite of message handling architecture (#115) + - Now uses `AgentSession` from coding-agent for session management + - Brings auto-compaction, overflow handling, and proper prompt caching + - `log.jsonl` is the source of truth for all channel messages + - `context.jsonl` stores LLM context (messages sent to Claude, same format as coding-agent) - Sync mechanism ensures context.jsonl stays in sync with log.jsonl at run start - Session header written immediately on new session creation (not lazily) + - Tool results preserved in context.jsonl for multi-turn continuity - Backfill improvements - Only backfills channels that already have a `log.jsonl` file