bamboo-tools 2026.5.3

Tool execution and integrations for the Bamboo agent framework
Documentation
// NOTE: apply_patch, file_exists, get_current_dir, set_workspace have been
// removed.  They are now aliases routed via BUILTIN_TOOL_ALIASES in executor.rs.
pub mod bash;
pub mod bash_output;
pub mod bash_runtime;
pub mod conclusion_with_options;
pub mod content_diagnostics;
pub mod edit;
pub mod enter_plan_mode;
pub mod exit_plan_mode;
pub mod file_change;
pub mod get_file_info;
pub mod glob;
pub mod grep;
pub mod js_repl;
pub mod kill_shell;
pub mod memory_note;
pub mod notebook_edit;
pub mod read;
pub mod read_tracker;
pub mod registry;
pub mod request_permissions;
pub mod session_memory;
pub mod slash_command_tool;
pub mod sleep;
pub mod task;
pub mod web_fetch;
pub mod web_search;
pub mod workspace;
pub mod workspace_state;
pub mod write;

pub use bash::BashTool;
pub use bash_output::BashOutputTool;
pub use conclusion_with_options::ConclusionWithOptionsTool;
pub use edit::EditTool;
pub use enter_plan_mode::EnterPlanModeTool;
pub use exit_plan_mode::ExitPlanModeTool;
pub use get_file_info::GetFileInfoTool;
pub use glob::GlobTool;
pub use grep::GrepTool;
pub use js_repl::JsReplTool;
pub use kill_shell::KillShellTool;
pub use memory_note::{MemoryNoteTool, SessionNoteTool};
pub use notebook_edit::NotebookEditTool;
pub use read::ReadTool;
pub use registry::ToolRegistry;
pub use request_permissions::RequestPermissionsTool;
pub use slash_command_tool::SlashCommandTool;
pub use sleep::SleepTool;
pub use task::TaskTool;
pub use web_fetch::WebFetchTool;
pub use web_search::WebSearchTool;
pub use workspace::WorkspaceTool;
pub use write::WriteTool;