rho-coding-agent 1.18.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared run-artifact contract for delegated agents.
//!
//! Owns `result.json` status writes and the `events.jsonl` attachment journal.
//! Runtime adapters (Rho SDK, Claude stream-json) translate into this surface;
//! the TUI only reads and renders it.

mod journal;
mod sink;

#[cfg(test)]
pub(crate) use journal::AttachmentWriter;
pub(crate) use journal::{AttachmentEvent, AttachmentReader};
pub(crate) use sink::{RunArtifactIdentity, RunArtifactSink};