mcp-probe-kit 1.15.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +113 -1642
- package/build/index.js +75 -42
- package/build/lib/elicitation-helper.d.ts +73 -0
- package/build/lib/elicitation-helper.js +130 -0
- package/build/lib/response.d.ts +32 -0
- package/build/lib/response.js +28 -0
- package/build/lib/tasks-manager.d.ts +116 -0
- package/build/lib/tasks-manager.js +217 -0
- package/build/lib/toolset-manager.d.ts +48 -0
- package/build/lib/toolset-manager.js +112 -0
- package/build/schemas/basic-tools.d.ts +0 -32
- package/build/schemas/basic-tools.js +0 -34
- package/build/schemas/code-analysis-tools.d.ts +0 -36
- package/build/schemas/code-analysis-tools.js +0 -38
- package/build/schemas/code-gen-tools.d.ts +0 -44
- package/build/schemas/code-gen-tools.js +0 -46
- package/build/schemas/doc-util-tools.d.ts +0 -54
- package/build/schemas/doc-util-tools.js +0 -58
- package/build/schemas/index.d.ts +0 -188
- package/build/schemas/orchestration-tools.d.ts +0 -22
- package/build/schemas/orchestration-tools.js +0 -23
- package/build/schemas/output/core-tools.d.ts +817 -0
- package/build/schemas/output/core-tools.js +421 -0
- package/build/schemas/output/generation-tools.d.ts +936 -0
- package/build/schemas/output/generation-tools.js +446 -0
- package/build/schemas/output/helper-tools.d.ts +243 -0
- package/build/schemas/output/helper-tools.js +138 -0
- package/build/schemas/output/index.d.ts +76 -0
- package/build/schemas/output/index.js +96 -0
- package/build/schemas/output/project-tools.d.ts +702 -0
- package/build/schemas/output/project-tools.js +339 -0
- package/build/schemas/output/ui-ux-tools.d.ts +469 -0
- package/build/schemas/output/ui-ux-tools.js +218 -0
- package/build/schemas/output/workflow-tools.d.ts +267 -0
- package/build/schemas/output/workflow-tools.js +179 -0
- package/build/schemas/structured-output.d.ts +1317 -0
- package/build/schemas/structured-output.js +1017 -0
- package/build/tools/__tests__/start_ui.integration.test.js +5 -5
- package/build/tools/__tests__/start_ui.property.test.js +11 -11
- package/build/tools/add_feature.d.ts +1 -13
- package/build/tools/add_feature.js +48 -13
- package/build/tools/analyze_project.js +57 -18
- package/build/tools/check_deps.d.ts +1 -13
- package/build/tools/check_deps.js +24 -15
- package/build/tools/code_review.d.ts +1 -13
- package/build/tools/code_review.js +19 -16
- package/build/tools/css_order.js +55 -55
- package/build/tools/debug.d.ts +1 -13
- package/build/tools/debug.js +18 -16
- package/build/tools/estimate.d.ts +1 -19
- package/build/tools/estimate.js +36 -6
- package/build/tools/fix_bug.d.ts +1 -13
- package/build/tools/fix_bug.js +24 -6
- package/build/tools/gen_mock.d.ts +1 -19
- package/build/tools/gen_mock.js +42 -227
- package/build/tools/genapi.d.ts +1 -13
- package/build/tools/genapi.js +18 -15
- package/build/tools/genchangelog.d.ts +1 -13
- package/build/tools/genchangelog.js +36 -212
- package/build/tools/gencommit.d.ts +1 -7
- package/build/tools/gencommit.js +21 -13
- package/build/tools/gendoc.d.ts +1 -13
- package/build/tools/gendoc.js +18 -15
- package/build/tools/genpr.d.ts +1 -13
- package/build/tools/genpr.js +28 -157
- package/build/tools/genreadme.d.ts +1 -13
- package/build/tools/genreadme.js +22 -587
- package/build/tools/gensql.d.ts +1 -13
- package/build/tools/gensql.js +24 -283
- package/build/tools/gentest.d.ts +1 -13
- package/build/tools/gentest.js +49 -16
- package/build/tools/index.d.ts +0 -10
- package/build/tools/index.js +0 -10
- package/build/tools/init_component_catalog.d.ts +3 -20
- package/build/tools/init_component_catalog.js +141 -786
- package/build/tools/init_project.d.ts +7 -13
- package/build/tools/init_project.js +54 -16
- package/build/tools/init_project_context.d.ts +1 -13
- package/build/tools/init_project_context.js +41 -14
- package/build/tools/perf.d.ts +1 -13
- package/build/tools/perf.js +18 -15
- package/build/tools/refactor.d.ts +1 -13
- package/build/tools/refactor.js +54 -15
- package/build/tools/render_ui.d.ts +2 -19
- package/build/tools/render_ui.js +201 -347
- package/build/tools/resolve_conflict.d.ts +1 -13
- package/build/tools/resolve_conflict.js +18 -15
- package/build/tools/security_scan.d.ts +1 -13
- package/build/tools/security_scan.js +16 -5
- package/build/tools/start_api.d.ts +7 -13
- package/build/tools/start_api.js +69 -157
- package/build/tools/start_bugfix.d.ts +1 -7
- package/build/tools/start_bugfix.js +38 -2
- package/build/tools/start_doc.d.ts +7 -13
- package/build/tools/start_doc.js +76 -169
- package/build/tools/start_feature.d.ts +1 -7
- package/build/tools/start_feature.js +54 -2
- package/build/tools/start_onboard.d.ts +1 -7
- package/build/tools/start_onboard.js +40 -2
- package/build/tools/start_ralph.d.ts +1 -7
- package/build/tools/start_ralph.js +88 -2
- package/build/tools/start_refactor.d.ts +7 -13
- package/build/tools/start_refactor.js +75 -148
- package/build/tools/start_release.d.ts +7 -13
- package/build/tools/start_release.js +56 -131
- package/build/tools/start_review.d.ts +7 -13
- package/build/tools/start_review.js +70 -142
- package/build/tools/start_ui.d.ts +1 -7
- package/build/tools/start_ui.js +98 -8
- package/build/tools/ui-ux-tools.d.ts +3 -39
- package/build/tools/ui-ux-tools.js +201 -125
- package/docs/data/tools.js +864 -0
- package/docs/index.html +594 -0
- package/docs/pages/all-tools.html +649 -0
- package/docs/pages/examples.html +564 -0
- package/docs/pages/getting-started.html +529 -0
- package/docs/pages/migration.html +308 -0
- package/docs/specs/algorithm-enhancement/roadmap.md +619 -0
- package/docs/specs/vnext-upgrade/00-OVERVIEW.md +258 -0
- package/docs/specs/vnext-upgrade/BETA_RELEASE_GUIDE.md +328 -0
- package/docs/specs/vnext-upgrade/GITHUB_DISCUSSION_TEMPLATE.md +236 -0
- package/docs/specs/vnext-upgrade/M8.9-PROGRESS-UPDATE.md +248 -0
- package/docs/specs/vnext-upgrade/PROGRESS-SUMMARY.md +195 -0
- package/docs/specs/vnext-upgrade/QUICK_REFERENCE.md +338 -0
- package/docs/specs/vnext-upgrade/README.md +125 -0
- package/docs/specs/vnext-upgrade/STATUS-UPDATE-2026-01-26.md +230 -0
- package/docs/specs/vnext-upgrade/TOOL_CLEANUP.md +343 -0
- package/docs/specs/vnext-upgrade/completed/M1-M2-SUMMARY.md +27 -0
- package/docs/specs/vnext-upgrade/completed/M3_COMPLETION_SUMMARY.md +273 -0
- package/docs/specs/vnext-upgrade/completed/M4-SUMMARY.md +19 -0
- package/docs/specs/vnext-upgrade/completed/M5_COMPLETION_SUMMARY.md +0 -0
- package/docs/specs/vnext-upgrade/completed/M8.1-SUMMARY.md +247 -0
- package/docs/specs/vnext-upgrade/completed/M8.2-SUMMARY.md +296 -0
- package/docs/specs/vnext-upgrade/completed/M8.3-SUMMARY.md +241 -0
- package/docs/specs/vnext-upgrade/completed/M8.3-TEST-SUMMARY.md +216 -0
- package/docs/specs/vnext-upgrade/completed/M8.4-SUMMARY.md +217 -0
- package/docs/specs/vnext-upgrade/completed/M8.4-TEST-SUMMARY.md +198 -0
- package/docs/specs/vnext-upgrade/completed/M8.5-SUMMARY.md +202 -0
- package/docs/specs/vnext-upgrade/completed/M8.5-TEST-SUMMARY.md +223 -0
- package/docs/specs/vnext-upgrade/completed/M8.6-SUMMARY.md +299 -0
- package/docs/specs/vnext-upgrade/completed/M8.8-TEST-SUMMARY.md +216 -0
- package/docs/specs/vnext-upgrade/completed/TOOL-CLEANUP-SUMMARY.md +210 -0
- package/docs/specs/vnext-upgrade/design.md +848 -0
- package/docs/specs/vnext-upgrade/requirements.md +221 -0
- package/docs/specs/vnext-upgrade/tasks/00-INDEX.md +335 -0
- package/docs/specs/vnext-upgrade/tasks/M8.1-SCHEMA-DEFINITION.md +300 -0
- package/docs/specs/vnext-upgrade/tasks/M8.2-P1-TOOLS.md +249 -0
- package/docs/specs/vnext-upgrade/tasks/M8.3-GENERATION-TOOLS.md +49 -0
- package/docs/specs/vnext-upgrade/tasks/M8.4-ORCHESTRATION-TOOLS.md +28 -0
- package/docs/specs/vnext-upgrade/tasks/M8.5-PROJECT-TOOLS.md +29 -0
- package/docs/specs/vnext-upgrade/tasks/M8.6-UI-TOOLS.md +66 -0
- package/docs/specs/vnext-upgrade/tasks/M8.7-HELPER-TOOLS.md +24 -0
- package/docs/specs/vnext-upgrade/tasks/M8.8-INTEGRATION-TESTS.md +90 -0
- package/docs/specs/vnext-upgrade/tasks/M8.9-DOCUMENTATION.md +103 -0
- package/docs/styles/docs.css +556 -0
- package/docs/styles/page.css +815 -0
- package/docs/vnext/MCP_2025-11-25_GUIDE.md +276 -0
- package/docs/vnext/vNext-PRD.md +488 -0
- package/package.json +4 -4
- package/build/utils/design-docs-generator.d.ts +0 -1
- package/build/utils/design-docs-generator.js +0 -1
- package/docs/BEST_PRACTICES.md +0 -1185
- package/docs/HOW_TO_TRIGGER.md +0 -1141
- package/docs/MCP-Probe-Kit-/344/275/277/347/224/250/346/211/213/345/206/214.html +0 -544
- package/docs/MCP-Probe-Kit-/344/275/277/347/224/250/346/211/213/345/206/214.md +0 -1447
package/docs/index.html
ADDED
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>MCP Probe Kit - AI 驱动的完整研发工具集 | 39个工具覆盖开发全流程</title>
|
|
7
|
+
|
|
8
|
+
<!-- SEO Meta Tags -->
|
|
9
|
+
<meta name="description" content="MCP Probe Kit 提供 39 个 AI 驱动的研发工具,覆盖需求分析、代码开发、质量保障、Bug修复、版本发布全流程。支持 Cursor、Cline、Claude Desktop,100% 结构化输出。">
|
|
10
|
+
<meta name="keywords" content="MCP Probe Kit, AI开发工具, 代码生成, 代码审查, Git工具, UI开发, 研发效率, Cursor, Cline, Claude, MCP Server">
|
|
11
|
+
<meta name="author" content="小墨 (Kyle) - ByteZoneX">
|
|
12
|
+
<meta name="robots" content="index, follow">
|
|
13
|
+
<link rel="canonical" href="https://mcp-probe-kit.bytezonex.com/">
|
|
14
|
+
<link rel="icon" type="image/x-icon" href="https://www.bytezonex.com/favicon.ico">
|
|
15
|
+
|
|
16
|
+
<!-- Open Graph / Facebook -->
|
|
17
|
+
<meta property="og:type" content="website">
|
|
18
|
+
<meta property="og:url" content="https://mcp-probe-kit.bytezonex.com/">
|
|
19
|
+
<meta property="og:title" content="MCP Probe Kit - AI 驱动的完整研发工具集">
|
|
20
|
+
<meta property="og:description" content="39 个 AI 工具覆盖开发全流程,从需求到上线一站式解决。支持 Cursor、Cline、Claude Desktop。">
|
|
21
|
+
|
|
22
|
+
<!-- Twitter -->
|
|
23
|
+
<meta property="twitter:card" content="summary_large_image">
|
|
24
|
+
<meta property="twitter:url" content="https://mcp-probe-kit.bytezonex.com/">
|
|
25
|
+
<meta property="twitter:title" content="MCP Probe Kit - AI 驱动的完整研发工具集">
|
|
26
|
+
<meta property="twitter:description" content="39 个 AI 工具覆盖开发全流程,从需求到上线一站式解决。">
|
|
27
|
+
<style>
|
|
28
|
+
* {
|
|
29
|
+
margin: 0;
|
|
30
|
+
padding: 0;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
:root {
|
|
35
|
+
/* Light Mode Colors */
|
|
36
|
+
--primary: #2563EB;
|
|
37
|
+
--primary-hover: #1D4ED8;
|
|
38
|
+
--text-primary: #0F172A;
|
|
39
|
+
--text-secondary: #475569;
|
|
40
|
+
--text-tertiary: #64748B;
|
|
41
|
+
--bg-page: #F8FAFC;
|
|
42
|
+
--bg-card: #FFFFFF;
|
|
43
|
+
--bg-hover: #F1F5F9;
|
|
44
|
+
--border: #E2E8F0;
|
|
45
|
+
--border-hover: #CBD5E1;
|
|
46
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
47
|
+
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
|
|
48
|
+
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
body {
|
|
52
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
53
|
+
background: var(--bg-page);
|
|
54
|
+
color: var(--text-primary);
|
|
55
|
+
line-height: 1.6;
|
|
56
|
+
min-height: 100vh;
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* A. 顶部导航栏 */
|
|
62
|
+
.navbar {
|
|
63
|
+
position: sticky;
|
|
64
|
+
top: 0;
|
|
65
|
+
z-index: 100;
|
|
66
|
+
background: rgba(255, 255, 255, 0.95);
|
|
67
|
+
backdrop-filter: blur(10px);
|
|
68
|
+
border-bottom: 1px solid var(--border);
|
|
69
|
+
height: 60px;
|
|
70
|
+
transition: box-shadow 0.2s;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.navbar.scrolled {
|
|
74
|
+
box-shadow: var(--shadow-sm);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.navbar-container {
|
|
78
|
+
max-width: 1200px;
|
|
79
|
+
margin: 0 auto;
|
|
80
|
+
padding: 0 24px;
|
|
81
|
+
height: 100%;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: space-between;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.navbar-brand {
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
gap: 8px;
|
|
91
|
+
font-size: 16px;
|
|
92
|
+
font-weight: 600;
|
|
93
|
+
color: var(--text-primary);
|
|
94
|
+
text-decoration: none;
|
|
95
|
+
transition: color 0.2s;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.navbar-brand:hover {
|
|
99
|
+
color: var(--primary);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.navbar-links {
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
gap: 24px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.navbar-link {
|
|
109
|
+
color: var(--text-secondary);
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
font-size: 14px;
|
|
112
|
+
font-weight: 500;
|
|
113
|
+
transition: color 0.2s;
|
|
114
|
+
display: flex;
|
|
115
|
+
align-items: center;
|
|
116
|
+
gap: 4px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.navbar-link:hover {
|
|
120
|
+
color: var(--primary);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.navbar-link.external::after {
|
|
124
|
+
content: "↗";
|
|
125
|
+
font-size: 12px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* B. Hero 首屏 */
|
|
129
|
+
.hero {
|
|
130
|
+
background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
|
|
131
|
+
color: white;
|
|
132
|
+
padding: 64px 24px;
|
|
133
|
+
text-align: center;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.hero-container {
|
|
137
|
+
max-width: 800px;
|
|
138
|
+
margin: 0 auto;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.hero-title {
|
|
142
|
+
font-size: 48px;
|
|
143
|
+
font-weight: 700;
|
|
144
|
+
margin-bottom: 12px;
|
|
145
|
+
letter-spacing: -0.02em;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.hero-subtitle {
|
|
149
|
+
font-size: 18px;
|
|
150
|
+
opacity: 0.95;
|
|
151
|
+
margin-bottom: 8px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.hero-version {
|
|
155
|
+
display: inline-block;
|
|
156
|
+
background: rgba(255, 255, 255, 0.2);
|
|
157
|
+
padding: 4px 12px;
|
|
158
|
+
border-radius: 12px;
|
|
159
|
+
font-size: 13px;
|
|
160
|
+
font-weight: 600;
|
|
161
|
+
margin-bottom: 32px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.hero-cta {
|
|
165
|
+
display: flex;
|
|
166
|
+
gap: 16px;
|
|
167
|
+
justify-content: center;
|
|
168
|
+
flex-wrap: wrap;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.btn {
|
|
172
|
+
padding: 12px 24px;
|
|
173
|
+
border-radius: 6px;
|
|
174
|
+
font-size: 15px;
|
|
175
|
+
font-weight: 600;
|
|
176
|
+
text-decoration: none;
|
|
177
|
+
transition: all 0.2s;
|
|
178
|
+
display: inline-flex;
|
|
179
|
+
align-items: center;
|
|
180
|
+
gap: 6px;
|
|
181
|
+
cursor: pointer;
|
|
182
|
+
border: none;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.btn-primary {
|
|
186
|
+
background: white;
|
|
187
|
+
color: var(--primary);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.btn-primary:hover {
|
|
191
|
+
transform: translateY(-2px);
|
|
192
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.btn-secondary {
|
|
196
|
+
background: rgba(255, 255, 255, 0.15);
|
|
197
|
+
color: white;
|
|
198
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.btn-secondary:hover {
|
|
202
|
+
background: rgba(255, 255, 255, 0.25);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/* C. 主内容区:2×2 卡片网格 */
|
|
206
|
+
.main-content {
|
|
207
|
+
flex: 1;
|
|
208
|
+
max-width: 1200px;
|
|
209
|
+
margin: 0 auto;
|
|
210
|
+
padding: 48px 24px;
|
|
211
|
+
width: 100%;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.cards-grid {
|
|
215
|
+
display: grid;
|
|
216
|
+
grid-template-columns: repeat(2, 1fr);
|
|
217
|
+
gap: 24px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.card {
|
|
221
|
+
background: var(--bg-card);
|
|
222
|
+
border: 1px solid var(--border);
|
|
223
|
+
border-radius: 8px;
|
|
224
|
+
padding: 24px;
|
|
225
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
226
|
+
box-shadow: var(--shadow-sm);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.card:hover {
|
|
230
|
+
transform: translateY(-4px);
|
|
231
|
+
box-shadow: var(--shadow-lg);
|
|
232
|
+
border-color: var(--primary);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.card-header {
|
|
236
|
+
display: flex;
|
|
237
|
+
align-items: center;
|
|
238
|
+
justify-content: space-between;
|
|
239
|
+
margin-bottom: 12px;
|
|
240
|
+
padding-bottom: 12px;
|
|
241
|
+
border-bottom: 1px solid var(--border);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.card-title {
|
|
245
|
+
display: flex;
|
|
246
|
+
align-items: center;
|
|
247
|
+
gap: 8px;
|
|
248
|
+
font-size: 20px;
|
|
249
|
+
font-weight: 600;
|
|
250
|
+
color: var(--text-primary);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.card-desc {
|
|
254
|
+
color: var(--text-secondary);
|
|
255
|
+
font-size: 14px;
|
|
256
|
+
margin-bottom: 16px;
|
|
257
|
+
line-height: 1.5;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.card-links {
|
|
261
|
+
display: flex;
|
|
262
|
+
flex-direction: column;
|
|
263
|
+
gap: 0;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.card-link {
|
|
267
|
+
display: flex;
|
|
268
|
+
align-items: center;
|
|
269
|
+
justify-content: space-between;
|
|
270
|
+
padding: 10px 12px;
|
|
271
|
+
margin: 0 -12px;
|
|
272
|
+
color: var(--text-primary);
|
|
273
|
+
text-decoration: none;
|
|
274
|
+
font-size: 14px;
|
|
275
|
+
font-weight: 500;
|
|
276
|
+
border-radius: 6px;
|
|
277
|
+
transition: all 0.2s;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.card-link:hover {
|
|
281
|
+
background: var(--bg-hover);
|
|
282
|
+
color: var(--primary);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.card-link:hover .link-arrow {
|
|
286
|
+
transform: translateX(4px);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.link-content {
|
|
290
|
+
display: flex;
|
|
291
|
+
align-items: center;
|
|
292
|
+
gap: 8px;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.link-arrow {
|
|
296
|
+
color: var(--text-tertiary);
|
|
297
|
+
transition: transform 0.2s;
|
|
298
|
+
font-size: 16px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.badge {
|
|
302
|
+
background: var(--bg-hover);
|
|
303
|
+
color: var(--text-secondary);
|
|
304
|
+
padding: 2px 8px;
|
|
305
|
+
border-radius: 10px;
|
|
306
|
+
font-size: 12px;
|
|
307
|
+
font-weight: 600;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.external-icon {
|
|
311
|
+
font-size: 12px;
|
|
312
|
+
color: var(--text-tertiary);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/* D. Footer */
|
|
316
|
+
.footer {
|
|
317
|
+
background: var(--bg-card);
|
|
318
|
+
border-top: 1px solid var(--border);
|
|
319
|
+
padding: 24px;
|
|
320
|
+
margin-top: auto;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.footer-container {
|
|
324
|
+
max-width: 1200px;
|
|
325
|
+
margin: 0 auto;
|
|
326
|
+
display: flex;
|
|
327
|
+
justify-content: space-between;
|
|
328
|
+
align-items: center;
|
|
329
|
+
flex-wrap: wrap;
|
|
330
|
+
gap: 16px;
|
|
331
|
+
font-size: 14px;
|
|
332
|
+
color: var(--text-secondary);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.footer a {
|
|
336
|
+
color: var(--primary);
|
|
337
|
+
text-decoration: none;
|
|
338
|
+
transition: color 0.2s;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.footer a:hover {
|
|
342
|
+
color: var(--primary-hover);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/* 响应式 */
|
|
346
|
+
@media (max-width: 1023px) {
|
|
347
|
+
.cards-grid {
|
|
348
|
+
grid-template-columns: repeat(2, 1fr);
|
|
349
|
+
gap: 20px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.main-content {
|
|
353
|
+
padding: 40px 20px;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
@media (max-width: 639px) {
|
|
358
|
+
.navbar-links {
|
|
359
|
+
gap: 16px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.navbar-link {
|
|
363
|
+
font-size: 13px;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.navbar-link span {
|
|
367
|
+
display: none;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.hero {
|
|
371
|
+
padding: 48px 20px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.hero-title {
|
|
375
|
+
font-size: 32px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.hero-subtitle {
|
|
379
|
+
font-size: 16px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.hero-cta {
|
|
383
|
+
flex-direction: column;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.btn {
|
|
387
|
+
width: 100%;
|
|
388
|
+
justify-content: center;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.cards-grid {
|
|
392
|
+
grid-template-columns: 1fr;
|
|
393
|
+
gap: 16px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.main-content {
|
|
397
|
+
padding: 32px 16px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.card {
|
|
401
|
+
padding: 20px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.footer-container {
|
|
405
|
+
flex-direction: column;
|
|
406
|
+
text-align: center;
|
|
407
|
+
gap: 8px;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/* 可访问性 */
|
|
412
|
+
a:focus, button:focus {
|
|
413
|
+
outline: 2px solid var(--primary);
|
|
414
|
+
outline-offset: 2px;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/* 滚动行为 */
|
|
418
|
+
html {
|
|
419
|
+
scroll-behavior: smooth;
|
|
420
|
+
}
|
|
421
|
+
</style>
|
|
422
|
+
</head>
|
|
423
|
+
<body>
|
|
424
|
+
<!-- A. 顶部导航栏 -->
|
|
425
|
+
<nav class="navbar" id="navbar">
|
|
426
|
+
<div class="navbar-container">
|
|
427
|
+
<a href="./index.html" class="navbar-brand">
|
|
428
|
+
<span>🚀</span>
|
|
429
|
+
<span>MCP Probe Kit</span>
|
|
430
|
+
</a>
|
|
431
|
+
<div class="navbar-links">
|
|
432
|
+
<a href="./pages/all-tools.html" class="navbar-link">文档</a>
|
|
433
|
+
<a href="https://www.bytezonex.com/" target="_blank" rel="noopener" class="navbar-link external">
|
|
434
|
+
<span>主站</span> ByteZoneX
|
|
435
|
+
</a>
|
|
436
|
+
<a href="https://github.com/mybolide/mcp-probe-kit" target="_blank" rel="noopener" class="navbar-link external">
|
|
437
|
+
GitHub
|
|
438
|
+
</a>
|
|
439
|
+
<a href="https://www.npmjs.com/package/mcp-probe-kit" target="_blank" rel="noopener" class="navbar-link external">
|
|
440
|
+
npm
|
|
441
|
+
</a>
|
|
442
|
+
</div>
|
|
443
|
+
</div>
|
|
444
|
+
</nav>
|
|
445
|
+
|
|
446
|
+
<!-- B. Hero 首屏 -->
|
|
447
|
+
<section class="hero">
|
|
448
|
+
<div class="hero-container">
|
|
449
|
+
<h1 class="hero-title">🚀 MCP Probe Kit</h1>
|
|
450
|
+
<p class="hero-subtitle">AI 开发增强工具集 · 文档中心</p>
|
|
451
|
+
<div class="hero-version">v2.0.0</div>
|
|
452
|
+
<div class="hero-cta">
|
|
453
|
+
<a href="./pages/getting-started.html" class="btn btn-primary">快速开始</a>
|
|
454
|
+
<a href="https://www.bytezonex.com/" target="_blank" rel="noopener" class="btn btn-secondary">
|
|
455
|
+
访问主站 ByteZoneX ↗
|
|
456
|
+
</a>
|
|
457
|
+
</div>
|
|
458
|
+
</div>
|
|
459
|
+
</section>
|
|
460
|
+
|
|
461
|
+
<!-- C. 主内容区:2×2 卡片网格 -->
|
|
462
|
+
<main class="main-content">
|
|
463
|
+
<div class="cards-grid">
|
|
464
|
+
<!-- 1. 快速开始 -->
|
|
465
|
+
<article class="card">
|
|
466
|
+
<div class="card-header">
|
|
467
|
+
<h2 class="card-title">
|
|
468
|
+
<span>📖</span>
|
|
469
|
+
<span>快速开始</span>
|
|
470
|
+
</h2>
|
|
471
|
+
</div>
|
|
472
|
+
<p class="card-desc">5 分钟快速上手 MCP Probe Kit v2.0</p>
|
|
473
|
+
<nav class="card-links">
|
|
474
|
+
<a href="./pages/getting-started.html" class="card-link">
|
|
475
|
+
<span>安装配置</span>
|
|
476
|
+
<span class="link-arrow">→</span>
|
|
477
|
+
</a>
|
|
478
|
+
</nav>
|
|
479
|
+
</article>
|
|
480
|
+
|
|
481
|
+
<!-- 2. 工具文档 -->
|
|
482
|
+
<article class="card">
|
|
483
|
+
<div class="card-header">
|
|
484
|
+
<h2 class="card-title">
|
|
485
|
+
<span>🛠️</span>
|
|
486
|
+
<span>工具文档</span>
|
|
487
|
+
</h2>
|
|
488
|
+
</div>
|
|
489
|
+
<p class="card-desc">39 个实用工具的完整参考</p>
|
|
490
|
+
<nav class="card-links">
|
|
491
|
+
<a href="./pages/all-tools.html" class="card-link">
|
|
492
|
+
<div class="link-content">
|
|
493
|
+
<span>所有工具</span>
|
|
494
|
+
<span class="badge">39</span>
|
|
495
|
+
</div>
|
|
496
|
+
<span class="link-arrow">→</span>
|
|
497
|
+
</a>
|
|
498
|
+
</nav>
|
|
499
|
+
</article>
|
|
500
|
+
|
|
501
|
+
<!-- 3. 指南 -->
|
|
502
|
+
<article class="card">
|
|
503
|
+
<div class="card-header">
|
|
504
|
+
<h2 class="card-title">
|
|
505
|
+
<span>📚</span>
|
|
506
|
+
<span>指南</span>
|
|
507
|
+
</h2>
|
|
508
|
+
</div>
|
|
509
|
+
<p class="card-desc">迁移指南和最佳实践</p>
|
|
510
|
+
<nav class="card-links">
|
|
511
|
+
<a href="./pages/migration.html" class="card-link">
|
|
512
|
+
<span>v1.x → v2.0 迁移指南</span>
|
|
513
|
+
<span class="link-arrow">→</span>
|
|
514
|
+
</a>
|
|
515
|
+
<a href="./pages/examples.html" class="card-link">
|
|
516
|
+
<span>最佳实践</span>
|
|
517
|
+
<span class="link-arrow">→</span>
|
|
518
|
+
</a>
|
|
519
|
+
</nav>
|
|
520
|
+
</article>
|
|
521
|
+
|
|
522
|
+
<!-- 4. 资源 -->
|
|
523
|
+
<article class="card">
|
|
524
|
+
<div class="card-header">
|
|
525
|
+
<h2 class="card-title">
|
|
526
|
+
<span>🔗</span>
|
|
527
|
+
<span>资源</span>
|
|
528
|
+
</h2>
|
|
529
|
+
</div>
|
|
530
|
+
<p class="card-desc">源代码和社区支持</p>
|
|
531
|
+
<nav class="card-links">
|
|
532
|
+
<a href="https://www.bytezonex.com/" target="_blank" rel="noopener" class="card-link">
|
|
533
|
+
<div class="link-content">
|
|
534
|
+
<span>ByteZoneX 主站</span>
|
|
535
|
+
<span class="external-icon">↗</span>
|
|
536
|
+
</div>
|
|
537
|
+
<span class="link-arrow">→</span>
|
|
538
|
+
</a>
|
|
539
|
+
<a href="https://github.com/mybolide/mcp-probe-kit" target="_blank" rel="noopener" class="card-link">
|
|
540
|
+
<div class="link-content">
|
|
541
|
+
<span>GitHub 仓库</span>
|
|
542
|
+
<span class="external-icon">↗</span>
|
|
543
|
+
</div>
|
|
544
|
+
<span class="link-arrow">→</span>
|
|
545
|
+
</a>
|
|
546
|
+
<a href="https://www.npmjs.com/package/mcp-probe-kit" target="_blank" rel="noopener" class="card-link">
|
|
547
|
+
<div class="link-content">
|
|
548
|
+
<span>npm 包</span>
|
|
549
|
+
<span class="external-icon">↗</span>
|
|
550
|
+
</div>
|
|
551
|
+
<span class="link-arrow">→</span>
|
|
552
|
+
</a>
|
|
553
|
+
<a href="https://github.com/mybolide/mcp-probe-kit/issues" target="_blank" rel="noopener" class="card-link">
|
|
554
|
+
<div class="link-content">
|
|
555
|
+
<span>问题反馈</span>
|
|
556
|
+
<span class="external-icon">↗</span>
|
|
557
|
+
</div>
|
|
558
|
+
<span class="link-arrow">→</span>
|
|
559
|
+
</a>
|
|
560
|
+
</nav>
|
|
561
|
+
</article>
|
|
562
|
+
</div>
|
|
563
|
+
</main>
|
|
564
|
+
|
|
565
|
+
<!-- D. Footer -->
|
|
566
|
+
<footer class="footer">
|
|
567
|
+
<div class="footer-container">
|
|
568
|
+
<div>Made with ❤️ by <a href="https://www.bytezonex.com/" target="_blank" rel="noopener">小墨 (Kyle)</a></div>
|
|
569
|
+
<div>
|
|
570
|
+
© 2024-2026 MCP Probe Kit · MIT License ·
|
|
571
|
+
<a href="https://www.bytezonex.com/" target="_blank" rel="noopener">主站 ByteZoneX ↗</a>
|
|
572
|
+
</div>
|
|
573
|
+
</div>
|
|
574
|
+
</footer>
|
|
575
|
+
|
|
576
|
+
<script>
|
|
577
|
+
// 导航栏滚动效果
|
|
578
|
+
const navbar = document.getElementById('navbar');
|
|
579
|
+
let lastScroll = 0;
|
|
580
|
+
|
|
581
|
+
window.addEventListener('scroll', () => {
|
|
582
|
+
const currentScroll = window.pageYOffset;
|
|
583
|
+
|
|
584
|
+
if (currentScroll > 10) {
|
|
585
|
+
navbar.classList.add('scrolled');
|
|
586
|
+
} else {
|
|
587
|
+
navbar.classList.remove('scrolled');
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
lastScroll = currentScroll;
|
|
591
|
+
});
|
|
592
|
+
</script>
|
|
593
|
+
</body>
|
|
594
|
+
</html>
|