rho-coding-agent 1.17.0

A lightweight agent harness inspired by Pi
Documentation
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::{ClaudeRunIdentity, StatusSink};