返回 DeepSeek-TUI-2026
mod.rs
根目录 / crates / tui / src / tools / mod.rs
1 //! Tool system modules and re-exports.
2
3 pub mod apply_patch;
4 pub mod approval_cache;
5 pub mod arg_repair;
6 pub mod automation;
7 pub mod diagnostics;
8 pub mod diff_format;
9 pub mod file;
10 pub mod file_search;
11 pub mod finance;
12
13 pub mod fetch_url;
14 pub mod fim;
15 pub mod git;
16 pub mod git_history;
17 pub mod github;
18 pub mod large_output_router;
19 pub mod parallel;
20 pub mod plan;
21 pub mod project;
22 pub mod recall_archive;
23 pub mod registry;
24 pub mod remember;
25 pub mod revert_turn;
26 pub mod review;
27 pub mod rlm;
28 pub mod schema_sanitize;
29 pub mod search;
30 pub mod shell;
31 mod shell_output;
32 pub mod skill;
33 pub mod spec;
34 pub mod subagent;
35 pub mod tasks;
36 pub mod test_runner;
37 pub mod todo;
38 pub mod truncate;
39 pub mod user_input;
40 pub mod validate_data;
41 pub mod web_run;
42 pub mod web_search;
43
44 pub use registry::{ToolRegistry, ToolRegistryBuilder};
45 pub use review::ReviewOutput;
46 pub use spec::ToolContext;
47 pub use user_input::UserInputResponse;
48
48 lines RUST