Skip to main content

jig/
lib.rs

1#![deny(warnings, clippy::all)]
2
3//! jig: agent-shape testing harness.
4//!
5//! Runs runtime-in-the-loop task batteries against a tool's CLI to
6//! measure first-try command success, tokens, turns, and
7//! invented-command count. The runtime today is `claude -p`; the
8//! framework is runtime-agnostic in language and ready to slot in
9//! other agents (GPT, Gemini, local models) once the runner accepts
10//! a configurable spawn command.
11
12pub mod checkpoint;
13pub mod judge;
14pub mod report;
15pub mod runner;
16pub mod schema;