syncable_cli/agent/tools/
mod.rs

1//! Agent tools using Rig's Tool trait
2//!
3//! These tools wrap existing CLI functionality for the agent to use.
4
5mod analyze;
6mod file_ops;
7mod security;
8
9pub use analyze::AnalyzeTool;
10pub use file_ops::{ListDirectoryTool, ReadFileTool};
11pub use security::{SecurityScanTool, VulnerabilitiesTool};