Sessions now track who created them (Human vs Agent with name), optional descriptions, and creation timestamps. Agents can create and update sessions via WebSocket and MCP. ListSessions supports sorting by name, created_at, created_by, or element_count. New MCP tools: create_session, update_session. Updated list_sessions with sort_by/sort_order params. Tab bar shows robot icon for agent-created sessions with hover tooltips.
6 lines
118 B
Rust
6 lines
118 B
Rust
mod protocol;
|
|
mod server;
|
|
|
|
pub use protocol::{DrawingCommand, GuiEvent, SessionCommand};
|
|
pub use server::AgentServer;
|