Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/sharer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,11 @@ pub enum UpstreamMessage {

/// The sharer removed a pending user as a session guest.
RemovePendingGuest { email: String },

/// The sharer's environment setup (repo clone, setup commands, MCP
/// discovery, skill loading) has completed. Viewers use this to
/// transition out of the setup-commands UI phase.
EnvironmentSetupComplete,
}

impl UpstreamMessage {
Expand Down
4 changes: 4 additions & 0 deletions src/viewer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ pub enum DownstreamMessage {
/// A response to a [`UpstreamMessage::Ping`].
/// Used to demonstrate that the server is still alive.
Pong { data: Vec<u8> },

/// The sharer's environment setup has completed. Viewers use this to
/// transition out of the setup-commands UI phase.
EnvironmentSetupComplete,
}

impl DownstreamMessage {
Expand Down