feat(cli): stream direct messages through buzz listen --dms - #3986
Draft
dspury wants to merge 2 commits into
Draft
feat(cli): stream direct messages through buzz listen --dms#3986dspury wants to merge 2 commits into
dspury wants to merge 2 commits into
Conversation
dspury
force-pushed
the
pr/cli-listen-dms
branch
from
August 13, 2026 05:44
d5dbd79 to
f10eb99
Compare
Add scoped signed-event streaming with bounded replay, local public-identity inspection, safe key generation, and implementation-independent wire fixtures. Keep process lifecycle, routing policy, directory publication, and deployment configuration outside Buzz. Signed-off-by: dspury <demitriusspury@gmail.com>
Discover relay-defined DM conversations and reuse the existing h-tag subscription model. Poll for newly opened conversations, preserve verification and replay bounds, and emit a stable lifecycle record for dynamic subscriptions. Signed-off-by: dspury <demitriusspury@gmail.com>
dspury
force-pushed
the
pr/cli-listen-dms
branch
from
August 13, 2026 07:11
f10eb99 to
ab1520a
Compare
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.
Stacked on #3964. The incremental review is commit
ab1520ade.Summary
buzz listen --dmsto subscribe to every direct-message conversation for the current identity.41001metadata and subscribe with the existing channel-scopedhfilters.dm_channel_addedlifecycle record when a new conversation is subscribed.--sincecatch-up behavior to dynamically added subscriptions.Design
Buzz already assigns each DM conversation a stable channel UUID, and DM events carry that UUID in an
htag. This change reuses that public event model; it adds no process management, routing policy, host configuration, or runtime-specific API.Validation
Current stacked head:
cargo fmt --all -- --checkcargo test -p buzz-cli— 374 unit tests and 12 integration tests passed; one doc test ignoredcargo clippy -p buzz-cli --all-targets -- -D warningsgit diff --checkThe rewritten #3964 base also passed the full
just cirepository gate before this stack update. This PR remains draft while #3964 is coordinated with #2942.