agentool 0.1.0

Rust toolkit for AI agents: JSON Schema-defined tools for workspace files, search, web, Markdown, Git, memory, human-in-the-loop hooks, and todos.
Documentation
pub mod tool;

mod core;

pub use tool::{Tool, ToolError, ToolResult};

#[cfg(feature = "fs")]
pub mod fs;

#[cfg(feature = "find")]
pub mod find;

#[cfg(feature = "web")]
pub mod web;

#[cfg(feature = "md")]
pub mod md;

#[cfg(feature = "git")]
pub mod git;

#[cfg(feature = "memory")]
pub mod memory;

#[cfg(feature = "exec")]
pub mod exec;

#[cfg(feature = "code")]
pub mod code;

#[cfg(feature = "office")]
pub mod office;

#[cfg(feature = "browser")]
pub mod browser;

#[cfg(feature = "design")]
pub mod design;

#[cfg(feature = "gui")]
pub mod gui;

#[cfg(feature = "todo")]
pub mod todo;

#[cfg(feature = "interact")]
pub mod interact;