rx4 0.3.2

The agent harness engine — loop, tools, providers, sessions, permissions, computer-use, with full pi protocol compatibility
Documentation
//! ACP (Agent Client Protocol) host stub.

pub struct AcpHost {
    pub running: bool,
}

impl AcpHost {
    pub fn new() -> Self {
        Self { running: false }
    }
    pub fn start(&mut self) {
        self.running = true;
    }
    pub fn stop(&mut self) {
        self.running = false;
    }
}

impl Default for AcpHost {
    fn default() -> Self {
        Self::new()
    }
}