agent-works 0.1.1

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
pub mod read_file;
pub mod write_file;
pub mod list_directory;
pub mod file_exists;
pub mod search_replace;

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