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 advice;
8pub mod collector;
9pub mod harness;
10pub mod jsonl;
11pub mod model;
12mod openfiles;
13pub mod pricing;
14pub mod process;
15
16pub use collector::{Collector, CollectorOptions};
17pub use model::*;