agent-top-core 0.3.4

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

pub mod collector;
pub mod harness;
pub mod jsonl;
pub mod model;
mod openfiles;
pub mod pricing;
pub mod process;

pub use collector::{Collector, CollectorOptions};
pub use model::*;