agent-works 0.1.3

Batteries-included Agent toolbox built on agent-base — MCP multi-server, Skills, built-in file tools, CLI REPL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod file_exists;
pub mod list_directory;
mod path_util;
pub mod read_file;
pub mod search_replace;
pub mod write_file;

pub use file_exists::FileExistsTool;
pub use list_directory::ListDirectoryTool;
pub use path_util::validate_path;
pub use read_file::ReadFileTool;
pub use search_replace::SearchReplaceTool;
pub use write_file::WriteFileTool;