rexec 0.1.1

Command execution aggregator for AI agents: a per-user host that runs commands in fresh PTYs, serialises their output to a shared console, strips ANSI escapes for the calling agent, and journals every run to a JSONL transcript.
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg(unix)]

pub mod cli;
pub mod client;
pub mod filter;
pub mod host;
pub mod protocol;
pub mod pty_exec;
pub mod socket;
pub mod transcript;