Skip to main content

agent_code_lib/
lib.rs

1//! agent-code-lib: the complete agent engine as a library.
2#![allow(dead_code, clippy::new_without_default, clippy::len_without_is_empty)]
3//!
4//! Contains LLM providers, tools, query engine, memory, permissions,
5//! and all services. The CLI binary is a thin wrapper over this.
6
7pub mod config;
8pub mod error;
9pub mod hooks;
10pub mod llm;
11pub mod memory;
12pub mod permissions;
13pub mod query;
14pub mod services;
15pub mod skills;
16pub mod state;
17pub mod tools;