codei-agent 0.0.12

终端优先的 AI 编程 Agent,用自然语言在本地仓库中读代码、改代码、跑命令、调试问题。
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent loop orchestrating LLM, tools, and session.

mod compact;
mod error;
mod event;
mod loop_;
mod prompt;
mod task_tool;
mod tool_args;

pub use error::AgentError;
pub use event::AgentEvent;
pub use loop_::{AgentLoop, TurnOutcome};
pub use prompt::build_system_prompt;