release prep: 0.21.0 - #175
Merged
Merged
Conversation
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 <id…> | --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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Version bump only —
mainalready carries the tree this releases.release-cut.ymlruns after this merges.Ships the fixes from a field report of an 18h multi-agent orchestration session, where the bus worked as a notification layer but not as a delivery layer:
inboxdestroys the messages it never printed #158 mail is delivered before it is consumed; an interrupted read costs a duplicate, never a messageinboxtimes out wherepeekis instant #159 consuming a mailbox is one round trip instead of one per message (inboxused to time out wherepeekwas instant)peekcannot ack, so the unread count never drops #160 newagentcomm ack <id…> | --allclears mail read some other way, so the unread count can actually dropsendreports success with no signal that the recipient is not reading #162sendreports when a recipient is not reading;agents/networkcarry unread depth and last-read ageSDK note (pre-1.0, so a minor):
Snapshottable.snapshotnow takes a body filter and returns{keys, bodies};Batchable(moveMany) is a new optional capability. Both are optional interfaces only backends implement.