pitboss 0.1.0

CLI that orchestrates coding agents (Claude Code and others) through a phased implementation plan, with automatic test/commit loops and a TUI dashboard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Pitboss library — orchestrates coding agents through a phased implementation plan.
//!
//! See `plan.md` for the full design. This crate exposes the modules the CLI and
//! integration tests build on.

pub mod agent;
pub mod cli;
pub mod config;
pub mod deferred;
pub mod git;
pub mod plan;
pub mod prompts;
pub mod runner;
pub mod state;
pub mod style;
pub mod tests;
pub mod tui;
pub mod util;