Skip to main content

agent_top_core/
lib.rs

1//! agent-top-core: discovery, accounting and process-tree model for agent-top.
2//!
3//! This crate has no terminal dependencies. It answers one question: "which
4//! coding agents are on this machine right now, what are they doing, and what
5//! have they spent?" The TUI crate renders the answer; `--json` prints it.
6
7pub mod collector;
8pub mod harness;
9pub mod jsonl;
10pub mod model;
11mod openfiles;
12pub mod pricing;
13pub mod process;
14
15pub use collector::{Collector, CollectorOptions};
16pub use model::*;