Skip to main content

agent_code_lib/services/
mod.rs

1//! Core services layer.
2//!
3//! Services handle cross-cutting concerns like history compaction,
4//! token estimation, MCP server management, and memory persistence.
5
6pub mod background;
7pub mod bridge;
8pub mod budget;
9pub mod cache_tracking;
10pub mod compact;
11pub mod context_collapse;
12pub mod coordinator;
13pub mod diagnostics;
14pub mod file_cache;
15pub mod git;
16pub mod git_ops;
17pub mod history;
18pub mod lsp;
19pub mod mcp;
20pub mod output_store;
21pub mod plugins;
22pub mod pricing;
23pub mod secret_masker;
24pub mod session;
25pub mod session_env;
26pub mod shell_passthrough;
27pub mod telemetry;
28pub mod tokens;