From 5af46d7e27978c5cf363e4e28f470003b0fdc871 Mon Sep 17 00:00:00 2001 From: Yoni Davidson Date: Sun, 9 Aug 2026 11:31:34 +0300 Subject: [PATCH] release prep: 0.21.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Delivery reliability, from a field report of an 18h multi-agent session: - #157 the session alias no longer drifts mid-session (sticky fingerprint) - #158 mail is delivered before it is consumed — an interrupted read costs a duplicate, never a message - #159 consuming a mailbox is one round trip, not one per message - #160 new `agentcomm ack | --all` clears mail read some other way - #161 two live processes on one mailbox announce themselves - #162 `send` says when a recipient is not reading; `agents`/`network` carry unread depth and last-read age - #167 the daemon keeps a week of history warm instead of all of it SDK note: `Snapshottable.snapshot` now takes a body filter and returns {keys, bodies}; `Batchable` (moveMany) is a new optional capability. --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5f2fa46c..7688af89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@yonidavidson/agentcomm", - "version": "0.20.0", + "version": "0.21.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@yonidavidson/agentcomm", - "version": "0.20.0", + "version": "0.21.0", "license": "MIT", "bin": { "agentcomm": "dist/cli.js" diff --git a/package.json b/package.json index 33a26186..c4e8adfa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@yonidavidson/agentcomm", - "version": "0.20.0", + "version": "0.21.0", "description": "A tiny mailbox/message bus for AI agents that shell out to one CLI. Pluggable storage backends behind a single Backend interface.", "type": "module", "license": "MIT",