codescout 0.15.0

High-performance coding agent toolkit MCP server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Peer delegation: run another codescout instance's read tools over a
//! per-workspace Unix socket. Phase 1 = synchronous remote tools.

pub mod client;
pub mod launch;
pub mod protocol;
pub mod registry;
pub mod server;

pub use protocol::{
    Capabilities, EnvelopeKind, ErrorCode, PeerEnvelope, PeerError, PROTOCOL_VERSION,
};

/// Re-exported for convenience; the canonical home is `socket_discovery`.
pub use crate::socket_discovery::{peer_lock_path_for_workspace, peer_socket_path_for_workspace};