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
//! 工具规格表:按领域拆分为 `specs/*.inc.rs`(各文件为单个数组字面量),运行时在 `OnceLock` 中拼接为 `&'static [ToolSpec]`。
use OnceLock;
use tool_params;
use tool_summary as ts;
use *;
static SPECS_ARCHIVE: & = &include!;
static SPECS_ARCHIVE: & = &;
static SPECS_BASIC_NETWORK: & = &include!;
static SPECS_EXEC_PACKAGE: & = &include!;
static SPECS_CARGO_RUST: & = &include!;
static SPECS_FRONTEND_PYTHON: & = &include!;
static SPECS_GO: & = &include!;
static SPECS_JVM_CONTAINER: & = &include!;
static SPECS_QUALITY_AST: & = &include!;
static SPECS_FRONTEND_AUDIT_CI: & = &include!;
static SPECS_DIAGNOSTICS_DOCS: & = &include!;
static SPECS_GITHUB_CLI: & = &include!;
static SPECS_GIT_READ: & = &include!;
static SPECS_GIT_WRITE_CORE: & = &include!;
static SPECS_FILE_CORE: & = &include!;
static SPECS_MARKDOWN_STRUCTURED: & = &include!;
static SPECS_TEXT_CODE_NAV: & = &include!;
static SPECS_FORMAT_LINT: & = &include!;
static SPECS_SCHEDULE: & = &include!;
static SPECS_GIT_WRITE_EXTRA: & = &include!;
static SPECS_NODEJS: & = &include!;
static SPECS_GOLANGCI: & = &include!;
static SPECS_PROCESS: & = &include!;
static SPECS_METRICS: & = &include!;
static SPECS_FILE_EXTRA: & = &include!;
static SPECS_MISC_BASIC: & = &include!;
static SPECS_SOURCE_ANALYSIS: & = &include!;
static ALL_TOOL_SPECS: = new;
pub