mcp-probe-kit 3.0.5 → 3.0.7

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.
Files changed (69) hide show
  1. package/README.md +458 -431
  2. package/build/index.js +875 -141
  3. package/build/lib/gitnexus-bridge.d.ts +58 -0
  4. package/build/lib/gitnexus-bridge.js +379 -0
  5. package/build/lib/template-loader.js +317 -317
  6. package/build/lib/tool-execution-context.d.ts +8 -0
  7. package/build/lib/tool-execution-context.js +20 -0
  8. package/build/lib/toolset-manager.d.ts +1 -1
  9. package/build/lib/toolset-manager.js +7 -5
  10. package/build/schemas/code-analysis-tools.d.ts +46 -0
  11. package/build/schemas/code-analysis-tools.js +47 -0
  12. package/build/schemas/git-tools.js +16 -16
  13. package/build/schemas/index.d.ts +46 -0
  14. package/build/tools/__tests__/code_insight.unit.test.d.ts +1 -0
  15. package/build/tools/__tests__/code_insight.unit.test.js +35 -0
  16. package/build/tools/__tests__/start_bugfix.unit.test.js +14 -14
  17. package/build/tools/__tests__/start_ui.unit.test.js +11 -11
  18. package/build/tools/add_feature.js +79 -79
  19. package/build/tools/ask_user.js +5 -5
  20. package/build/tools/code_insight.d.ts +8 -0
  21. package/build/tools/code_insight.js +129 -0
  22. package/build/tools/index.d.ts +1 -0
  23. package/build/tools/index.js +1 -0
  24. package/build/tools/interview.js +9 -9
  25. package/build/tools/start_bugfix.d.ts +2 -1
  26. package/build/tools/start_bugfix.js +170 -126
  27. package/build/tools/start_feature.d.ts +2 -1
  28. package/build/tools/start_feature.js +156 -112
  29. package/build/tools/start_onboard.d.ts +2 -1
  30. package/build/tools/start_onboard.js +57 -51
  31. package/build/tools/start_product.d.ts +2 -1
  32. package/build/tools/start_product.js +9 -1
  33. package/build/tools/start_ralph.d.ts +2 -1
  34. package/build/tools/start_ralph.js +9 -3
  35. package/build/tools/start_ui.d.ts +2 -1
  36. package/build/tools/start_ui.js +102 -88
  37. package/build/tools/ui-ux-tools.d.ts +2 -1
  38. package/build/tools/ui-ux-tools.js +19 -3
  39. package/build/utils/ui-sync.d.ts +6 -2
  40. package/build/utils/ui-sync.js +125 -29
  41. package/docs/assets/font/MaterialSymbolsOutlined.codepoints +4102 -0
  42. package/docs/assets/font/MaterialSymbolsOutlined.ttf +0 -0
  43. package/docs/assets/font/noto-sans-sc-400.ttf +0 -0
  44. package/docs/assets/font/noto-sans-sc-700.ttf +0 -0
  45. package/docs/assets/font/noto-sans-sc-900.ttf +0 -0
  46. package/docs/assets/js/i18n.js +122 -21
  47. package/docs/assets/js/tailwind.js +83 -83
  48. package/docs/data/tools.js +419 -399
  49. package/docs/debug-i18n.html +163 -0
  50. package/docs/i18n/all-tools/en.json +157 -0
  51. package/docs/i18n/all-tools/ja.json +157 -0
  52. package/docs/i18n/all-tools/ko.json +157 -0
  53. package/docs/i18n/all-tools/zh-CN.json +157 -0
  54. package/docs/pages/all-tools.html +514 -352
  55. package/docs/pages/examples.html +689 -689
  56. package/docs/pages/getting-started.html +589 -589
  57. package/docs/pages/migration.html +298 -298
  58. package/docs/specs/user-auth/design.md +82 -0
  59. package/docs/specs/user-auth/requirements.md +52 -0
  60. package/docs/specs/user-auth/tasks.md +55 -0
  61. package/package.json +5 -5
  62. package/docs/project-context/architecture.md +0 -0
  63. package/docs/project-context/how-to-develop.md +0 -313
  64. package/docs/project-context/how-to-test.md +0 -457
  65. package/docs/project-context/tech-stack.md +0 -96
  66. package/docs/project-context.md +0 -53
  67. package/docs/specs/git-work-report/design.md +0 -568
  68. package/docs/specs/git-work-report/requirements.md +0 -131
  69. package/docs/specs/git-work-report/tasks.md +0 -197
@@ -0,0 +1,163 @@
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>i18n 调试页面</title>
7
+ <style>
8
+ body { font-family: Arial, sans-serif; padding: 20px; max-width: 1200px; margin: 0 auto; }
9
+ .section { margin: 20px 0; padding: 15px; border: 1px solid #ddd; border-radius: 5px; }
10
+ .section h2 { margin-top: 0; color: #333; }
11
+ button { padding: 10px 20px; margin: 5px; cursor: pointer; }
12
+ pre { background: #f5f5f5; padding: 10px; border-radius: 3px; overflow-x: auto; }
13
+ .success { color: green; }
14
+ .error { color: red; }
15
+ .warning { color: orange; }
16
+ </style>
17
+ </head>
18
+ <body>
19
+ <h1>🔍 all-tools.html i18n 调试工具</h1>
20
+
21
+ <div class="section">
22
+ <h2>1. 语言切换测试</h2>
23
+ <button onclick="testLanguage('zh-CN')">测试中文</button>
24
+ <button onclick="testLanguage('en')">测试英文</button>
25
+ <button onclick="testLanguage('ja')">测试日文</button>
26
+ <button onclick="testLanguage('ko')">测试韩文</button>
27
+ <div id="lang-result"></div>
28
+ </div>
29
+
30
+ <div class="section">
31
+ <h2>2. 翻译文件检查</h2>
32
+ <button onclick="checkTranslationFiles()">检查所有翻译文件</button>
33
+ <div id="file-result"></div>
34
+ </div>
35
+
36
+ <div class="section">
37
+ <h2>3. 当前状态</h2>
38
+ <button onclick="showCurrentState()">显示当前状态</button>
39
+ <button onclick="clearStorage()">清除 localStorage</button>
40
+ <div id="state-result"></div>
41
+ </div>
42
+
43
+ <div class="section">
44
+ <h2>4. 打开测试页面</h2>
45
+ <a href="./pages/all-tools.html" target="_blank">
46
+ <button>在新标签页打开 all-tools.html</button>
47
+ </a>
48
+ </div>
49
+
50
+ <script src="./data/tools.js"></script>
51
+ <script src="./assets/js/i18n.js"></script>
52
+ <script>
53
+ async function testLanguage(lang) {
54
+ const result = document.getElementById('lang-result');
55
+ result.innerHTML = `<p>正在测试 ${lang}...</p>`;
56
+
57
+ try {
58
+ // 加载翻译文件
59
+ const response = await fetch(`./i18n/all-tools/${lang}.json`);
60
+ if (!response.ok) {
61
+ result.innerHTML = `<p class="error">❌ 翻译文件不存在: ./i18n/all-tools/${lang}.json</p>`;
62
+ return;
63
+ }
64
+
65
+ const translations = await response.json();
66
+
67
+ // 显示翻译内容
68
+ let html = `<p class="success">✅ 翻译文件加载成功</p>`;
69
+ html += `<h3>翻译内容预览:</h3>`;
70
+ html += `<pre>${JSON.stringify(translations, null, 2).substring(0, 1000)}...</pre>`;
71
+
72
+ // 检查关键字段
73
+ html += `<h3>关键字段检查:</h3>`;
74
+ html += `<ul>`;
75
+ html += `<li>meta.title: ${translations.meta?.title ? '✅' : '❌'}</li>`;
76
+ html += `<li>page.subtitle: ${translations.page?.subtitle ? '✅' : '❌'}</li>`;
77
+ html += `<li>search.placeholder: ${translations.search?.placeholder ? '✅' : '❌'}</li>`;
78
+ html += `<li>categories: ${translations.categories ? '✅' : '❌'}</li>`;
79
+ html += `<li>toolsData: ${translations.toolsData ? '✅' : '❌'}</li>`;
80
+ html += `</ul>`;
81
+
82
+ result.innerHTML = html;
83
+ } catch (error) {
84
+ result.innerHTML = `<p class="error">❌ 错误: ${error.message}</p>`;
85
+ }
86
+ }
87
+
88
+ async function checkTranslationFiles() {
89
+ const result = document.getElementById('file-result');
90
+ result.innerHTML = `<p>正在检查翻译文件...</p>`;
91
+
92
+ const languages = ['zh-CN', 'en', 'ja', 'ko'];
93
+ let html = '<ul>';
94
+
95
+ for (const lang of languages) {
96
+ try {
97
+ const response = await fetch(`./i18n/all-tools/${lang}.json`);
98
+ if (response.ok) {
99
+ const data = await response.json();
100
+ const toolCount = Object.keys(data.toolsData || {}).length;
101
+ html += `<li class="success">✅ ${lang}.json - ${toolCount} 个工具翻译</li>`;
102
+ } else {
103
+ html += `<li class="error">❌ ${lang}.json - 文件不存在</li>`;
104
+ }
105
+ } catch (error) {
106
+ html += `<li class="error">❌ ${lang}.json - 加载失败: ${error.message}</li>`;
107
+ }
108
+ }
109
+
110
+ html += '</ul>';
111
+ result.innerHTML = html;
112
+ }
113
+
114
+ function showCurrentState() {
115
+ const result = document.getElementById('state-result');
116
+
117
+ let html = '<h3>全局变量状态:</h3>';
118
+ html += `<ul>`;
119
+ html += `<li>window.currentLang: ${window.currentLang || '未定义'}</li>`;
120
+ html += `<li>window.translations: ${window.translations ? '已定义' : '未定义'}</li>`;
121
+ html += `<li>window.LANGUAGES: ${window.LANGUAGES ? '已定义' : '未定义'}</li>`;
122
+ html += `<li>localStorage.lang: <strong>${localStorage.getItem('lang') || '未设置'}</strong></li>`;
123
+ html += `</ul>`;
124
+
125
+ html += '<h3>toolsData 状态:</h3>';
126
+ html += `<ul>`;
127
+ html += `<li>toolsData: ${typeof toolsData !== 'undefined' ? '已定义' : '未定义'}</li>`;
128
+ if (typeof toolsData !== 'undefined') {
129
+ html += `<li>categories: ${toolsData.categories ? '已定义' : '未定义'}</li>`;
130
+ if (toolsData.categories) {
131
+ html += `<li>分类数量: ${Object.keys(toolsData.categories).length}</li>`;
132
+ html += `<li>分类列表: ${Object.keys(toolsData.categories).join(', ')}</li>`;
133
+ }
134
+ }
135
+ html += `</ul>`;
136
+
137
+ html += '<h3>已加载的翻译:</h3>';
138
+ if (window.translations) {
139
+ html += `<ul>`;
140
+ for (const lang in window.translations) {
141
+ html += `<li>${lang}: ${Object.keys(window.translations[lang]).join(', ')}</li>`;
142
+ }
143
+ html += `</ul>`;
144
+ } else {
145
+ html += `<p class="warning">⚠️ 没有已加载的翻译</p>`;
146
+ }
147
+
148
+ result.innerHTML = html;
149
+ }
150
+
151
+ function clearStorage() {
152
+ localStorage.removeItem('lang');
153
+ alert('✅ localStorage 已清除!\n\n请刷新页面测试默认语言检测。');
154
+ showCurrentState();
155
+ }
156
+
157
+ // 页面加载时显示当前状态
158
+ window.addEventListener('load', () => {
159
+ setTimeout(showCurrentState, 1000);
160
+ });
161
+ </script>
162
+ </body>
163
+ </html>
@@ -0,0 +1,157 @@
1
+ {
2
+ "meta": {
3
+ "title": "All Tools - Complete List of 21 AI Development Tools | MCP Probe Kit",
4
+ "description": "MCP Probe Kit complete tool list: 6 workflow orchestration tools, 3 code analysis tools, 1 Git tool, 1 generation tool, 7 project management tools, 3 UI/UX 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 21 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
+ "sync_ui_data": "Sync Data"
44
+ },
45
+ "categories": {
46
+ "workflow": {
47
+ "title": "Workflow Orchestration",
48
+ "count": "6 tools"
49
+ },
50
+ "analysis": {
51
+ "title": "Code Analysis",
52
+ "count": "3 tools"
53
+ },
54
+ "git": {
55
+ "title": "Git Tools",
56
+ "count": "2 tools"
57
+ },
58
+ "generation": {
59
+ "title": "Code Generation",
60
+ "count": "1 tool"
61
+ },
62
+ "project": {
63
+ "title": "Project Management",
64
+ "count": "6 tools"
65
+ },
66
+ "uiux": {
67
+ "title": "UI/UX Design",
68
+ "count": "3 tools"
69
+ }
70
+ },
71
+ "toolsData": {
72
+ "start_feature": {
73
+ "description": "Complete feature development workflow orchestration: check context → generate specs → estimate workload",
74
+ "usage": "Used to initiate complete feature development process, automatically generating requirement documents, design plans, and workload estimates"
75
+ },
76
+ "start_bugfix": {
77
+ "description": "Bug fix workflow orchestration: check context → analyze and locate → fix solution → generate tests",
78
+ "usage": "Used for systematic bug fixing, providing complete analysis, location, fix, and test solutions"
79
+ },
80
+ "start_onboard": {
81
+ "description": "Project onboarding workflow: generate context documentation to help new members quickly understand the project",
82
+ "usage": "Help new members quickly understand project structure, tech stack, and development standards"
83
+ },
84
+ "start_ralph": {
85
+ "description": "Ralph Wiggum Loop automated development, start loop development process with multiple safety protections enabled by default",
86
+ "usage": "Start automated loop development, AI will continuously iterate until goal is achieved or safety limits are reached"
87
+ },
88
+ "start_product": {
89
+ "description": "Complete product design workflow orchestration: PRD → prototype docs → design system → HTML prototype → project context update",
90
+ "usage": "One-click completion from requirements to HTML prototype, generating directly demonstrable product prototypes"
91
+ },
92
+ "start_ui": {
93
+ "description": "Unified UI development entry: check design system → generate component catalog → search/generate templates → render code",
94
+ "usage": "One-click completion of entire UI development process, from design system to final code"
95
+ },
96
+ "code_review": {
97
+ "description": "Intelligent code review, analyzing code from multiple dimensions including security, performance, quality, style, and best practices",
98
+ "usage": "Comprehensive code quality review, outputting structured issue list (severity/category/suggestion)"
99
+ },
100
+ "fix_bug": {
101
+ "description": "Bug fix guidance, providing root cause analysis, fix plan, test plan, and prevention measures",
102
+ "usage": "Provide complete bug fix guidance, including root cause analysis, fix solution, test plan, and prevention measures"
103
+ },
104
+ "refactor": {
105
+ "description": "Refactoring suggestion tool, analyzing code structure, providing refactoring steps, risk assessment, and rollback plan",
106
+ "usage": "Analyze code structure, provide refactoring suggestions, refactoring steps, and risk assessment"
107
+ },
108
+ "gencommit": {
109
+ "description": "Automatically generate Git commit messages compliant with Conventional Commits specification based on code changes",
110
+ "usage": "Generate commit messages compliant with Conventional Commits specification based on code changes"
111
+ },
112
+ "git_work_report": {
113
+ "description": "Generate work reports (daily/periodic) based on Git diff analysis, intelligently extracting actual work content",
114
+ "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)"
115
+ },
116
+ "gentest": {
117
+ "description": "Generate unit tests, supporting Jest/Vitest/Mocha frameworks, including edge cases and mock data",
118
+ "usage": "Generate unit test code, including edge cases and mocks"
119
+ },
120
+ "init_project": {
121
+ "description": "Generate requirement/design/task documents following Spec-Driven Development approach",
122
+ "usage": "Generate requirement/design/task documents following Spec-Driven Development approach"
123
+ },
124
+ "init_project_context": {
125
+ "description": "Generate project context documentation (tech stack/architecture/coding standards)",
126
+ "usage": "Generate project context documentation to help team quickly get started"
127
+ },
128
+ "add_feature": {
129
+ "description": "Generate new feature specification documents (requirements/design/task list) based on project context",
130
+ "usage": "Generate new feature specification documents (requirements/design/task list) based on project context"
131
+ },
132
+ "estimate": {
133
+ "description": "Estimate development workload, output story points, time range (optimistic/normal/pessimistic), risk points",
134
+ "usage": "Estimate development workload, output story points, time range (optimistic/normal/pessimistic), risk points"
135
+ },
136
+ "interview": {
137
+ "description": "Requirements interview tool, clarifying requirements through structured questioning to avoid misunderstandings and rework",
138
+ "usage": "Requirements interview tool, clarifying requirements through structured questioning before development"
139
+ },
140
+ "ask_user": {
141
+ "description": "AI proactive questioning tool, supporting single or multiple questions, providing options, marking importance",
142
+ "usage": "AI proactively asks users questions, supporting single or multiple questions, providing options, marking importance"
143
+ },
144
+ "ui_design_system": {
145
+ "description": "Intelligent design system generator, generating complete design specifications based on product type reasoning",
146
+ "usage": "Based on product type and requirements, use AI reasoning engine to generate complete design system recommendations"
147
+ },
148
+ "ui_search": {
149
+ "description": "Search UI/UX database, including colors, icons, charts, components, design patterns, etc.",
150
+ "usage": "Search UI/UX database using BM25 algorithm for intelligent search"
151
+ },
152
+ "sync_ui_data": {
153
+ "description": "Sync UI/UX data to local cache, supporting automatic update checking and forced sync",
154
+ "usage": "Sync UI/UX data to local cache, downloading latest data from npm package uipro-cli"
155
+ }
156
+ }
157
+ }
@@ -0,0 +1,157 @@
1
+ {
2
+ "meta": {
3
+ "title": "すべてのツール - 21個のAI開発ツール完全リスト | MCP Probe Kit",
4
+ "description": "MCP Probe Kit 完全ツールリスト:6個のワークフローオーケストレーションツール、3個のコード分析ツール、1個のGitツール、1個の生成ツール、7個のプロジェクト管理ツール、3個のUI/UXツール。",
5
+ "keywords": "AI開発ツール, コード生成ツール, コードレビューツール, Git自動化, UI生成, コードリファクタリング, パフォーマンス最適化, セキュリティスキャン"
6
+ },
7
+ "page": {
8
+ "subtitle": "MCP Probe Kitは21個の実用的なツールを提供し、コアおよびオーケストレーションツールは構造化出力をサポートします"
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
+ },
45
+ "categories": {
46
+ "workflow": {
47
+ "title": "ワークフローオーケストレーション",
48
+ "count": "6個"
49
+ },
50
+ "analysis": {
51
+ "title": "コード分析",
52
+ "count": "3個"
53
+ },
54
+ "git": {
55
+ "title": "Gitツール",
56
+ "count": "2個"
57
+ },
58
+ "generation": {
59
+ "title": "コード生成",
60
+ "count": "1個"
61
+ },
62
+ "project": {
63
+ "title": "プロジェクト管理",
64
+ "count": "6個"
65
+ },
66
+ "uiux": {
67
+ "title": "UI/UXデザイン",
68
+ "count": "3個"
69
+ }
70
+ },
71
+ "toolsData": {
72
+ "start_feature": {
73
+ "description": "完全な機能開発ワークフローオーケストレーション:コンテキストチェック → 仕様生成 → 作業量見積もり",
74
+ "usage": "完全な機能開発プロセスを開始し、要件ドキュメント、設計計画、作業量見積もりを自動生成します"
75
+ },
76
+ "start_bugfix": {
77
+ "description": "バグ修正ワークフローオーケストレーション:コンテキストチェック → 分析と特定 → 修正ソリューション → テスト生成",
78
+ "usage": "体系的なバグ修正に使用され、完全な分析、特定、修正、テストソリューションを提供します"
79
+ },
80
+ "start_onboard": {
81
+ "description": "プロジェクトオンボーディングワークフロー:コンテキストドキュメントを生成し、新メンバーがプロジェクトを迅速に理解できるようにします",
82
+ "usage": "新メンバーがプロジェクト構造、技術スタック、開発標準を迅速に理解できるようにします"
83
+ },
84
+ "start_ralph": {
85
+ "description": "Ralph Wiggum Loop自動開発、デフォルトで複数の安全保護が有効になっているループ開発プロセスを開始します",
86
+ "usage": "自動ループ開発を開始し、AIは目標が達成されるか安全制限に達するまで継続的に反復します"
87
+ },
88
+ "start_product": {
89
+ "description": "完全な製品設計ワークフローオーケストレーション:PRD → プロトタイプドキュメント → デザインシステム → HTMLプロトタイプ → プロジェクトコンテキスト更新",
90
+ "usage": "要件からHTMLプロトタイプまでのワンクリック完了、直接デモ可能な製品プロトタイプを生成します"
91
+ },
92
+ "start_ui": {
93
+ "description": "統一UI開発エントリ:デザインシステムチェック → コンポーネントカタログ生成 → テンプレート検索/生成 → コードレンダリング",
94
+ "usage": "デザインシステムから最終コードまで、UI開発プロセス全体をワンクリックで完了します"
95
+ },
96
+ "code_review": {
97
+ "description": "インテリジェントコードレビュー、セキュリティ、パフォーマンス、品質、スタイル、ベストプラクティスなど複数の次元からコードを分析します",
98
+ "usage": "包括的なコード品質レビュー、構造化された問題リスト(severity/category/suggestion)を出力します"
99
+ },
100
+ "fix_bug": {
101
+ "description": "バグ修正ガイダンス、根本原因分析、修正計画、テスト計画、予防措置を提供します",
102
+ "usage": "根本原因分析、修正ソリューション、テスト計画、予防措置を含む完全なバグ修正ガイダンスを提供します"
103
+ },
104
+ "refactor": {
105
+ "description": "リファクタリング提案ツール、コード構造を分析し、リファクタリング手順、リスク評価、ロールバック計画を提供します",
106
+ "usage": "コード構造を分析し、リファクタリング提案、リファクタリング手順、リスク評価を提供します"
107
+ },
108
+ "gencommit": {
109
+ "description": "コード変更に基づいてConventional Commits仕様に準拠したGitコミットメッセージを自動生成します",
110
+ "usage": "コード変更に基づいてConventional Commits仕様に準拠したコミットメッセージを生成します"
111
+ },
112
+ "git_work_report": {
113
+ "description": "Git diff分析に基づいて作業レポート(日報/定期報告)を生成し、実際の作業内容をインテリジェントに抽出します",
114
+ "usage": "指定された日付のGitコミットを自動的に読み取り、diff内容を分析し、簡潔で専門的な作業レポートを生成します。直接コマンドが失敗した場合、一時スクリプトソリューションを提供します(実行後自動削除)"
115
+ },
116
+ "gentest": {
117
+ "description": "Jest/Vitest/Mochaフレームワークをサポートし、エッジケースとモックデータを含む単体テストを生成します",
118
+ "usage": "エッジケースとモックを含む単体テストコードを生成します"
119
+ },
120
+ "init_project": {
121
+ "description": "Spec-Driven Developmentアプローチに従って要件/設計/タスクドキュメントを生成します",
122
+ "usage": "Spec-Driven Developmentアプローチに従って要件/設計/タスクドキュメントを生成します"
123
+ },
124
+ "init_project_context": {
125
+ "description": "プロジェクトコンテキストドキュメント(技術スタック/アーキテクチャ/コーディング標準)を生成します",
126
+ "usage": "チームが迅速に開始できるようにプロジェクトコンテキストドキュメントを生成します"
127
+ },
128
+ "add_feature": {
129
+ "description": "プロジェクトコンテキストに基づいて新機能仕様ドキュメント(要件/設計/タスクリスト)を生成します",
130
+ "usage": "プロジェクトコンテキストに基づいて新機能仕様ドキュメント(要件/設計/タスクリスト)を生成します"
131
+ },
132
+ "estimate": {
133
+ "description": "開発作業量を見積もり、ストーリーポイント、時間範囲(楽観的/通常/悲観的)、リスクポイントを出力します",
134
+ "usage": "開発作業量を見積もり、ストーリーポイント、時間範囲(楽観的/通常/悲観的)、リスクポイントを出力します"
135
+ },
136
+ "interview": {
137
+ "description": "要件インタビューツール、構造化された質問を通じて要件を明確にし、誤解と手戻りを回避します",
138
+ "usage": "開発前に構造化された質問を通じて要件を明確にする要件インタビューツール"
139
+ },
140
+ "ask_user": {
141
+ "description": "AIプロアクティブ質問ツール、単一または複数の質問をサポートし、オプションを提供し、重要性をマークします",
142
+ "usage": "AIがユーザーに積極的に質問し、単一または複数の質問をサポートし、オプションを提供し、重要性をマークします"
143
+ },
144
+ "ui_design_system": {
145
+ "description": "インテリジェントデザインシステムジェネレーター、製品タイプの推論に基づいて完全なデザイン仕様を生成します",
146
+ "usage": "製品タイプと要件に基づいて、AI推論エンジンを使用して完全なデザインシステムの推奨事項を生成します"
147
+ },
148
+ "ui_search": {
149
+ "description": "色、アイコン、チャート、コンポーネント、デザインパターンなどを含むUI/UXデータベースを検索します",
150
+ "usage": "BM25アルゴリズムを使用してインテリジェント検索を行うUI/UXデータベースを検索します"
151
+ },
152
+ "sync_ui_data": {
153
+ "description": "UI/UXデータをローカルキャッシュに同期し、自動更新チェックと強制同期をサポートします",
154
+ "usage": "npmパッケージuipro-cliから最新データをダウンロードし、UI/UXデータをローカルキャッシュに同期します"
155
+ }
156
+ }
157
+ }
@@ -0,0 +1,157 @@
1
+ {
2
+ "meta": {
3
+ "title": "모든 도구 - 21개 AI 개발 도구 전체 목록 | MCP Probe Kit",
4
+ "description": "MCP Probe Kit 전체 도구 목록: 6개의 워크플로우 오케스트레이션 도구, 3개의 코드 분석 도구, 1개의 Git 도구, 1개의 생성 도구, 7개의 프로젝트 관리 도구, 3개의 UI/UX 도구.",
5
+ "keywords": "AI 개발 도구, 코드 생성 도구, 코드 리뷰 도구, Git 자동화, UI 생성, 코드 리팩토링, 성능 최적화, 보안 스캔"
6
+ },
7
+ "page": {
8
+ "subtitle": "MCP Probe Kit은 21개의 실용적인 도구를 제공하며, 핵심 및 오케스트레이션 도구는 구조화된 출력을 지원합니다"
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
+ },
45
+ "categories": {
46
+ "workflow": {
47
+ "title": "워크플로우 오케스트레이션",
48
+ "count": "6개"
49
+ },
50
+ "analysis": {
51
+ "title": "코드 분석",
52
+ "count": "3개"
53
+ },
54
+ "git": {
55
+ "title": "Git 도구",
56
+ "count": "2개"
57
+ },
58
+ "generation": {
59
+ "title": "코드 생성",
60
+ "count": "1개"
61
+ },
62
+ "project": {
63
+ "title": "프로젝트 관리",
64
+ "count": "6개"
65
+ },
66
+ "uiux": {
67
+ "title": "UI/UX 디자인",
68
+ "count": "3개"
69
+ }
70
+ },
71
+ "toolsData": {
72
+ "start_feature": {
73
+ "description": "완전한 기능 개발 워크플로우 오케스트레이션: 컨텍스트 확인 → 사양 생성 → 작업량 추정",
74
+ "usage": "완전한 기능 개발 프로세스를 시작하여 요구사항 문서, 설계 계획 및 작업량 추정을 자동으로 생성합니다"
75
+ },
76
+ "start_bugfix": {
77
+ "description": "버그 수정 워크플로우 오케스트레이션: 컨텍스트 확인 → 분석 및 위치 파악 → 수정 솔루션 → 테스트 생성",
78
+ "usage": "체계적인 버그 수정에 사용되며 완전한 분석, 위치 파악, 수정 및 테스트 솔루션을 제공합니다"
79
+ },
80
+ "start_onboard": {
81
+ "description": "프로젝트 온보딩 워크플로우: 컨텍스트 문서를 생성하여 새 구성원이 프로젝트를 빠르게 이해할 수 있도록 돕습니다",
82
+ "usage": "새 구성원이 프로젝트 구조, 기술 스택 및 개발 표준을 빠르게 이해할 수 있도록 돕습니다"
83
+ },
84
+ "start_ralph": {
85
+ "description": "Ralph Wiggum Loop 자동화 개발, 기본적으로 여러 안전 보호 기능이 활성화된 루프 개발 프로세스를 시작합니다",
86
+ "usage": "자동화된 루프 개발을 시작하며, AI는 목표가 달성되거나 안전 제한에 도달할 때까지 지속적으로 반복합니다"
87
+ },
88
+ "start_product": {
89
+ "description": "완전한 제품 설계 워크플로우 오케스트레이션: PRD → 프로토타입 문서 → 디자인 시스템 → HTML 프로토타입 → 프로젝트 컨텍스트 업데이트",
90
+ "usage": "요구사항에서 HTML 프로토타입까지 원클릭 완료, 직접 시연 가능한 제품 프로토타입을 생성합니다"
91
+ },
92
+ "start_ui": {
93
+ "description": "통합 UI 개발 진입점: 디자인 시스템 확인 → 컴포넌트 카탈로그 생성 → 템플릿 검색/생성 → 코드 렌더링",
94
+ "usage": "디자인 시스템에서 최종 코드까지 전체 UI 개발 프로세스를 원클릭으로 완료합니다"
95
+ },
96
+ "code_review": {
97
+ "description": "지능형 코드 리뷰, 보안, 성능, 품질, 스타일 및 모범 사례 등 여러 차원에서 코드를 분석합니다",
98
+ "usage": "포괄적인 코드 품질 리뷰, 구조화된 문제 목록(severity/category/suggestion)을 출력합니다"
99
+ },
100
+ "fix_bug": {
101
+ "description": "버그 수정 가이드, 근본 원인 분석, 수정 계획, 테스트 계획 및 예방 조치를 제공합니다",
102
+ "usage": "근본 원인 분석, 수정 솔루션, 테스트 계획 및 예방 조치를 포함한 완전한 버그 수정 가이드를 제공합니다"
103
+ },
104
+ "refactor": {
105
+ "description": "리팩토링 제안 도구, 코드 구조를 분석하고 리팩토링 단계, 위험 평가 및 롤백 계획을 제공합니다",
106
+ "usage": "코드 구조를 분석하고 리팩토링 제안, 리팩토링 단계 및 위험 평가를 제공합니다"
107
+ },
108
+ "gencommit": {
109
+ "description": "코드 변경 사항을 기반으로 Conventional Commits 사양을 준수하는 Git 커밋 메시지를 자동으로 생성합니다",
110
+ "usage": "코드 변경 사항을 기반으로 Conventional Commits 사양을 준수하는 커밋 메시지를 생성합니다"
111
+ },
112
+ "git_work_report": {
113
+ "description": "Git diff 분석을 기반으로 작업 보고서(일일/정기)를 생성하고 실제 작업 내용을 지능적으로 추출합니다",
114
+ "usage": "지정된 날짜의 Git 커밋을 자동으로 읽고 diff 내용을 분석하여 간결하고 전문적인 작업 보고서를 생성합니다. 직접 명령이 실패하면 임시 스크립트 솔루션을 제공합니다(실행 후 자동 삭제)"
115
+ },
116
+ "gentest": {
117
+ "description": "Jest/Vitest/Mocha 프레임워크를 지원하고 엣지 케이스 및 모의 데이터를 포함하는 단위 테스트를 생성합니다",
118
+ "usage": "엣지 케이스 및 모의를 포함하는 단위 테스트 코드를 생성합니다"
119
+ },
120
+ "init_project": {
121
+ "description": "Spec-Driven Development 접근 방식에 따라 요구사항/설계/작업 문서를 생성합니다",
122
+ "usage": "Spec-Driven Development 접근 방식에 따라 요구사항/설계/작업 문서를 생성합니다"
123
+ },
124
+ "init_project_context": {
125
+ "description": "프로젝트 컨텍스트 문서(기술 스택/아키텍처/코딩 표준)를 생성합니다",
126
+ "usage": "팀이 빠르게 시작할 수 있도록 프로젝트 컨텍스트 문서를 생성합니다"
127
+ },
128
+ "add_feature": {
129
+ "description": "프로젝트 컨텍스트를 기반으로 새 기능 사양 문서(요구사항/설계/작업 목록)를 생성합니다",
130
+ "usage": "프로젝트 컨텍스트를 기반으로 새 기능 사양 문서(요구사항/설계/작업 목록)를 생성합니다"
131
+ },
132
+ "estimate": {
133
+ "description": "개발 작업량을 추정하고 스토리 포인트, 시간 범위(낙관적/정상/비관적), 위험 포인트를 출력합니다",
134
+ "usage": "개발 작업량을 추정하고 스토리 포인트, 시간 범위(낙관적/정상/비관적), 위험 포인트를 출력합니다"
135
+ },
136
+ "interview": {
137
+ "description": "요구사항 인터뷰 도구, 구조화된 질문을 통해 요구사항을 명확히 하여 오해와 재작업을 방지합니다",
138
+ "usage": "개발 전에 구조화된 질문을 통해 요구사항을 명확히 하는 요구사항 인터뷰 도구"
139
+ },
140
+ "ask_user": {
141
+ "description": "AI 능동적 질문 도구, 단일 또는 여러 질문을 지원하고 옵션을 제공하며 중요도를 표시합니다",
142
+ "usage": "AI가 사용자에게 능동적으로 질문하며 단일 또는 여러 질문을 지원하고 옵션을 제공하며 중요도를 표시합니다"
143
+ },
144
+ "ui_design_system": {
145
+ "description": "지능형 디자인 시스템 생성기, 제품 유형 추론을 기반으로 완전한 디자인 사양을 생성합니다",
146
+ "usage": "제품 유형 및 요구사항을 기반으로 AI 추론 엔진을 사용하여 완전한 디자인 시스템 권장 사항을 생성합니다"
147
+ },
148
+ "ui_search": {
149
+ "description": "색상, 아이콘, 차트, 컴포넌트, 디자인 패턴 등을 포함하는 UI/UX 데이터베이스를 검색합니다",
150
+ "usage": "BM25 알고리즘을 사용하여 지능형 검색을 수행하는 UI/UX 데이터베이스를 검색합니다"
151
+ },
152
+ "sync_ui_data": {
153
+ "description": "UI/UX 데이터를 로컬 캐시에 동기화하고 자동 업데이트 확인 및 강제 동기화를 지원합니다",
154
+ "usage": "npm 패키지 uipro-cli에서 최신 데이터를 다운로드하여 UI/UX 데이터를 로컬 캐시에 동기화합니다"
155
+ }
156
+ }
157
+ }