agent-status 1.0.2

Tmux-integrated indicator showing which AI coding agent sessions are waiting on user input.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Library face of the `agent-status` crate.

pub mod agents;
pub mod commands;
pub mod state;

pub use agents::{Agent, by_name};
pub use commands::{
    build_entry, build_extension, format_list, format_status, ExtensionFile,
};
pub use state::{AttentionEntry, StateStore};