claude-session-driver 0.1.0

Drive an interactive Claude REPL over tmux on the subscription seat, with JSON state detection. Installs the `csd` binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! csd (Claude Session Driver) — drive an interactive `claude` REPL in a detached tmux session on
//! the flat-rate subscription seat, inject input reliably, and detect session state, emitting JSON
//! for programmatic consumers (copad, life-assistant). See `docs/poc-findings.md` for the empirical
//! basis and `~/dev/copad/docs/decisions.md` #49 for why this exists.

pub mod backend;
pub mod cli;
pub mod commands;
pub mod detect;
pub mod error;
pub mod session;
pub mod tmux;

pub use error::{Error, Result};