mcp-probe-kit 3.0.24 → 3.2.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 +755 -779
- package/build/index.js +42 -41
- package/build/lib/__tests__/spec-validator.unit.test.js +115 -0
- package/build/lib/agents-md-template.js +32 -32
- package/build/lib/memory-orchestration.js +29 -8
- package/build/lib/skill-bridge.js +12 -12
- package/build/lib/spec-validator.d.ts +36 -0
- package/build/lib/spec-validator.js +103 -0
- package/build/lib/template-loader.js +149 -47
- package/build/lib/tool-annotations.d.ts +30 -0
- package/build/lib/tool-annotations.js +55 -0
- package/build/lib/toolset-manager.js +2 -0
- package/build/resources/index.d.ts +4 -0
- package/build/resources/index.js +4 -0
- package/build/resources/tool-params-guide.d.ts +571 -0
- package/build/resources/tool-params-guide.js +488 -0
- package/build/resources/ui-ux-data/guidelines/vercel-web-interface.json +1632 -1632
- package/build/resources/ui-ux-data/metadata.json +30 -30
- package/build/resources/ui-ux-data/shadcn/blocks.json +2541 -2541
- package/build/resources/ui-ux-data/shadcn/components.json +997 -997
- package/build/resources/ui-ux-data/themes/presets.json +483 -483
- package/build/schemas/index.d.ts +22 -22
- package/build/schemas/memory-tools.d.ts +0 -22
- package/build/schemas/memory-tools.js +0 -14
- package/build/schemas/project-tools.d.ts +22 -0
- package/build/schemas/project-tools.js +23 -0
- package/build/tools/analyze_project.d.ts +1 -0
- package/build/tools/analyze_project.js +527 -0
- package/build/tools/check_deps.d.ts +13 -0
- package/build/tools/check_deps.js +204 -0
- package/build/tools/check_spec.d.ts +7 -0
- package/build/tools/check_spec.js +81 -0
- package/build/tools/code_insight.js +41 -41
- package/build/tools/convert.d.ts +13 -0
- package/build/tools/convert.js +599 -0
- package/build/tools/css_order.d.ts +13 -0
- package/build/tools/css_order.js +81 -0
- package/build/tools/debug.d.ts +13 -0
- package/build/tools/debug.js +131 -0
- package/build/tools/design2code.d.ts +20 -0
- package/build/tools/design2code.js +426 -0
- package/build/tools/detect_shell.d.ts +6 -0
- package/build/tools/detect_shell.js +151 -0
- package/build/tools/explain.d.ts +13 -0
- package/build/tools/explain.js +390 -0
- package/build/tools/fix.d.ts +13 -0
- package/build/tools/fix.js +303 -0
- package/build/tools/fix_bug.js +161 -161
- package/build/tools/gen_mock.d.ts +22 -0
- package/build/tools/gen_mock.js +269 -0
- package/build/tools/gen_skill.d.ts +13 -0
- package/build/tools/gen_skill.js +560 -0
- package/build/tools/genapi.d.ts +13 -0
- package/build/tools/genapi.js +174 -0
- package/build/tools/genchangelog.d.ts +13 -0
- package/build/tools/genchangelog.js +250 -0
- package/build/tools/gencommit.js +60 -60
- package/build/tools/gendoc.d.ts +13 -0
- package/build/tools/gendoc.js +232 -0
- package/build/tools/genpr.d.ts +13 -0
- package/build/tools/genpr.js +194 -0
- package/build/tools/genreadme.d.ts +13 -0
- package/build/tools/genreadme.js +626 -0
- package/build/tools/gensql.d.ts +13 -0
- package/build/tools/gensql.js +320 -0
- package/build/tools/genui.d.ts +13 -0
- package/build/tools/genui.js +803 -0
- package/build/tools/index.d.ts +1 -1
- package/build/tools/index.js +1 -1
- package/build/tools/init_component_catalog.d.ts +22 -0
- package/build/tools/init_component_catalog.js +809 -0
- package/build/tools/init_project_context.js +432 -432
- package/build/tools/init_setting.d.ts +13 -0
- package/build/tools/init_setting.js +47 -0
- package/build/tools/perf.d.ts +13 -0
- package/build/tools/perf.js +409 -0
- package/build/tools/render_ui.d.ts +22 -0
- package/build/tools/render_ui.js +384 -0
- package/build/tools/resolve_conflict.d.ts +13 -0
- package/build/tools/resolve_conflict.js +349 -0
- package/build/tools/security_scan.d.ts +22 -0
- package/build/tools/security_scan.js +323 -0
- package/build/tools/split.d.ts +13 -0
- package/build/tools/split.js +599 -0
- package/build/tools/start_api.d.ts +13 -0
- package/build/tools/start_api.js +193 -0
- package/build/tools/start_bugfix.js +254 -243
- package/build/tools/start_doc.d.ts +13 -0
- package/build/tools/start_doc.js +207 -0
- package/build/tools/start_feature.js +162 -127
- package/build/tools/start_product.js +1 -1
- package/build/tools/start_refactor.d.ts +13 -0
- package/build/tools/start_refactor.js +188 -0
- package/build/tools/start_release.d.ts +13 -0
- package/build/tools/start_release.js +167 -0
- package/build/tools/start_review.d.ts +13 -0
- package/build/tools/start_review.js +175 -0
- package/build/tools/start_ui.js +426 -412
- package/build/tools/ui-ux-tools.js +290 -290
- package/build/utils/__tests__/vercel-guidelines-sync.unit.test.js +12 -12
- package/build/utils/themes-sync.js +8 -8
- package/package.json +81 -83
- package/build/lib/__tests__/memory-orchestration.unit.test.js +0 -88
- package/build/lib/__tests__/memory-payload.unit.test.js +0 -35
- package/build/lib/cursor-history-client.d.ts +0 -54
- package/build/lib/cursor-history-client.js +0 -240
- package/build/tools/__tests__/cursor-history.unit.test.js +0 -38
- package/build/tools/cursor_read_conversation.d.ts +0 -7
- package/build/tools/cursor_read_conversation.js +0 -36
- package/docs/.mcp-probe/layout.json +0 -11
- package/docs/CNAME +0 -1
- package/docs/assets/font/MaterialSymbolsOutlined.codepoints +0 -4102
- package/docs/assets/font/MaterialSymbolsOutlined.ttf +0 -0
- package/docs/assets/font/noto-sans-sc-400.ttf +0 -0
- package/docs/assets/font/noto-sans-sc-700.ttf +0 -0
- package/docs/assets/font/noto-sans-sc-900.ttf +0 -0
- package/docs/assets/js/i18n.js +0 -375
- package/docs/assets/js/tailwind.js +0 -83
- package/docs/assets/logo-zh.png +0 -0
- package/docs/assets/logo.png +0 -0
- package/docs/data/tools.js +0 -523
- package/docs/i18n/all-tools/en.json +0 -190
- package/docs/i18n/all-tools/ja.json +0 -171
- package/docs/i18n/all-tools/ko.json +0 -171
- package/docs/i18n/all-tools/zh-CN.json +0 -190
- package/docs/i18n/en.json +0 -626
- package/docs/i18n/ja.json +0 -602
- package/docs/i18n/ko.json +0 -602
- package/docs/i18n/zh-CN.json +0 -626
- package/docs/index.html +0 -327
- package/docs/memory-local-setup.md +0 -315
- package/docs/memory-local-setup.zh-CN.md +0 -283
- package/docs/pages/all-tools.html +0 -515
- package/docs/pages/examples.html +0 -717
- package/docs/pages/getting-started.html +0 -964
- package/docs/pages/migration.html +0 -308
- package/docs/specs/user-auth/design.md +0 -82
- package/docs/specs/user-auth/requirements.md +0 -52
- package/docs/specs/user-auth/tasks.md +0 -55
- /package/build/lib/__tests__/{memory-orchestration.unit.test.d.ts → spec-validator.unit.test.d.ts} +0 -0
- /package/build/{lib/__tests__/memory-payload.unit.test.d.ts → utils/design-docs-generator.d.ts} +0 -0
- /package/build/{tools/__tests__/cursor-history.unit.test.d.ts → utils/design-docs-generator.js} +0 -0
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta": {
|
|
3
|
-
"title": "All Tools - Complete List of 27 AI Development Tools | MCP Probe Kit",
|
|
4
|
-
"description": "MCP Probe Kit complete tool list: 6 workflow orchestration tools, 4 code analysis tools, 2 Git tools, 1 generation tool, 6 project management tools, 3 UI/UX tools, and 5 memory/Cursor history tools.",
|
|
5
|
-
"keywords": "AI development tools, code generation tools, code review tools, Git automation, UI generation, code refactoring, performance optimization, security scanning"
|
|
6
|
-
},
|
|
7
|
-
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit provides 27 practical tools with structured output support for core and orchestration tools"
|
|
9
|
-
},
|
|
10
|
-
"search": {
|
|
11
|
-
"placeholder": "🔍 Search tool name or description...",
|
|
12
|
-
"found": "Found {count} matching tools",
|
|
13
|
-
"noResults": "No matching tools found"
|
|
14
|
-
},
|
|
15
|
-
"footer": {
|
|
16
|
-
"lastUpdate": "Last Update",
|
|
17
|
-
"protocol": "Protocol",
|
|
18
|
-
"sdk": "SDK",
|
|
19
|
-
"editPage": "Edit this page",
|
|
20
|
-
"reportIssue": "Report Issue"
|
|
21
|
-
},
|
|
22
|
-
"toolShortDesc": {
|
|
23
|
-
"start_feature": "New Feature",
|
|
24
|
-
"start_bugfix": "Fix Bug",
|
|
25
|
-
"start_onboard": "Quick Start",
|
|
26
|
-
"start_ralph": "Loop Dev",
|
|
27
|
-
"start_product": "Product Design",
|
|
28
|
-
"start_ui": "UI Dev",
|
|
29
|
-
"code_review": "Code Review",
|
|
30
|
-
"fix_bug": "Fix Bug",
|
|
31
|
-
"refactor": "Refactor",
|
|
32
|
-
"gencommit": "Gen Commit",
|
|
33
|
-
"gentest": "Gen Test",
|
|
34
|
-
"git_work_report": "Work Report",
|
|
35
|
-
"init_project": "Init Project",
|
|
36
|
-
"init_project_context": "Project Context",
|
|
37
|
-
"add_feature": "Add Feature",
|
|
38
|
-
"estimate": "Estimate",
|
|
39
|
-
"interview": "Interview",
|
|
40
|
-
"ask_user": "Ask User",
|
|
41
|
-
"ui_design_system": "Design System",
|
|
42
|
-
"ui_search": "Search UI",
|
|
43
|
-
"code_insight": "Code Insight",
|
|
44
|
-
"search_memory": "Search Memory",
|
|
45
|
-
"read_memory_asset": "Read Memory",
|
|
46
|
-
"memorize_asset": "Store Memory",
|
|
47
|
-
"scan_and_extract_patterns": "Extract Patterns",
|
|
48
|
-
"cursor_read_conversation": "Read Chat"
|
|
49
|
-
},
|
|
50
|
-
"categories": {
|
|
51
|
-
"workflow": {
|
|
52
|
-
"title": "Workflow Orchestration",
|
|
53
|
-
"count": "6 tools"
|
|
54
|
-
},
|
|
55
|
-
"analysis": {
|
|
56
|
-
"title": "Code Analysis",
|
|
57
|
-
"count": "4 tools"
|
|
58
|
-
},
|
|
59
|
-
"git": {
|
|
60
|
-
"title": "Git Tools",
|
|
61
|
-
"count": "2 tools"
|
|
62
|
-
},
|
|
63
|
-
"generation": {
|
|
64
|
-
"title": "Code Generation",
|
|
65
|
-
"count": "1 tool"
|
|
66
|
-
},
|
|
67
|
-
"project": {
|
|
68
|
-
"title": "Project Management",
|
|
69
|
-
"count": "6 tools"
|
|
70
|
-
},
|
|
71
|
-
"uiux": {
|
|
72
|
-
"title": "UI/UX Design",
|
|
73
|
-
"count": "3 tools"
|
|
74
|
-
},
|
|
75
|
-
"memory": {
|
|
76
|
-
"title": "Memory & Cursor History",
|
|
77
|
-
"count": "7 tools"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"toolsData": {
|
|
81
|
-
"start_feature": {
|
|
82
|
-
"description": "Complete feature development workflow orchestration: bootstrap graph baseline → refresh GitNexus index → narrow scope → generate specs → estimate workload",
|
|
83
|
-
"usage": "Used to start the full feature flow, backfill graph-insights when missing, then use GitNexus query/context/impact analysis to narrow scope before spec and estimation"
|
|
84
|
-
},
|
|
85
|
-
"start_bugfix": {
|
|
86
|
-
"description": "Bug fix workflow orchestration: bootstrap graph baseline → refresh GitNexus index → narrow failure boundary → TBP 8-step root-cause analysis → fix plan → generate tests",
|
|
87
|
-
"usage": "Use it for bugs, regressions, and anomalies; it backfills graph-insights first and uses GitNexus to constrain boundary and impact before TBP RCA"
|
|
88
|
-
},
|
|
89
|
-
"start_onboard": {
|
|
90
|
-
"description": "Project onboarding workflow: generate context documentation to help new members quickly understand the project",
|
|
91
|
-
"usage": "Help new members quickly understand project structure, tech stack, and development standards"
|
|
92
|
-
},
|
|
93
|
-
"start_ralph": {
|
|
94
|
-
"description": "Ralph Wiggum Loop automated development, start loop development process with multiple safety protections enabled by default",
|
|
95
|
-
"usage": "Start automated loop development, AI will continuously iterate until goal is achieved or safety limits are reached"
|
|
96
|
-
},
|
|
97
|
-
"start_product": {
|
|
98
|
-
"description": "Complete product design workflow orchestration: PRD → prototype docs → design system → HTML prototype → project context update",
|
|
99
|
-
"usage": "One-click completion from requirements to HTML prototype, generating directly demonstrable product prototypes"
|
|
100
|
-
},
|
|
101
|
-
"start_ui": {
|
|
102
|
-
"description": "Unified UI development entry: check design system → generate component catalog → search/generate templates → render code",
|
|
103
|
-
"usage": "One-click completion of entire UI development process, from design system to final code"
|
|
104
|
-
},
|
|
105
|
-
"code_review": {
|
|
106
|
-
"description": "Intelligent code review, analyzing code from multiple dimensions including security, performance, quality, style, and best practices",
|
|
107
|
-
"usage": "Comprehensive code quality review, outputting structured issue list (severity/category/suggestion)"
|
|
108
|
-
},
|
|
109
|
-
"fix_bug": {
|
|
110
|
-
"description": "TBP 8-step bug RCA and repair guidance with evidence chain, fix plan, test plan, and prevention measures",
|
|
111
|
-
"usage": "Use it when you need to find the true cause first and close the chain from symptom and boundary to repair"
|
|
112
|
-
},
|
|
113
|
-
"refactor": {
|
|
114
|
-
"description": "Refactoring suggestion tool, analyzing code structure, providing refactoring steps, risk assessment, and rollback plan",
|
|
115
|
-
"usage": "Analyze code structure, provide refactoring suggestions, refactoring steps, and risk assessment"
|
|
116
|
-
},
|
|
117
|
-
"gencommit": {
|
|
118
|
-
"description": "Automatically generate Git commit messages compliant with Conventional Commits specification based on code changes",
|
|
119
|
-
"usage": "Generate commit messages compliant with Conventional Commits specification based on code changes"
|
|
120
|
-
},
|
|
121
|
-
"git_work_report": {
|
|
122
|
-
"description": "Generate work reports (daily/periodic) based on Git diff analysis, intelligently extracting actual work content",
|
|
123
|
-
"usage": "Automatically read Git commits for specified dates, analyze diff content, generate concise professional work reports. If direct command fails, provides temporary script solution (auto-deleted after execution)"
|
|
124
|
-
},
|
|
125
|
-
"gentest": {
|
|
126
|
-
"description": "Generate unit tests, supporting Jest/Vitest/Mocha frameworks, including edge cases and mock data",
|
|
127
|
-
"usage": "Generate unit test code, including edge cases and mocks"
|
|
128
|
-
},
|
|
129
|
-
"init_project": {
|
|
130
|
-
"description": "Generate requirement/design/task documents following Spec-Driven Development approach",
|
|
131
|
-
"usage": "Generate requirement/design/task documents following Spec-Driven Development approach"
|
|
132
|
-
},
|
|
133
|
-
"init_project_context": {
|
|
134
|
-
"description": "Generate or maintain project context documentation and bootstrap graph-insights entry points",
|
|
135
|
-
"usage": "Creates context docs for new projects; if project-context.md already exists, it preserves the old docs and only backfills graph-insights plus the index entry"
|
|
136
|
-
},
|
|
137
|
-
"add_feature": {
|
|
138
|
-
"description": "Generate new feature specification documents (requirements/design/task list) based on project context",
|
|
139
|
-
"usage": "Generate new feature specification documents (requirements/design/task list) based on project context"
|
|
140
|
-
},
|
|
141
|
-
"estimate": {
|
|
142
|
-
"description": "Estimate development workload, output story points, time range (optimistic/normal/pessimistic), risk points",
|
|
143
|
-
"usage": "Estimate development workload, output story points, time range (optimistic/normal/pessimistic), risk points"
|
|
144
|
-
},
|
|
145
|
-
"interview": {
|
|
146
|
-
"description": "Requirements interview tool, clarifying requirements through structured questioning to avoid misunderstandings and rework",
|
|
147
|
-
"usage": "Requirements interview tool, clarifying requirements through structured questioning before development"
|
|
148
|
-
},
|
|
149
|
-
"ask_user": {
|
|
150
|
-
"description": "AI proactive questioning tool, supporting single or multiple questions, providing options, marking importance",
|
|
151
|
-
"usage": "AI proactively asks users questions, supporting single or multiple questions, providing options, marking importance"
|
|
152
|
-
},
|
|
153
|
-
"ui_design_system": {
|
|
154
|
-
"description": "Intelligent design system generator, generating complete design specifications based on product type reasoning",
|
|
155
|
-
"usage": "Based on product type and requirements, use AI reasoning engine to generate complete design system recommendations"
|
|
156
|
-
},
|
|
157
|
-
"ui_search": {
|
|
158
|
-
"description": "Search UI/UX database, including colors, icons, charts, components, design patterns, etc.",
|
|
159
|
-
"usage": "Search UI/UX database using BM25 algorithm for intelligent search"
|
|
160
|
-
},
|
|
161
|
-
"sync_ui_data": {
|
|
162
|
-
"description": "Sync UI/UX data to local cache, supporting automatic update checking and forced sync",
|
|
163
|
-
"usage": "Sync UI/UX data to local cache, downloading latest data from npm package uipro-cli"
|
|
164
|
-
},
|
|
165
|
-
"code_insight": {
|
|
166
|
-
"description": "Code graph insight tool, bridging GitNexus to analyze call chains, context, and impact (auto-degrades when unavailable)",
|
|
167
|
-
"usage": "Refresh the GitNexus index, perform task-level call-chain/context/impact analysis, and persist results to docs/graph-insights plus the project-context index"
|
|
168
|
-
},
|
|
169
|
-
"search_memory": {
|
|
170
|
-
"description": "Semantic search across the shared memory pool, with optional type/tags preference",
|
|
171
|
-
"usage": "Use outside start_* to find historical bugfixes or patterns; text output includes id/score/summary/description and a --- content --- body (default 1500 chars; use read_memory_asset for unlimited full text)"
|
|
172
|
-
},
|
|
173
|
-
"read_memory_asset": {
|
|
174
|
-
"description": "Read the full content and metadata of a stored memory asset by asset ID",
|
|
175
|
-
"usage": "Use after search_memory or orchestration hits; text output includes the full --- content --- body plus structuredContent.asset"
|
|
176
|
-
},
|
|
177
|
-
"memorize_asset": {
|
|
178
|
-
"description": "Persist high-value code, spec, or pattern assets into the vector memory system for later reuse",
|
|
179
|
-
"usage": "Use after implementation to store reusable assets into the Qdrant + embedding memory backend"
|
|
180
|
-
},
|
|
181
|
-
"scan_and_extract_patterns": {
|
|
182
|
-
"description": "Extract reusable patterns from a code snippet, file, or directory before deciding whether to store them into memory",
|
|
183
|
-
"usage": "Use for pattern mining first, then optionally follow with memorize_asset to persist the best candidates"
|
|
184
|
-
},
|
|
185
|
-
"cursor_read_conversation": {
|
|
186
|
-
"description": "Read the full local Cursor conversation timeline for a single composer_id",
|
|
187
|
-
"usage": "Useful for precisely resuming a specific historical conversation and reviewing message order and context"
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta": {
|
|
3
|
-
"title": "すべてのツール - 27個のAI開発ツール完全リスト | MCP Probe Kit",
|
|
4
|
-
"description": "MCP Probe Kit 完全ツールリスト:6個のワークフローオーケストレーションツール、4個のコード分析ツール、2個のGitツール、1個の生成ツール、6個のプロジェクト管理ツール、3個のUI/UXツール、5個の Memory / Cursor History ツール。",
|
|
5
|
-
"keywords": "AI開発ツール, コード生成ツール, コードレビューツール, Git自動化, UI生成, コードリファクタリング, パフォーマンス最適化, セキュリティスキャン"
|
|
6
|
-
},
|
|
7
|
-
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kitは27個の実用的なツールを提供し、コアおよびオーケストレーションツールは構造化出力をサポートします"
|
|
9
|
-
},
|
|
10
|
-
"search": {
|
|
11
|
-
"placeholder": "🔍 ツール名または説明を検索...",
|
|
12
|
-
"found": "{count}個の一致するツールが見つかりました",
|
|
13
|
-
"noResults": "一致するツールが見つかりません"
|
|
14
|
-
},
|
|
15
|
-
"footer": {
|
|
16
|
-
"lastUpdate": "最終更新",
|
|
17
|
-
"protocol": "プロトコル",
|
|
18
|
-
"sdk": "SDK",
|
|
19
|
-
"editPage": "このページを編集",
|
|
20
|
-
"reportIssue": "問題を報告"
|
|
21
|
-
},
|
|
22
|
-
"toolShortDesc": {
|
|
23
|
-
"start_feature": "新機能",
|
|
24
|
-
"start_bugfix": "バグ修正",
|
|
25
|
-
"start_onboard": "クイックスタート",
|
|
26
|
-
"start_ralph": "ループ開発",
|
|
27
|
-
"start_product": "製品設計",
|
|
28
|
-
"start_ui": "UI開発",
|
|
29
|
-
"code_review": "コードレビュー",
|
|
30
|
-
"fix_bug": "バグ修正",
|
|
31
|
-
"refactor": "リファクタリング",
|
|
32
|
-
"gencommit": "コミット生成",
|
|
33
|
-
"gentest": "テスト生成",
|
|
34
|
-
"git_work_report": "作業報告",
|
|
35
|
-
"init_project": "初期化",
|
|
36
|
-
"init_project_context": "プロジェクトコンテキスト",
|
|
37
|
-
"add_feature": "機能追加",
|
|
38
|
-
"estimate": "見積もり",
|
|
39
|
-
"interview": "要件インタビュー",
|
|
40
|
-
"ask_user": "ユーザーに質問",
|
|
41
|
-
"ui_design_system": "デザインシステム",
|
|
42
|
-
"ui_search": "UI検索",
|
|
43
|
-
"sync_ui_data": "データ同期",
|
|
44
|
-
"code_insight": "コード洞察",
|
|
45
|
-
"search_memory": "メモリ検索",
|
|
46
|
-
"read_memory_asset": "メモリ読取",
|
|
47
|
-
"memorize_asset": "メモリ保存",
|
|
48
|
-
"scan_and_extract_patterns": "パターン抽出",
|
|
49
|
-
"cursor_read_conversation": "会話読取"
|
|
50
|
-
},
|
|
51
|
-
"categories": {
|
|
52
|
-
"workflow": {
|
|
53
|
-
"title": "ワークフローオーケストレーション",
|
|
54
|
-
"count": "6個"
|
|
55
|
-
},
|
|
56
|
-
"analysis": {
|
|
57
|
-
"title": "コード分析",
|
|
58
|
-
"count": "4個"
|
|
59
|
-
},
|
|
60
|
-
"git": {
|
|
61
|
-
"title": "Gitツール",
|
|
62
|
-
"count": "2個"
|
|
63
|
-
},
|
|
64
|
-
"generation": {
|
|
65
|
-
"title": "コード生成",
|
|
66
|
-
"count": "1個"
|
|
67
|
-
},
|
|
68
|
-
"project": {
|
|
69
|
-
"title": "プロジェクト管理",
|
|
70
|
-
"count": "6個"
|
|
71
|
-
},
|
|
72
|
-
"uiux": {
|
|
73
|
-
"title": "UI/UXデザイン",
|
|
74
|
-
"count": "3個"
|
|
75
|
-
},
|
|
76
|
-
"memory": {
|
|
77
|
-
"title": "Memory と Cursor History",
|
|
78
|
-
"count": "7個"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"toolsData": {
|
|
82
|
-
"start_feature": {
|
|
83
|
-
"description": "完全な機能開発ワークフローオーケストレーション:グラフ基線補完 → GitNexus 更新 → 範囲収束 → 仕様生成 → 作業量見積もり",
|
|
84
|
-
"usage": "不足している graph-insights を補完し、GitNexus の query/context/impact で範囲を絞ったうえで仕様と見積もりを生成します"
|
|
85
|
-
},
|
|
86
|
-
"start_bugfix": {
|
|
87
|
-
"description": "バグ修正ワークフローオーケストレーション:グラフ基線補完 → GitNexus 更新 → 障害境界の収束 → TBP 8段階の真因分析 → 修正方針 → テスト生成",
|
|
88
|
-
"usage": "バグ・回帰・異常調査向け。先に graph-insights を補完し、GitNexus で境界と影響面を絞った後に TBP RCA を進めます"
|
|
89
|
-
},
|
|
90
|
-
"start_onboard": {
|
|
91
|
-
"description": "プロジェクトオンボーディングワークフロー:コンテキストドキュメントを生成し、新メンバーがプロジェクトを迅速に理解できるようにします",
|
|
92
|
-
"usage": "新メンバーがプロジェクト構造、技術スタック、開発標準を迅速に理解できるようにします"
|
|
93
|
-
},
|
|
94
|
-
"start_ralph": {
|
|
95
|
-
"description": "Ralph Wiggum Loop自動開発、デフォルトで複数の安全保護が有効になっているループ開発プロセスを開始します",
|
|
96
|
-
"usage": "自動ループ開発を開始し、AIは目標が達成されるか安全制限に達するまで継続的に反復します"
|
|
97
|
-
},
|
|
98
|
-
"start_product": {
|
|
99
|
-
"description": "完全な製品設計ワークフローオーケストレーション:PRD → プロトタイプドキュメント → デザインシステム → HTMLプロトタイプ → プロジェクトコンテキスト更新",
|
|
100
|
-
"usage": "要件からHTMLプロトタイプまでのワンクリック完了、直接デモ可能な製品プロトタイプを生成します"
|
|
101
|
-
},
|
|
102
|
-
"start_ui": {
|
|
103
|
-
"description": "統一UI開発エントリ:デザインシステムチェック → コンポーネントカタログ生成 → テンプレート検索/生成 → コードレンダリング",
|
|
104
|
-
"usage": "デザインシステムから最終コードまで、UI開発プロセス全体をワンクリックで完了します"
|
|
105
|
-
},
|
|
106
|
-
"code_review": {
|
|
107
|
-
"description": "インテリジェントコードレビュー、セキュリティ、パフォーマンス、品質、スタイル、ベストプラクティスなど複数の次元からコードを分析します",
|
|
108
|
-
"usage": "包括的なコード品質レビュー、構造化された問題リスト(severity/category/suggestion)を出力します"
|
|
109
|
-
},
|
|
110
|
-
"fix_bug": {
|
|
111
|
-
"description": "TBP 8段階に基づくバグ真因分析と修正ガイダンス。証拠連鎖、修正計画、テスト計画、再発防止策を返します",
|
|
112
|
-
"usage": "真因を先に特定したいときに使います。現象・境界・真因・修正までの因果連鎖を閉じます"
|
|
113
|
-
},
|
|
114
|
-
"refactor": {
|
|
115
|
-
"description": "リファクタリング提案ツール、コード構造を分析し、リファクタリング手順、リスク評価、ロールバック計画を提供します",
|
|
116
|
-
"usage": "コード構造を分析し、リファクタリング提案、リファクタリング手順、リスク評価を提供します"
|
|
117
|
-
},
|
|
118
|
-
"gencommit": {
|
|
119
|
-
"description": "コード変更に基づいてConventional Commits仕様に準拠したGitコミットメッセージを自動生成します",
|
|
120
|
-
"usage": "コード変更に基づいてConventional Commits仕様に準拠したコミットメッセージを生成します"
|
|
121
|
-
},
|
|
122
|
-
"git_work_report": {
|
|
123
|
-
"description": "Git diff分析に基づいて作業レポート(日報/定期報告)を生成し、実際の作業内容をインテリジェントに抽出します",
|
|
124
|
-
"usage": "指定された日付のGitコミットを自動的に読み取り、diff内容を分析し、簡潔で専門的な作業レポートを生成します。直接コマンドが失敗した場合、一時スクリプトソリューションを提供します(実行後自動削除)"
|
|
125
|
-
},
|
|
126
|
-
"gentest": {
|
|
127
|
-
"description": "Jest/Vitest/Mochaフレームワークをサポートし、エッジケースとモックデータを含む単体テストを生成します",
|
|
128
|
-
"usage": "エッジケースとモックを含む単体テストコードを生成します"
|
|
129
|
-
},
|
|
130
|
-
"init_project": {
|
|
131
|
-
"description": "Spec-Driven Developmentアプローチに従って要件/設計/タスクドキュメントを生成します",
|
|
132
|
-
"usage": "Spec-Driven Developmentアプローチに従って要件/設計/タスクドキュメントを生成します"
|
|
133
|
-
},
|
|
134
|
-
"init_project_context": {
|
|
135
|
-
"description": "プロジェクトコンテキスト文書を生成・維持し、graph-insights の基線入口を補完します",
|
|
136
|
-
"usage": "新規プロジェクトでは骨組みを生成し、既存の project-context.md がある場合は上書きせず graph-insights と索引入口だけを補完します"
|
|
137
|
-
},
|
|
138
|
-
"add_feature": {
|
|
139
|
-
"description": "プロジェクトコンテキストに基づいて新機能仕様ドキュメント(要件/設計/タスクリスト)を生成します",
|
|
140
|
-
"usage": "プロジェクトコンテキストに基づいて新機能仕様ドキュメント(要件/設計/タスクリスト)を生成します"
|
|
141
|
-
},
|
|
142
|
-
"estimate": {
|
|
143
|
-
"description": "開発作業量を見積もり、ストーリーポイント、時間範囲(楽観的/通常/悲観的)、リスクポイントを出力します",
|
|
144
|
-
"usage": "開発作業量を見積もり、ストーリーポイント、時間範囲(楽観的/通常/悲観的)、リスクポイントを出力します"
|
|
145
|
-
},
|
|
146
|
-
"interview": {
|
|
147
|
-
"description": "要件インタビューツール、構造化された質問を通じて要件を明確にし、誤解と手戻りを回避します",
|
|
148
|
-
"usage": "開発前に構造化された質問を通じて要件を明確にする要件インタビューツール"
|
|
149
|
-
},
|
|
150
|
-
"ask_user": {
|
|
151
|
-
"description": "AIプロアクティブ質問ツール、単一または複数の質問をサポートし、オプションを提供し、重要性をマークします",
|
|
152
|
-
"usage": "AIがユーザーに積極的に質問し、単一または複数の質問をサポートし、オプションを提供し、重要性をマークします"
|
|
153
|
-
},
|
|
154
|
-
"ui_design_system": {
|
|
155
|
-
"description": "インテリジェントデザインシステムジェネレーター、製品タイプの推論に基づいて完全なデザイン仕様を生成します",
|
|
156
|
-
"usage": "製品タイプと要件に基づいて、AI推論エンジンを使用して完全なデザインシステムの推奨事項を生成します"
|
|
157
|
-
},
|
|
158
|
-
"ui_search": {
|
|
159
|
-
"description": "色、アイコン、チャート、コンポーネント、デザインパターンなどを含むUI/UXデータベースを検索します",
|
|
160
|
-
"usage": "BM25アルゴリズムを使用してインテリジェント検索を行うUI/UXデータベースを検索します"
|
|
161
|
-
},
|
|
162
|
-
"sync_ui_data": {
|
|
163
|
-
"description": "UI/UXデータをローカルキャッシュに同期し、自動更新チェックと強制同期をサポートします",
|
|
164
|
-
"usage": "npmパッケージuipro-cliから最新データをダウンロードし、UI/UXデータをローカルキャッシュに同期します"
|
|
165
|
-
},
|
|
166
|
-
"code_insight": {
|
|
167
|
-
"description": "コードグラフ洞察ツール。GitNexus をブリッジして呼び出し連鎖、コンテキスト、影響範囲を分析(利用不可時は自動で劣化)",
|
|
168
|
-
"usage": "GitNexus インデックスを更新し、タスク単位の呼び出し連鎖・コンテキスト・影響範囲を分析して docs/graph-insights と project-context 索引へ保存します"
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta": {
|
|
3
|
-
"title": "모든 도구 - 27개 AI 개발 도구 전체 목록 | MCP Probe Kit",
|
|
4
|
-
"description": "MCP Probe Kit 전체 도구 목록: 6개의 워크플로우 오케스트레이션 도구, 4개의 코드 분석 도구, 2개의 Git 도구, 1개의 생성 도구, 6개의 프로젝트 관리 도구, 3개의 UI/UX 도구, 5개의 Memory/Cursor History 도구.",
|
|
5
|
-
"keywords": "AI 개발 도구, 코드 생성 도구, 코드 리뷰 도구, Git 자동화, UI 생성, 코드 리팩토링, 성능 최적화, 보안 스캔"
|
|
6
|
-
},
|
|
7
|
-
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit은 27개의 실용적인 도구를 제공하며, 핵심 및 오케스트레이션 도구는 구조화된 출력을 지원합니다"
|
|
9
|
-
},
|
|
10
|
-
"search": {
|
|
11
|
-
"placeholder": "🔍 도구 이름 또는 설명 검색...",
|
|
12
|
-
"found": "{count}개의 일치하는 도구를 찾았습니다",
|
|
13
|
-
"noResults": "일치하는 도구를 찾을 수 없습니다"
|
|
14
|
-
},
|
|
15
|
-
"footer": {
|
|
16
|
-
"lastUpdate": "마지막 업데이트",
|
|
17
|
-
"protocol": "프로토콜",
|
|
18
|
-
"sdk": "SDK",
|
|
19
|
-
"editPage": "이 페이지 편집",
|
|
20
|
-
"reportIssue": "문제 보고"
|
|
21
|
-
},
|
|
22
|
-
"toolShortDesc": {
|
|
23
|
-
"start_feature": "새 기능",
|
|
24
|
-
"start_bugfix": "버그 수정",
|
|
25
|
-
"start_onboard": "빠른 시작",
|
|
26
|
-
"start_ralph": "루프 개발",
|
|
27
|
-
"start_product": "제품 설계",
|
|
28
|
-
"start_ui": "UI 개발",
|
|
29
|
-
"code_review": "코드 리뷰",
|
|
30
|
-
"fix_bug": "버그 수정",
|
|
31
|
-
"refactor": "리팩토링",
|
|
32
|
-
"gencommit": "커밋 생성",
|
|
33
|
-
"gentest": "테스트 생성",
|
|
34
|
-
"git_work_report": "작업 보고서",
|
|
35
|
-
"init_project": "초기화",
|
|
36
|
-
"init_project_context": "프로젝트 컨텍스트",
|
|
37
|
-
"add_feature": "기능 추가",
|
|
38
|
-
"estimate": "추정",
|
|
39
|
-
"interview": "요구사항 인터뷰",
|
|
40
|
-
"ask_user": "사용자에게 질문",
|
|
41
|
-
"ui_design_system": "디자인 시스템",
|
|
42
|
-
"ui_search": "UI 검색",
|
|
43
|
-
"sync_ui_data": "데이터 동기화",
|
|
44
|
-
"code_insight": "코드 인사이트",
|
|
45
|
-
"search_memory": "메모리 검색",
|
|
46
|
-
"read_memory_asset": "메모리 읽기",
|
|
47
|
-
"memorize_asset": "메모리 저장",
|
|
48
|
-
"scan_and_extract_patterns": "패턴 추출",
|
|
49
|
-
"cursor_read_conversation": "대화 읽기"
|
|
50
|
-
},
|
|
51
|
-
"categories": {
|
|
52
|
-
"workflow": {
|
|
53
|
-
"title": "워크플로우 오케스트레이션",
|
|
54
|
-
"count": "6개"
|
|
55
|
-
},
|
|
56
|
-
"analysis": {
|
|
57
|
-
"title": "코드 분석",
|
|
58
|
-
"count": "4개"
|
|
59
|
-
},
|
|
60
|
-
"git": {
|
|
61
|
-
"title": "Git 도구",
|
|
62
|
-
"count": "2개"
|
|
63
|
-
},
|
|
64
|
-
"generation": {
|
|
65
|
-
"title": "코드 생성",
|
|
66
|
-
"count": "1개"
|
|
67
|
-
},
|
|
68
|
-
"project": {
|
|
69
|
-
"title": "프로젝트 관리",
|
|
70
|
-
"count": "6개"
|
|
71
|
-
},
|
|
72
|
-
"uiux": {
|
|
73
|
-
"title": "UI/UX 디자인",
|
|
74
|
-
"count": "3개"
|
|
75
|
-
},
|
|
76
|
-
"memory": {
|
|
77
|
-
"title": "Memory 및 Cursor History",
|
|
78
|
-
"count": "7개"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"toolsData": {
|
|
82
|
-
"start_feature": {
|
|
83
|
-
"description": "완전한 기능 개발 워크플로우 오케스트레이션: 그래프 베이스라인 보강 → GitNexus 갱신 → 범위 수렴 → 사양 생성 → 작업량 추정",
|
|
84
|
-
"usage": "누락된 graph-insights 를 먼저 보강하고 GitNexus query/context/impact 로 범위를 수렴시킨 뒤 사양과 추정을 생성합니다"
|
|
85
|
-
},
|
|
86
|
-
"start_bugfix": {
|
|
87
|
-
"description": "버그 수정 워크플로우 오케스트레이션: 그래프 베이스라인 보강 → GitNexus 갱신 → 장애 경계 수렴 → TBP 8단계 근본원인 분석 → 수정 방안 → 테스트 생성",
|
|
88
|
-
"usage": "버그, 회귀, 이상 분석용. 먼저 graph-insights 를 보강하고 GitNexus 로 경계와 영향면을 좁힌 뒤 TBP RCA 를 진행합니다"
|
|
89
|
-
},
|
|
90
|
-
"start_onboard": {
|
|
91
|
-
"description": "프로젝트 온보딩 워크플로우: 컨텍스트 문서를 생성하여 새 구성원이 프로젝트를 빠르게 이해할 수 있도록 돕습니다",
|
|
92
|
-
"usage": "새 구성원이 프로젝트 구조, 기술 스택 및 개발 표준을 빠르게 이해할 수 있도록 돕습니다"
|
|
93
|
-
},
|
|
94
|
-
"start_ralph": {
|
|
95
|
-
"description": "Ralph Wiggum Loop 자동화 개발, 기본적으로 여러 안전 보호 기능이 활성화된 루프 개발 프로세스를 시작합니다",
|
|
96
|
-
"usage": "자동화된 루프 개발을 시작하며, AI는 목표가 달성되거나 안전 제한에 도달할 때까지 지속적으로 반복합니다"
|
|
97
|
-
},
|
|
98
|
-
"start_product": {
|
|
99
|
-
"description": "완전한 제품 설계 워크플로우 오케스트레이션: PRD → 프로토타입 문서 → 디자인 시스템 → HTML 프로토타입 → 프로젝트 컨텍스트 업데이트",
|
|
100
|
-
"usage": "요구사항에서 HTML 프로토타입까지 원클릭 완료, 직접 시연 가능한 제품 프로토타입을 생성합니다"
|
|
101
|
-
},
|
|
102
|
-
"start_ui": {
|
|
103
|
-
"description": "통합 UI 개발 진입점: 디자인 시스템 확인 → 컴포넌트 카탈로그 생성 → 템플릿 검색/생성 → 코드 렌더링",
|
|
104
|
-
"usage": "디자인 시스템에서 최종 코드까지 전체 UI 개발 프로세스를 원클릭으로 완료합니다"
|
|
105
|
-
},
|
|
106
|
-
"code_review": {
|
|
107
|
-
"description": "지능형 코드 리뷰, 보안, 성능, 품질, 스타일 및 모범 사례 등 여러 차원에서 코드를 분석합니다",
|
|
108
|
-
"usage": "포괄적인 코드 품질 리뷰, 구조화된 문제 목록(severity/category/suggestion)을 출력합니다"
|
|
109
|
-
},
|
|
110
|
-
"fix_bug": {
|
|
111
|
-
"description": "TBP 8단계 기반 버그 RCA 및 수정 가이드로 증거 사슬, 수정 계획, 테스트 계획, 예방 조치를 제공합니다",
|
|
112
|
-
"usage": "먼저 진짜 원인을 찾고 싶을 때 사용하며 현상, 경계, 진짜 원인, 수정까지의 인과 사슬을 닫아줍니다"
|
|
113
|
-
},
|
|
114
|
-
"refactor": {
|
|
115
|
-
"description": "리팩토링 제안 도구, 코드 구조를 분석하고 리팩토링 단계, 위험 평가 및 롤백 계획을 제공합니다",
|
|
116
|
-
"usage": "코드 구조를 분석하고 리팩토링 제안, 리팩토링 단계 및 위험 평가를 제공합니다"
|
|
117
|
-
},
|
|
118
|
-
"gencommit": {
|
|
119
|
-
"description": "코드 변경 사항을 기반으로 Conventional Commits 사양을 준수하는 Git 커밋 메시지를 자동으로 생성합니다",
|
|
120
|
-
"usage": "코드 변경 사항을 기반으로 Conventional Commits 사양을 준수하는 커밋 메시지를 생성합니다"
|
|
121
|
-
},
|
|
122
|
-
"git_work_report": {
|
|
123
|
-
"description": "Git diff 분석을 기반으로 작업 보고서(일일/정기)를 생성하고 실제 작업 내용을 지능적으로 추출합니다",
|
|
124
|
-
"usage": "지정된 날짜의 Git 커밋을 자동으로 읽고 diff 내용을 분석하여 간결하고 전문적인 작업 보고서를 생성합니다. 직접 명령이 실패하면 임시 스크립트 솔루션을 제공합니다(실행 후 자동 삭제)"
|
|
125
|
-
},
|
|
126
|
-
"gentest": {
|
|
127
|
-
"description": "Jest/Vitest/Mocha 프레임워크를 지원하고 엣지 케이스 및 모의 데이터를 포함하는 단위 테스트를 생성합니다",
|
|
128
|
-
"usage": "엣지 케이스 및 모의를 포함하는 단위 테스트 코드를 생성합니다"
|
|
129
|
-
},
|
|
130
|
-
"init_project": {
|
|
131
|
-
"description": "Spec-Driven Development 접근 방식에 따라 요구사항/설계/작업 문서를 생성합니다",
|
|
132
|
-
"usage": "Spec-Driven Development 접근 방식에 따라 요구사항/설계/작업 문서를 생성합니다"
|
|
133
|
-
},
|
|
134
|
-
"init_project_context": {
|
|
135
|
-
"description": "프로젝트 컨텍스트 문서를 생성 또는 유지하고 graph-insights 베이스라인 진입점을 보강합니다",
|
|
136
|
-
"usage": "신규 프로젝트는 컨텍스트 골격을 생성하고, 기존 project-context.md 가 있으면 덮어쓰지 않고 graph-insights 와 인덱스 진입점만 보강합니다"
|
|
137
|
-
},
|
|
138
|
-
"add_feature": {
|
|
139
|
-
"description": "프로젝트 컨텍스트를 기반으로 새 기능 사양 문서(요구사항/설계/작업 목록)를 생성합니다",
|
|
140
|
-
"usage": "프로젝트 컨텍스트를 기반으로 새 기능 사양 문서(요구사항/설계/작업 목록)를 생성합니다"
|
|
141
|
-
},
|
|
142
|
-
"estimate": {
|
|
143
|
-
"description": "개발 작업량을 추정하고 스토리 포인트, 시간 범위(낙관적/정상/비관적), 위험 포인트를 출력합니다",
|
|
144
|
-
"usage": "개발 작업량을 추정하고 스토리 포인트, 시간 범위(낙관적/정상/비관적), 위험 포인트를 출력합니다"
|
|
145
|
-
},
|
|
146
|
-
"interview": {
|
|
147
|
-
"description": "요구사항 인터뷰 도구, 구조화된 질문을 통해 요구사항을 명확히 하여 오해와 재작업을 방지합니다",
|
|
148
|
-
"usage": "개발 전에 구조화된 질문을 통해 요구사항을 명확히 하는 요구사항 인터뷰 도구"
|
|
149
|
-
},
|
|
150
|
-
"ask_user": {
|
|
151
|
-
"description": "AI 능동적 질문 도구, 단일 또는 여러 질문을 지원하고 옵션을 제공하며 중요도를 표시합니다",
|
|
152
|
-
"usage": "AI가 사용자에게 능동적으로 질문하며 단일 또는 여러 질문을 지원하고 옵션을 제공하며 중요도를 표시합니다"
|
|
153
|
-
},
|
|
154
|
-
"ui_design_system": {
|
|
155
|
-
"description": "지능형 디자인 시스템 생성기, 제품 유형 추론을 기반으로 완전한 디자인 사양을 생성합니다",
|
|
156
|
-
"usage": "제품 유형 및 요구사항을 기반으로 AI 추론 엔진을 사용하여 완전한 디자인 시스템 권장 사항을 생성합니다"
|
|
157
|
-
},
|
|
158
|
-
"ui_search": {
|
|
159
|
-
"description": "색상, 아이콘, 차트, 컴포넌트, 디자인 패턴 등을 포함하는 UI/UX 데이터베이스를 검색합니다",
|
|
160
|
-
"usage": "BM25 알고리즘을 사용하여 지능형 검색을 수행하는 UI/UX 데이터베이스를 검색합니다"
|
|
161
|
-
},
|
|
162
|
-
"sync_ui_data": {
|
|
163
|
-
"description": "UI/UX 데이터를 로컬 캐시에 동기화하고 자동 업데이트 확인 및 강제 동기화를 지원합니다",
|
|
164
|
-
"usage": "npm 패키지 uipro-cli에서 최신 데이터를 다운로드하여 UI/UX 데이터를 로컬 캐시에 동기화합니다"
|
|
165
|
-
},
|
|
166
|
-
"code_insight": {
|
|
167
|
-
"description": "코드 그래프 인사이트 도구로 GitNexus를 브리지하여 호출 체인, 컨텍스트, 영향 범위를 분석합니다(사용 불가 시 자동 강등)",
|
|
168
|
-
"usage": "GitNexus 인덱스를 갱신하고 작업 단위 호출 체인/컨텍스트/영향 범위를 분석한 뒤 결과를 docs/graph-insights 와 project-context 인덱스에 저장합니다"
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|