sage_runtime/tools/mod.rs
1//! RFC-0011: Tool implementations for Sage agents.
2//!
3//! This module provides the built-in tools that agents can use via
4//! `use ToolName` declarations and `ToolName.method()` calls.
5
6mod database;
7mod filesystem;
8mod http;
9mod shell;
10
11pub use database::{DatabaseClient, DbRow};
12pub use filesystem::FsClient;
13pub use http::{HttpClient, HttpResponse};
14pub use shell::{ShellClient, ShellResult};