rexec 0.2.0

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
[package]
name = "rexec"
version = "0.2.0"
edition = "2024"
rust-version = "1.89"
license = "Apache-2.0 OR MPL-2.0"
repository = "https://github.com/metastable-void/rexec"
readme = "README.md"
description = "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."
keywords = ["ai-agents", "pty", "command-runner", "transcript", "ipc"]
categories = ["command-line-utilities", "development-tools"]

[lib]
path = "src/lib.rs"

[[bin]]
name = "rexec"
path = "src/bin/rexec/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
async-trait = "0.1"
tokio = { version = "1", features = ["rt", "macros", "io-std"] }
rust-mcp-sdk = { version = "0.9", default-features = false, features = ["server", "macros", "stdio"] }

[target.'cfg(unix)'.dependencies]
nix = { version = "0.31", features = ["term", "signal", "process", "fs", "user", "poll"] }