1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
pub mod approval;
#[cfg(feature = "browser")]
pub mod browser;
#[cfg(feature = "slack")]
mod channel_history;
mod cli_agent;
pub(crate) mod command_semantics;
mod config_manager;
mod diagnose;
mod goal_trace;
mod health_probe;
mod manage_memories;
mod manage_people;
pub(crate) mod memory;
mod policy_metrics;
pub mod sanitize;
mod scheduled_goal_runs;
mod send_file;
mod share_memory;
pub mod spawn;
mod system;
pub mod terminal;
mod tool_trace;
pub mod web_fetch;
mod web_search;
pub use approval::ApprovalBroker;
#[cfg(feature = "browser")]
pub use browser::BrowserTool;
#[cfg(feature = "slack")]
pub use channel_history::ReadChannelHistoryTool;
pub use cli_agent::CliAgentTool;
pub use config_manager::ConfigManagerTool;
pub use diagnose::DiagnoseTool;
pub use goal_trace::GoalTraceTool;
pub use health_probe::HealthProbeTool;
pub use manage_memories::ManageMemoriesTool;
pub use manage_people::ManagePeopleTool;
pub use memory::RememberFactTool;
pub use policy_metrics::PolicyMetricsTool;
pub use scheduled_goal_runs::ScheduledGoalRunsTool;
pub use send_file::SendFileTool;
pub use share_memory::ShareMemoryTool;
pub use spawn::SpawnAgentTool;
pub use system::SystemInfoTool;
pub use terminal::TerminalTool;
pub use tool_trace::ToolTraceTool;
pub use web_fetch::WebFetchTool;
pub use web_search::WebSearchTool;
mod http_request;
pub use http_request::HttpRequestTool;
mod manage_api;
pub use manage_api::ManageApiTool;
mod manage_http_auth;
pub use manage_http_auth::ManageHttpAuthTool;
mod manage_oauth;
pub use manage_oauth::ManageOAuthTool;
pub mod manage_mcp;
mod manage_skills;
pub mod skill_registry;
mod skill_resources;
mod use_skill;
mod manage_cli_agents;
pub use manage_cli_agents::ManageCliAgentsTool;
pub mod manage_goal_tasks;
pub(crate) use manage_goal_tasks::goal_completion_summary_indicates_not_finished;
pub use manage_goal_tasks::ManageGoalTasksTool;
pub mod report_blocker;
pub use manage_mcp::ManageMcpTool;
pub use manage_skills::ManageSkillsTool;
pub use report_blocker::ReportBlockerTool;
pub use skill_resources::SkillResourcesTool;
pub use use_skill::UseSkillTool;
pub mod command_patterns;
pub mod command_risk;
pub mod daemon_guard;
pub mod verification;
pub use verification::VerificationTracker;
// Deterministic tools
pub(crate) mod fs_utils;
mod read_file;
pub use read_file::ReadFileTool;
mod write_file;
pub use write_file::WriteFileTool;
mod edit_file;
pub use edit_file::EditFileTool;
mod search_files;
pub use search_files::SearchFilesTool;
mod project_inspect;
pub use project_inspect::ProjectInspectTool;
mod run_command;
pub use run_command::RunCommandTool;
mod git_info;
pub(crate) mod process_control;
pub use git_info::GitInfoTool;
mod git_commit;
pub use git_commit::GitCommitTool;
mod check_environment;
pub use check_environment::CheckEnvironmentTool;
mod service_status;
pub use service_status::ServiceStatusTool;
#[cfg(test)]
mod schema_lint_tests;