missiond-core 0.1.0

Core library for missiond - PTY management, semantic terminal parsing, and Claude Code orchestration
Documentation
1
2
3
4
5
6
7
8
9
//! WebSocket module for PTY streaming and Claude Code Tasks events
//!
//! Allows external clients to:
//! 1. Attach to PTY sessions like `docker attach` or `tmux attach`
//! 2. Subscribe to Claude Code Tasks change events

mod server;

pub use server::{PTYWebSocketServer, WSServerOptions};