//! Built-in tools for common agent patterns.
//!
//! This module provides ready-to-use tool implementations that follow
//! established patterns from reference projects (deer-flow, deepagents).
//!
//! # Available Tools
//!
//! - [`ThinkTool`] — Strategic reflection for research agents
//! - `WebFetchTool` — Full webpage content fetching (requires `reqwest` feature)
pub use ThinkTool;
pub use WebFetchTool;
// Rust guideline compliant 2026-05-27