rho-coding-agent 1.18.2

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Claude Code as an external subagent runtime.
//!
//! Auth and binary probes live here. Nothing in this module is a Rho
//! credential; Rho never stores Claude Code tokens.

pub(crate) mod auth;
pub(crate) mod executable;
pub(crate) mod line_decoder;
pub(crate) mod persist;
pub(crate) mod rate_limit;
pub(crate) mod session;
pub(crate) mod spawn;
pub(crate) mod stream;
pub(crate) mod windows_shim_args;