rho-coding-agent 1.5.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Portable agent definitions and deterministic catalog discovery.
//!
//! Definitions contain only semantic policy. Origin and source paths remain
//! catalog metadata and do not affect semantic fingerprints.

mod catalog;
mod definition;
mod parser;

pub(crate) use catalog::*;
pub(crate) use definition::*;
#[cfg(test)]
pub(crate) use parser::parse_definition;

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