//! Sub-Agent Spawning Tools
//!
//! Provides 5 tools for multi-agent orchestration inspired by codex-rs:
//! spawn_agent, wait_agent, send_input, close_agent, resume_agent.
//!
//! Each child agent gets a forked context, its own CancellationToken,
//! and runs in a background tokio task. The parent can wait, send input,
//! close, or resume any child by agent_id.
pub use AgentType;
pub use CloseAgentTool;
pub use ;
pub use ResumeAgentTool;
pub use SendInputTool;
pub use SpawnAgentTool;
pub use ;
pub use WaitAgentTool;