Conversation
- Add 'convos conversation send-read-receipt <id>' standalone command - Add 'read-receipt' stdin command to agent serve protocol - Fix flaky identity test by using isolated --home test directory - Update test helpers to auto-inject --home for test isolation - Update SKILL.md with read receipt docs Bumps version to 0.5.2.
ApprovabilityVerdict: Needs human review This PR introduces a new user-facing feature (read receipt CLI command and agent command type). While the implementation is clean, additive, and follows existing patterns, new features with new user-facing behavior warrant human review to confirm the desired functionality. You can customize Macroscope's approvability policy. Learn more. |
This was referenced Mar 13, 2026
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.
Summary
Adds read receipt support to both the standalone CLI and the agent protocol.
New standalone command
Sends a silent read receipt to the conversation. No visible message, no push notification.
New agent stdin command
{"type":"read-receipt"}Emits a
sentevent withtype: "read-receipt"on success.Test isolation fix
Updated
test/helpers.tsto auto-inject--home <tmpdir>into all CLI test invocations, so tests no longer read/write~/.convos. This fixes the pre-existing flaky failure in the identity lifecycle test where other identities in the real home dir could interfere with assertions.Changes
src/commands/conversation/send-read-receipt.ts— new standalone commandsrc/commands/agent/serve.ts— addedReadReceiptCommandinterface and handlertest/helpers.ts—runCommand()now injects--homepointing to an isolated temp dir; addedgetTestHome()/cleanupTestHome()test/commands/identity.test.ts— uses isolated home, handles empty-list edge casetest/commands/init.test.ts— uses isolated homeSKILL.md— documented read receipt command and agent protocolVersion
0.5.2. All 226 tests pass.
Note
Add XMTP read receipt support to CLI and agent command processor
convos conversation send-read-receipt <conversation-id>insend-read-receipt.tsthat sends a read receipt to a group conversation and returns JSON withsuccess,messageId, andconversationId.serve.tswith aread-receiptcase that callsconversation.sendReadReceipt()and emits asentevent with the resulting message ID.test/helpers.ts, automatically injecting--home <tempDir>into all CLI test invocations.Macroscope summarized c573a3e.