trae-agent-rs-core 0.0.1

Core library for Trae Agent - LLM-based agent for software engineering tasks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Built-in tools

pub mod bash;
pub mod edit;
pub mod thinking;
pub mod task_done;
pub mod json_edit;
pub mod ckg;
pub mod mcp;

pub use bash::{BashTool, BashToolFactory};
pub use edit::{EditTool, EditToolFactory};
pub use thinking::{ThinkingTool, ThinkingToolFactory};
pub use task_done::{TaskDoneTool, TaskDoneToolFactory};
pub use json_edit::{JsonEditTool, JsonEditToolFactory};
pub use ckg::{CkgTool, CkgToolFactory};
pub use mcp::{McpTool, McpToolFactory};