agentcarousel 0.2.1

Check YAML/TOML fixtures for agents and skills, run cases (mock or live), and keep run rows in SQLite for reports and evidence export.
Documentation
1
2
3
4
5
6
use agentcarousel_core::Run;

pub fn print_json(run: &Run) {
    let payload = serde_json::to_string_pretty(run).unwrap_or_else(|_| "{}".to_string());
    println!("{payload}");
}