Skip to main content

oxios_kernel/tools/
mod.rs

1//! Oxios-specific agent tools.
2//!
3//! These tools replace oxi-agent's BashTool with purpose-specific execution tools:
4//! - `exec_tool` — unified workspace/host command execution
5
6pub mod a2a_tools;
7pub mod builtin;
8pub mod exec_tool;
9pub mod gated_tool;
10pub mod kernel_bridge;
11pub mod mcp_tool;
12pub mod memory_tools;
13pub mod pending_tool_approvals;
14pub mod registration;
15pub mod registry;
16pub mod retrieval;
17pub mod tool_types;
18
19pub use a2a_tools::{A2aDelegateTool, A2aQueryTool, A2aSendTool};
20pub use builtin::{
21    BudgetTool, CronTool, KernelAgentTool, KnowledgeTool, PersonaTool, ProjectTool, ResourceTool,
22    SecurityTool,
23};
24pub use exec_tool::ExecTool;
25pub use mcp_tool::McpToolWrapper;
26pub use memory_tools::{MemoryReadTool, MemorySearchTool, MemoryWriteTool};
27
28pub use kernel_bridge::OxiosKernelBridge;
29pub use pending_tool_approvals::{PendingToolApprovals, ToolApprovalResult};
30pub use registry::{ToolMeta, known_tools};