echo_agent 0.1.1

AI Agent framework with ReAct loop, multi-provider LLM, tool execution, and A2A HTTP server
1
2
3
4
5
6
7
/// Filesystem operations skill.
pub mod filesystem;
/// Shell command execution skill.
pub mod shell;

pub use filesystem::FileSystemSkill;
pub use shell::ShellSkill;