nomograph-jig 0.1.0

Agent-shape testing harness. Runs runtime-in-the-loop task batteries against a tool's CLI to measure first-try command success, tokens, turns, and invented-command count. TOML-driven, LLM-as-judge scored.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(warnings, clippy::all)]

//! jig: agent-shape testing harness.
//!
//! Runs runtime-in-the-loop task batteries against a tool's CLI to
//! measure first-try command success, tokens, turns, and
//! invented-command count. The runtime today is `claude -p`; the
//! framework is runtime-agnostic in language and ready to slot in
//! other agents (GPT, Gemini, local models) once the runner accepts
//! a configurable spawn command.

pub mod checkpoint;
pub mod judge;
pub mod report;
pub mod runner;
pub mod schema;