jev-harness 0.1.0

Zero-overhead System One decision harness and token optimizer for AI coding agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Jev Harness (Rust)
//!
//! Zero-overhead System One decision harness and token optimizer for AI coding agents.
//! Powered by [TypeSafe AI's Jev System One](https://typesafe.ai).
//!
//! Provides ultra-fast micro-decisions (<500µs local, 70-300ms remote) to optimize model routing,
//! triage test and execution failures, and protect against doomed repetitive loops.

pub mod cli;
pub mod client;
pub mod gates;
pub mod types;

pub use client::JevClient;
pub use gates::{
    route_model_tier, should_abort_trajectory, triage_test_failure, verify_step_completion,
};
pub use types::*;