spar/lib.rs
1//! spar: two coding agents alternate implementing and reviewing GitHub issues
2//! until a pull request converges.
3//!
4//! A single model reviewing its own work grades its own homework. Two models
5//! with different training and different failure modes catch different things,
6//! and the disagreements are the useful part.
7
8pub mod agent;
9pub mod cli;
10pub mod config;
11pub mod error;
12pub mod jsonx;
13pub mod logging;
14pub mod model;
15pub mod proc;
16pub mod repo;
17pub mod review;
18pub mod review_only;
19pub mod schema;
20pub mod style;
21pub mod triage;
22
23pub use error::{Result, SparError};