rho-coding-agent 2.3.0

A fast Rust agent harness with a small footprint and opinionated defaults
1
2
3
4
5
6
7
8
9
10
11
12
//! Claude run artifact adapter.
//!
//! Persistence mechanics live in [`crate::run_artifacts`]. This module only
//! translates Claude stream effects onto that shared contract.

mod sink;

#[cfg(test)]
#[path = "persist_tests.rs"]
mod tests;

pub(crate) use sink::StatusSink;