agent-status 2.1.0

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
12
13
14
15
16
17
//! Helpers used by each `agent-status` subcommand. One file per subcommand
//! (`set`, `status`, `list`, `agent-extension`); `mod.rs` re-exports the
//! public API. `format_status` (the tmux `status-right` indicator) filters to
//! attention-needing events via `Event::needs_attention` on the entry's event.
//! `format_list` does NOT — it lists every session and renders each one's state
//! via a per-event marker, mirroring the switcher, which likewise reads the
//! store directly and surfaces every event value.

mod agent_extension;
mod list;
mod set;
mod status;

pub use agent_extension::{build_extension, ExtensionFile};
pub use list::format_list;
pub use set::build_entry;
pub use status::format_status;