Skip to main content

Crate agent_status

Crate agent_status 

Source
Expand description

Library face of the agent-status crate.

Re-exports§

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

Modules§

agents
commands
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.
state