mcp-probe-kit 3.0.16 โ†’ 3.0.18

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 (74) hide show
  1. package/README.md +603 -399
  2. package/build/index.js +13 -1
  3. package/build/lib/__tests__/memory-client.unit.test.d.ts +1 -0
  4. package/build/lib/__tests__/memory-client.unit.test.js +83 -0
  5. package/build/lib/__tests__/memory-config.unit.test.d.ts +1 -0
  6. package/build/lib/__tests__/memory-config.unit.test.js +33 -0
  7. package/build/lib/cursor-history-client.d.ts +54 -0
  8. package/build/lib/cursor-history-client.js +240 -0
  9. package/build/lib/gitnexus-bridge.js +6 -8
  10. package/build/lib/memory-client.d.ts +61 -0
  11. package/build/lib/memory-client.js +293 -0
  12. package/build/lib/memory-config.d.ts +14 -0
  13. package/build/lib/memory-config.js +31 -0
  14. package/build/lib/memory-orchestration.d.ts +26 -0
  15. package/build/lib/memory-orchestration.js +65 -0
  16. package/build/lib/project-detector.js +6 -4
  17. package/build/lib/workspace-root.d.ts +12 -0
  18. package/build/lib/workspace-root.js +153 -0
  19. package/build/resources/ui-ux-data/metadata.json +1 -1
  20. package/build/schemas/code-analysis-tools.d.ts +1 -1
  21. package/build/schemas/code-analysis-tools.js +1 -1
  22. package/build/schemas/index.d.ts +198 -4
  23. package/build/schemas/index.js +2 -0
  24. package/build/schemas/memory-tools.d.ts +191 -0
  25. package/build/schemas/memory-tools.js +106 -0
  26. package/build/schemas/orchestration-tools.d.ts +3 -3
  27. package/build/schemas/orchestration-tools.js +3 -3
  28. package/build/schemas/ui-ux-schemas.d.ts +8 -0
  29. package/build/schemas/ui-ux-schemas.js +4 -0
  30. package/build/tools/__tests__/cursor-history.unit.test.d.ts +1 -0
  31. package/build/tools/__tests__/cursor-history.unit.test.js +87 -0
  32. package/build/tools/__tests__/memorize_asset.unit.test.d.ts +1 -0
  33. package/build/tools/__tests__/memorize_asset.unit.test.js +68 -0
  34. package/build/tools/code_insight.d.ts +20 -0
  35. package/build/tools/code_insight.js +15 -0
  36. package/build/tools/cursor_list_conversations.d.ts +7 -0
  37. package/build/tools/cursor_list_conversations.js +35 -0
  38. package/build/tools/cursor_read_conversation.d.ts +7 -0
  39. package/build/tools/cursor_read_conversation.js +36 -0
  40. package/build/tools/cursor_search_conversations.d.ts +7 -0
  41. package/build/tools/cursor_search_conversations.js +36 -0
  42. package/build/tools/index.d.ts +6 -0
  43. package/build/tools/index.js +7 -0
  44. package/build/tools/init_project_context.d.ts +20 -1
  45. package/build/tools/init_project_context.js +114 -99
  46. package/build/tools/memorize_asset.d.ts +7 -0
  47. package/build/tools/memorize_asset.js +66 -0
  48. package/build/tools/read_memory_asset.d.ts +7 -0
  49. package/build/tools/read_memory_asset.js +26 -0
  50. package/build/tools/scan_and_extract_patterns.d.ts +27 -0
  51. package/build/tools/scan_and_extract_patterns.js +346 -0
  52. package/build/tools/start_bugfix.d.ts +20 -0
  53. package/build/tools/start_bugfix.js +97 -69
  54. package/build/tools/start_feature.d.ts +20 -0
  55. package/build/tools/start_feature.js +61 -31
  56. package/build/tools/start_onboard.d.ts +20 -0
  57. package/build/tools/start_onboard.js +15 -0
  58. package/build/tools/start_ui.d.ts +20 -0
  59. package/build/tools/start_ui.js +66 -32
  60. package/docs/data/tools.js +472 -373
  61. package/docs/i18n/all-tools/en.json +38 -5
  62. package/docs/i18n/all-tools/ja.json +14 -4
  63. package/docs/i18n/all-tools/ko.json +13 -3
  64. package/docs/i18n/all-tools/zh-CN.json +38 -5
  65. package/docs/i18n/en.json +48 -10
  66. package/docs/i18n/ja.json +47 -9
  67. package/docs/i18n/ko.json +47 -9
  68. package/docs/i18n/zh-CN.json +48 -10
  69. package/docs/pages/all-tools.html +515 -515
  70. package/docs/pages/examples.html +661 -661
  71. package/docs/pages/getting-started.html +673 -582
  72. package/docs/pages/migration.html +291 -291
  73. package/package.json +83 -82
  74. package/docs/debug-i18n.html +0 -163
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "meta": {
3
- "title": "All Tools - Complete List of 22 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.",
3
+ "title": "All Tools - Complete List of 28 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 6 memory/Cursor history tools.",
5
5
  "keywords": "AI development tools, code generation tools, code review tools, Git automation, UI generation, code refactoring, performance optimization, security scanning"
6
6
  },
7
7
  "page": {
8
- "subtitle": "MCP Probe Kit provides 22 practical tools with structured output support for core and orchestration tools"
8
+ "subtitle": "MCP Probe Kit provides 28 practical tools with structured output support for core and orchestration tools"
9
9
  },
10
10
  "search": {
11
11
  "placeholder": "๐Ÿ” Search tool name or description...",
@@ -40,8 +40,13 @@
40
40
  "ask_user": "Ask User",
41
41
  "ui_design_system": "Design System",
42
42
  "ui_search": "Search UI",
43
- "sync_ui_data": "Sync Data",
44
- "code_insight": "Code Insight"
43
+ "code_insight": "Code Insight",
44
+ "read_memory_asset": "Read Memory",
45
+ "memorize_asset": "Store Memory",
46
+ "scan_and_extract_patterns": "Extract Patterns",
47
+ "cursor_list_conversations": "List Chats",
48
+ "cursor_search_conversations": "Search Chats",
49
+ "cursor_read_conversation": "Read Chat"
45
50
  },
46
51
  "categories": {
47
52
  "workflow": {
@@ -67,6 +72,10 @@
67
72
  "uiux": {
68
73
  "title": "UI/UX Design",
69
74
  "count": "3 tools"
75
+ },
76
+ "memory": {
77
+ "title": "Memory & Cursor History",
78
+ "count": "6 tools"
70
79
  }
71
80
  },
72
81
  "toolsData": {
@@ -157,6 +166,30 @@
157
166
  "code_insight": {
158
167
  "description": "Code graph insight tool, bridging GitNexus to analyze call chains, context, and impact (auto-degrades when unavailable)",
159
168
  "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"
169
+ },
170
+ "read_memory_asset": {
171
+ "description": "Read the full content and metadata of a stored memory asset by asset ID",
172
+ "usage": "Use this after a workflow or search result already found a memory summary and you need the full reusable artifact"
173
+ },
174
+ "memorize_asset": {
175
+ "description": "Persist high-value code, spec, or pattern assets into the vector memory system for later reuse",
176
+ "usage": "Use after implementation to store reusable assets into the Qdrant + embedding memory backend"
177
+ },
178
+ "scan_and_extract_patterns": {
179
+ "description": "Extract reusable patterns from a code snippet, file, or directory before deciding whether to store them into memory",
180
+ "usage": "Use for pattern mining first, then optionally follow with memorize_asset to persist the best candidates"
181
+ },
182
+ "cursor_list_conversations": {
183
+ "description": "Read local Cursor conversation summaries, with optional filtering by title or workspace",
184
+ "usage": "Useful for resuming previous work and locating recent conversations in a specific workspace"
185
+ },
186
+ "cursor_search_conversations": {
187
+ "description": "Search local Cursor history messages by keyword or request id",
188
+ "usage": "Useful for tracing prior evidence by log snippet, issue keyword, or request id"
189
+ },
190
+ "cursor_read_conversation": {
191
+ "description": "Read the full local Cursor conversation timeline for a single composer_id",
192
+ "usage": "Useful for precisely resuming a specific historical conversation and reviewing message order and context"
160
193
  }
161
194
  }
162
195
  }
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "meta": {
3
- "title": "ใ™ในใฆใฎใƒ„ใƒผใƒซ - 22ๅ€‹ใฎAI้–‹็™บใƒ„ใƒผใƒซๅฎŒๅ…จใƒชใ‚นใƒˆ | MCP Probe Kit",
4
- "description": "MCP Probe Kit ๅฎŒๅ…จใƒ„ใƒผใƒซใƒชใ‚นใƒˆ๏ผš6ๅ€‹ใฎใƒฏใƒผใ‚ฏใƒ•ใƒญใƒผใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใƒ„ใƒผใƒซใ€4ๅ€‹ใฎใ‚ณใƒผใƒ‰ๅˆ†ๆžใƒ„ใƒผใƒซใ€2ๅ€‹ใฎGitใƒ„ใƒผใƒซใ€1ๅ€‹ใฎ็”Ÿๆˆใƒ„ใƒผใƒซใ€6ๅ€‹ใฎใƒ—ใƒญใ‚ธใ‚งใ‚ฏใƒˆ็ฎก็†ใƒ„ใƒผใƒซใ€3ๅ€‹ใฎUI/UXใƒ„ใƒผใƒซใ€‚",
3
+ "title": "ใ™ในใฆใฎใƒ„ใƒผใƒซ - 28ๅ€‹ใฎAI้–‹็™บใƒ„ใƒผใƒซๅฎŒๅ…จใƒชใ‚นใƒˆ | MCP Probe Kit",
4
+ "description": "MCP Probe Kit ๅฎŒๅ…จใƒ„ใƒผใƒซใƒชใ‚นใƒˆ๏ผš6ๅ€‹ใฎใƒฏใƒผใ‚ฏใƒ•ใƒญใƒผใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใƒ„ใƒผใƒซใ€4ๅ€‹ใฎใ‚ณใƒผใƒ‰ๅˆ†ๆžใƒ„ใƒผใƒซใ€2ๅ€‹ใฎGitใƒ„ใƒผใƒซใ€1ๅ€‹ใฎ็”Ÿๆˆใƒ„ใƒผใƒซใ€6ๅ€‹ใฎใƒ—ใƒญใ‚ธใ‚งใ‚ฏใƒˆ็ฎก็†ใƒ„ใƒผใƒซใ€3ๅ€‹ใฎUI/UXใƒ„ใƒผใƒซใ€6ๅ€‹ใฎ Memory / Cursor History ใƒ„ใƒผใƒซใ€‚",
5
5
  "keywords": "AI้–‹็™บใƒ„ใƒผใƒซ, ใ‚ณใƒผใƒ‰็”Ÿๆˆใƒ„ใƒผใƒซ, ใ‚ณใƒผใƒ‰ใƒฌใƒ“ใƒฅใƒผใƒ„ใƒผใƒซ, Git่‡ชๅ‹•ๅŒ–, UI็”Ÿๆˆ, ใ‚ณใƒผใƒ‰ใƒชใƒ•ใ‚กใ‚ฏใ‚ฟใƒชใƒณใ‚ฐ, ใƒ‘ใƒ•ใ‚ฉใƒผใƒžใƒณใ‚นๆœ€้ฉๅŒ–, ใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใ‚นใ‚ญใƒฃใƒณ"
6
6
  },
7
7
  "page": {
8
- "subtitle": "MCP Probe Kitใฏ22ๅ€‹ใฎๅฎŸ็”จ็š„ใชใƒ„ใƒผใƒซใ‚’ๆไพ›ใ—ใ€ใ‚ณใ‚ขใŠใ‚ˆใณใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใƒ„ใƒผใƒซใฏๆง‹้€ ๅŒ–ๅ‡บๅŠ›ใ‚’ใ‚ตใƒใƒผใƒˆใ—ใพใ™"
8
+ "subtitle": "MCP Probe Kitใฏ28ๅ€‹ใฎๅฎŸ็”จ็š„ใชใƒ„ใƒผใƒซใ‚’ๆไพ›ใ—ใ€ใ‚ณใ‚ขใŠใ‚ˆใณใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใƒ„ใƒผใƒซใฏๆง‹้€ ๅŒ–ๅ‡บๅŠ›ใ‚’ใ‚ตใƒใƒผใƒˆใ—ใพใ™"
9
9
  },
10
10
  "search": {
11
11
  "placeholder": "๐Ÿ” ใƒ„ใƒผใƒซๅใพใŸใฏ่ชฌๆ˜Žใ‚’ๆคœ็ดข...",
@@ -41,7 +41,13 @@
41
41
  "ui_design_system": "ใƒ‡ใ‚ถใ‚คใƒณใ‚ทใ‚นใƒ†ใƒ ",
42
42
  "ui_search": "UIๆคœ็ดข",
43
43
  "sync_ui_data": "ใƒ‡ใƒผใ‚ฟๅŒๆœŸ",
44
- "code_insight": "ใ‚ณใƒผใƒ‰ๆดžๅฏŸ"
44
+ "code_insight": "ใ‚ณใƒผใƒ‰ๆดžๅฏŸ",
45
+ "read_memory_asset": "ใƒกใƒขใƒช่ชญๅ–",
46
+ "memorize_asset": "ใƒกใƒขใƒชไฟๅญ˜",
47
+ "scan_and_extract_patterns": "ใƒ‘ใ‚ฟใƒผใƒณๆŠฝๅ‡บ",
48
+ "cursor_list_conversations": "ไผš่ฉฑไธ€่ฆง",
49
+ "cursor_search_conversations": "ไผš่ฉฑๆคœ็ดข",
50
+ "cursor_read_conversation": "ไผš่ฉฑ่ชญๅ–"
45
51
  },
46
52
  "categories": {
47
53
  "workflow": {
@@ -67,6 +73,10 @@
67
73
  "uiux": {
68
74
  "title": "UI/UXใƒ‡ใ‚ถใ‚คใƒณ",
69
75
  "count": "3ๅ€‹"
76
+ },
77
+ "memory": {
78
+ "title": "Memory ใจ Cursor History",
79
+ "count": "6ๅ€‹"
70
80
  }
71
81
  },
72
82
  "toolsData": {
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "meta": {
3
- "title": "๋ชจ๋“  ๋„๊ตฌ - 22๊ฐœ AI ๊ฐœ๋ฐœ ๋„๊ตฌ ์ „์ฒด ๋ชฉ๋ก | MCP Probe Kit",
3
+ "title": "๋ชจ๋“  ๋„๊ตฌ - 28๊ฐœ AI ๊ฐœ๋ฐœ ๋„๊ตฌ ์ „์ฒด ๋ชฉ๋ก | MCP Probe Kit",
4
4
  "description": "MCP Probe Kit ์ „์ฒด ๋„๊ตฌ ๋ชฉ๋ก: 6๊ฐœ์˜ ์›Œํฌํ”Œ๋กœ์šฐ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ๋„๊ตฌ, 4๊ฐœ์˜ ์ฝ”๋“œ ๋ถ„์„ ๋„๊ตฌ, 2๊ฐœ์˜ Git ๋„๊ตฌ, 1๊ฐœ์˜ ์ƒ์„ฑ ๋„๊ตฌ, 6๊ฐœ์˜ ํ”„๋กœ์ ํŠธ ๊ด€๋ฆฌ ๋„๊ตฌ, 3๊ฐœ์˜ UI/UX ๋„๊ตฌ.",
5
5
  "keywords": "AI ๊ฐœ๋ฐœ ๋„๊ตฌ, ์ฝ”๋“œ ์ƒ์„ฑ ๋„๊ตฌ, ์ฝ”๋“œ ๋ฆฌ๋ทฐ ๋„๊ตฌ, Git ์ž๋™ํ™”, UI ์ƒ์„ฑ, ์ฝ”๋“œ ๋ฆฌํŒฉํ† ๋ง, ์„ฑ๋Šฅ ์ตœ์ ํ™”, ๋ณด์•ˆ ์Šค์บ”"
6
6
  },
7
7
  "page": {
8
- "subtitle": "MCP Probe Kit์€ 22๊ฐœ์˜ ์‹ค์šฉ์ ์ธ ๋„๊ตฌ๋ฅผ ์ œ๊ณตํ•˜๋ฉฐ, ํ•ต์‹ฌ ๋ฐ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ๋„๊ตฌ๋Š” ๊ตฌ์กฐํ™”๋œ ์ถœ๋ ฅ์„ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค"
8
+ "subtitle": "MCP Probe Kit์€ 28๊ฐœ์˜ ์‹ค์šฉ์ ์ธ ๋„๊ตฌ๋ฅผ ์ œ๊ณตํ•˜๋ฉฐ, ํ•ต์‹ฌ ๋ฐ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ๋„๊ตฌ๋Š” ๊ตฌ์กฐํ™”๋œ ์ถœ๋ ฅ์„ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค"
9
9
  },
10
10
  "search": {
11
11
  "placeholder": "๐Ÿ” ๋„๊ตฌ ์ด๋ฆ„ ๋˜๋Š” ์„ค๋ช… ๊ฒ€์ƒ‰...",
@@ -41,7 +41,13 @@
41
41
  "ui_design_system": "๋””์ž์ธ ์‹œ์Šคํ…œ",
42
42
  "ui_search": "UI ๊ฒ€์ƒ‰",
43
43
  "sync_ui_data": "๋ฐ์ดํ„ฐ ๋™๊ธฐํ™”",
44
- "code_insight": "์ฝ”๋“œ ์ธ์‚ฌ์ดํŠธ"
44
+ "code_insight": "์ฝ”๋“œ ์ธ์‚ฌ์ดํŠธ",
45
+ "read_memory_asset": "๋ฉ”๋ชจ๋ฆฌ ์ฝ๊ธฐ",
46
+ "memorize_asset": "๋ฉ”๋ชจ๋ฆฌ ์ €์žฅ",
47
+ "scan_and_extract_patterns": "ํŒจํ„ด ์ถ”์ถœ",
48
+ "cursor_list_conversations": "๋Œ€ํ™” ๋ชฉ๋ก",
49
+ "cursor_search_conversations": "๋Œ€ํ™” ๊ฒ€์ƒ‰",
50
+ "cursor_read_conversation": "๋Œ€ํ™” ์ฝ๊ธฐ"
45
51
  },
46
52
  "categories": {
47
53
  "workflow": {
@@ -67,6 +73,10 @@
67
73
  "uiux": {
68
74
  "title": "UI/UX ๋””์ž์ธ",
69
75
  "count": "3๊ฐœ"
76
+ },
77
+ "memory": {
78
+ "title": "Memory ๋ฐ Cursor History",
79
+ "count": "6๊ฐœ"
70
80
  }
71
81
  },
72
82
  "toolsData": {
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "meta": {
3
- "title": "ๆ‰€ๆœ‰ๅทฅๅ…ท - 22ไธชAI็ ”ๅ‘ๅทฅๅ…ทๅฎŒๆ•ดๅˆ—่กจ | MCP Probe Kit",
4
- "description": "MCP Probe Kit ๅฎŒๆ•ดๅทฅๅ…ทๅˆ—่กจ๏ผš6ไธชๅทฅไฝœๆต็ผ–ๆŽ’ๅทฅๅ…ทใ€4ไธชไปฃ็ ๅˆ†ๆžๅทฅๅ…ทใ€2ไธชGitๅทฅๅ…ทใ€1ไธช็”Ÿๆˆๅทฅๅ…ทใ€6ไธช้กน็›ฎ็ฎก็†ๅทฅๅ…ทใ€3ไธชUI/UXๅทฅๅ…ทใ€‚",
3
+ "title": "ๆ‰€ๆœ‰ๅทฅๅ…ท - 28ไธชAI็ ”ๅ‘ๅทฅๅ…ทๅฎŒๆ•ดๅˆ—่กจ | MCP Probe Kit",
4
+ "description": "MCP Probe Kit ๅฎŒๆ•ดๅทฅๅ…ทๅˆ—่กจ๏ผš6ไธชๅทฅไฝœๆต็ผ–ๆŽ’ๅทฅๅ…ทใ€4ไธชไปฃ็ ๅˆ†ๆžๅทฅๅ…ทใ€2ไธชGitๅทฅๅ…ทใ€1ไธช็”Ÿๆˆๅทฅๅ…ทใ€6ไธช้กน็›ฎ็ฎก็†ๅทฅๅ…ทใ€3ไธชUI/UXๅทฅๅ…ทใ€6ไธช่ฎฐๅฟ†ไธŽ Cursor ๅކๅฒๅทฅๅ…ทใ€‚",
5
5
  "keywords": "AI ๅผ€ๅ‘ๅทฅๅ…ท, ไปฃ็ ็”Ÿๆˆๅทฅๅ…ท, ไปฃ็ ๅฎกๆŸฅๅทฅๅ…ท, Git ่‡ชๅŠจๅŒ–, UI ็”Ÿๆˆ, ไปฃ็ ้‡ๆž„, ๆ€ง่ƒฝไผ˜ๅŒ–, ๅฎ‰ๅ…จๆ‰ซๆ"
6
6
  },
7
7
  "page": {
8
- "subtitle": "MCP Probe Kit ๆไพ› 22 ไธชๅฎž็”จๅทฅๅ…ท๏ผŒๆ ธๅฟƒไธŽ็ผ–ๆŽ’ๅทฅๅ…ทๆ”ฏๆŒ็ป“ๆž„ๅŒ–่พ“ๅ‡บ"
8
+ "subtitle": "MCP Probe Kit ๆไพ› 28 ไธชๅฎž็”จๅทฅๅ…ท๏ผŒๆ ธๅฟƒไธŽ็ผ–ๆŽ’ๅทฅๅ…ทๆ”ฏๆŒ็ป“ๆž„ๅŒ–่พ“ๅ‡บ"
9
9
  },
10
10
  "search": {
11
11
  "placeholder": "๐Ÿ” ๆœ็ดขๅทฅๅ…ทๅ็งฐๆˆ–ๆ่ฟฐ...",
@@ -40,8 +40,13 @@
40
40
  "ask_user": "ๆ้—ฎ็”จๆˆท",
41
41
  "ui_design_system": "่ฎพ่ฎก็ณป็ปŸ",
42
42
  "ui_search": "ๆœ็ดขUI",
43
- "sync_ui_data": "ๅŒๆญฅๆ•ฐๆฎ",
44
- "code_insight": "ๅ›พ่ฐฑๆดžๅฏŸ"
43
+ "code_insight": "ๅ›พ่ฐฑๆดžๅฏŸ",
44
+ "read_memory_asset": "่ฏปๅ–่ฎฐๅฟ†",
45
+ "memorize_asset": "ๆฒ‰ๆท€่ฎฐๅฟ†",
46
+ "scan_and_extract_patterns": "ๆŠฝๅ–ๆจกๅผ",
47
+ "cursor_list_conversations": "ๅˆ—ไผš่ฏ",
48
+ "cursor_search_conversations": "ๆœไผš่ฏ",
49
+ "cursor_read_conversation": "่ฏปไผš่ฏ"
45
50
  },
46
51
  "categories": {
47
52
  "workflow": {
@@ -67,6 +72,10 @@
67
72
  "uiux": {
68
73
  "title": "UI/UX ่ฎพ่ฎก",
69
74
  "count": "3 ไธช"
75
+ },
76
+ "memory": {
77
+ "title": "่ฎฐๅฟ†ไธŽ Cursor ๅކๅฒ",
78
+ "count": "6 ไธช"
70
79
  }
71
80
  },
72
81
  "toolsData": {
@@ -157,6 +166,30 @@
157
166
  "code_insight": {
158
167
  "description": "ไปฃ็ ๅ›พ่ฐฑๆดžๅฏŸๅทฅๅ…ท๏ผŒๆกฅๆŽฅ GitNexus ๅˆ†ๆž่ฐƒ็”จ้“พใ€ไธŠไธ‹ๆ–‡ๅ’Œๅฝฑๅ“้ข๏ผˆไธๅฏ็”จๆ—ถ่‡ชๅŠจ้™็บง๏ผ‰",
159
168
  "usage": "็”จไบŽๅˆทๆ–ฐ GitNexus ๅ›พ่ฐฑใ€่Žทๅ–ไปปๅŠก็บง่ฐƒ็”จ้“พ/ไธŠไธ‹ๆ–‡/ๅฝฑๅ“้ข๏ผŒๅนถๆŠŠ็ป“ๆžœไฟๅญ˜ๅˆฐ docs/graph-insights ไธŽ project-context ็ดขๅผ•"
169
+ },
170
+ "read_memory_asset": {
171
+ "description": "ๆŒ‰่ต„ไบง ID ่ฏปๅ–ๅทฒๆฒ‰ๆท€่ฎฐๅฟ†็š„ๅฎŒๆ•ดๅ†…ๅฎนไธŽๅ…ƒๆ•ฐๆฎ",
172
+ "usage": "ๅฝ“็ผ–ๆŽ’้˜ถๆฎตๅทฒ็ปๅ‘ฝไธญ่ฎฐๅฟ†ๆ‘˜่ฆ๏ผŒ้œ€่ฆ่ฟ›ไธ€ๆญฅๆŸฅ็œ‹ๅฎŒๆ•ดไปฃ็ ใ€่ง„่Œƒๆˆ–ๆจกๅผ่ฏฆๆƒ…ๆ—ถไฝฟ็”จ"
173
+ },
174
+ "memorize_asset": {
175
+ "description": "ๆŠŠ้ซ˜ไปทๅ€ผไปฃ็ ใ€่ง„่Œƒๆˆ–ๆจกๅผๅ†™ๅ…ฅๅ‘้‡่ฎฐๅฟ†็ณป็ปŸ๏ผŒไพ›ๅŽ็ปญๅค็”จ",
176
+ "usage": "ๅœจๅผ€ๅ‘ๅฎŒๆˆๅŽ๏ผŒๅฐ†ๅฏๅค็”จ่ต„ไบงๆฒ‰ๆท€ๅˆฐ Qdrant + embedding ่ฎฐๅฟ†็ณป็ปŸไธญ"
177
+ },
178
+ "scan_and_extract_patterns": {
179
+ "description": "ไปŽๅ•ๆฎตไปฃ็ ใ€ๅ•ๆ–‡ไปถๆˆ–ๆ•ดไธช็›ฎๅฝ•ไธญๆŠฝๅ–ๅฏๅค็”จๆจกๅผ๏ผŒๅ†ๅ†ณๅฎšๆ˜ฏๅฆๆฒ‰ๆท€ๅˆฐ่ฎฐๅฟ†็ณป็ปŸ",
180
+ "usage": "้€‚ๅˆๅ…ˆๅšๆจกๅผๅฝ’็บณ๏ผŒๅ†ๆŒ‰้œ€่ฐƒ็”จ memorize_asset ๅ†™ๅ…ฅ่ฎฐๅฟ†"
181
+ },
182
+ "cursor_list_conversations": {
183
+ "description": "่ฏปๅ– Cursor ๆœฌๅœฐๅކๅฒไผš่ฏๆ‘˜่ฆ๏ผŒๅฏๆŒ‰ๆ ‡้ข˜ๆˆ–ๅทฅไฝœๅŒบ่ฟ‡ๆปคๆœ€่ฟ‘ไผš่ฏ",
184
+ "usage": "็”จไบŽๆขๅคๆ—งไธŠไธ‹ๆ–‡ใ€ๅฎšไฝๆŸไธชๅทฅไฝœๅŒบๆœ€่ฟ‘ๅš่ฟ‡็š„ไผš่ฏ"
185
+ },
186
+ "cursor_search_conversations": {
187
+ "description": "ๅœจ Cursor ๆœฌๅœฐๅކๅฒๆถˆๆฏ้‡ŒๆŒ‰ๅ…ณ้”ฎ่ฏๆˆ– request id ๆœ็ดขๅ‘ฝไธญๅ†…ๅฎน",
188
+ "usage": "็”จไบŽๆŒ‰้—ฎ้ข˜ใ€ๆ—ฅๅฟ—็‰‡ๆฎตใ€request id ๅ›žๆบฏ่ฟ‡ๅพ€ไผš่ฏ่ฏๆฎ"
189
+ },
190
+ "cursor_read_conversation": {
191
+ "description": "ๆŒ‰ composer_id ่ฏปๅ–ไธ€ๆก Cursor ๆœฌๅœฐไผš่ฏ็š„ๅฎŒๆ•ดๆถˆๆฏๆ—ถ้—ด็บฟ",
192
+ "usage": "็”จไบŽ็ฒพ็กฎ็ปญๆŽฅๆŸไธ€ๆกๅކๅฒไผš่ฏ๏ผŒๆŸฅ็œ‹ๆถˆๆฏ้กบๅบใ€ไธŠไธ‹ๆ–‡ๅ’Œๅ…ณ้”ฎ่พ“ๅ‡บ"
160
193
  }
161
194
  }
162
195
  }
package/docs/i18n/en.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "meta": {
3
- "title": "MCP Probe Kit - AI-Powered Complete Development Toolkit | 22 Tools Covering Entire Development Lifecycle",
4
- "description": "MCP Probe Kit provides 22 AI-powered development tools covering requirements analysis, code development, quality assurance, bug fixing, and release management. Supports Cursor, Cline, Claude Desktop with 100% structured output.",
3
+ "title": "MCP Probe Kit - AI-Powered Complete Development Toolkit | 28 Tools Covering Entire Development Lifecycle",
4
+ "description": "MCP Probe Kit provides 28 AI-powered development tools covering requirements analysis, code development, quality assurance, bug fixing, and release management. Supports Cursor, Cline, Claude Desktop with 100% structured output.",
5
5
  "keywords": "MCP Probe Kit, AI development tools, code generation, code review, Git tools, UI development, development efficiency, Cursor, Cline, Claude, MCP Server"
6
6
  },
7
7
  "nav": {
@@ -14,19 +14,19 @@
14
14
  "hero": {
15
15
  "title": "๐Ÿš€ MCP Probe Kit",
16
16
  "subtitle": "AI Development Enhancement Toolkit ยท Documentation Center",
17
- "version": "v3.0.16",
17
+ "version": "v3.0.18",
18
18
  "quickStart": "Quick Start",
19
19
  "visitMainSite": "Visit ByteZoneX"
20
20
  },
21
21
  "sections": {
22
22
  "quickStart": {
23
23
  "title": "Quick Start",
24
- "description": "Get started with MCP Probe Kit v3.0.16 in 5 minutes",
24
+ "description": "Get started with MCP Probe Kit v3.0.18 in 5 minutes",
25
25
  "installConfig": "Installation & Configuration"
26
26
  },
27
27
  "tools": {
28
28
  "title": "Tools Documentation",
29
- "description": "Complete reference for 22 practical tools, including code graph insight and orchestration workflows",
29
+ "description": "Complete reference for 28 practical tools, including code graph insight and orchestration workflows",
30
30
  "allTools": "All Tools"
31
31
  },
32
32
  "guides": {
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "gettingStarted": {
65
65
  "title": "Installation & Configuration",
66
- "subtitle": "Get started with MCP Probe Kit v3.0.10 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
66
+ "subtitle": "Get started with MCP Probe Kit v3.0.18 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
67
67
  "breadcrumb": {
68
68
  "home": "Documentation",
69
69
  "quickStart": "Quick Start",
@@ -87,6 +87,44 @@
87
87
  "noteText": "Need to manually run",
88
88
  "updateText": "to update version"
89
89
  },
90
+ "memory": {
91
+ "title": "Memory System Setup (Qdrant + Embedding)",
92
+ "descriptionPrefix": "If you want to use",
93
+ "descriptionSuffix": ", you need to configure both a vector database and an embedding service.",
94
+ "optionA": {
95
+ "title": "Option A: Qdrant + Ollama (recommended)"
96
+ },
97
+ "optionB": {
98
+ "title": "Option B: Qdrant + OpenAI-Compatible Embedding API"
99
+ },
100
+ "env": {
101
+ "title": "Environment Variables",
102
+ "item1": ": Qdrant endpoint, required by all memory features",
103
+ "item2": ": Optional Qdrant API key",
104
+ "item3": ": Collection name, default ",
105
+ "item4Prefix": ": ",
106
+ "item4Middle": " or ",
107
+ "item5": ": Embedding API endpoint",
108
+ "item6": ": Embedding API key, usually empty for Ollama",
109
+ "item7Prefix": ": Embedding model name, default ",
110
+ "item8Prefix": ": Default search result limit, default ",
111
+ "item9Prefix": ": Summary max characters, default "
112
+ },
113
+ "behavior": {
114
+ "title": "Behavior Notes",
115
+ "item1Prefix": "Memory writes require ",
116
+ "item1Middle": " and ",
117
+ "item2Prefix": "Read-only memory access (such as read by ID) only requires ",
118
+ "item3Prefix": "The first write auto-creates the Qdrant collection and uses ",
119
+ "item4": "Vector dimension is inferred automatically from the first embedding response"
120
+ },
121
+ "cursor": {
122
+ "title": "Cursor History Tools",
123
+ "item1": " do not depend on Qdrant or embeddings",
124
+ "item2": "Supports local Cursor installations on Windows / macOS / Linux",
125
+ "item3Prefix": "Reads the local Cursor database from "
126
+ }
127
+ },
90
128
  "windowsGraph": {
91
129
  "title": "Windows Notes for Graph Tools",
92
130
  "description": "Graph-aware tools may have a slower first run on Windows because GitNexus is started through npx by default.",
@@ -204,7 +242,7 @@
204
242
  "subtitle": "Smoothly migrate from v2.x to v3.0, understand breaking changes and new features",
205
243
  "overview": {
206
244
  "title": "Overview",
207
- "description": "MCP Probe Kit v3.0 is a major version update, streamlined to 22 tools, bringing more powerful features and better development experience.",
245
+ "description": "MCP Probe Kit v3.0 is a major version update, streamlined to 28 tools, bringing more powerful features and better development experience.",
208
246
  "migrationTime": "Migration Time:",
209
247
  "migrationTimeText": "Most projects can complete migration in 10-15 minutes, v2.x core tools remain compatible in v3.0."
210
248
  },
@@ -212,7 +250,7 @@
212
250
  "title": "Major Changes",
213
251
  "toolsOptimization": {
214
252
  "title": "1. Tools Streamlining",
215
- "description": "v2.x: 39 tools โ†’ v3.x: 22 tools (removed low-frequency tools, kept high-value tools)"
253
+ "description": "v2.x: 39 tools โ†’ v3.x: 28 tools (removed low-frequency tools, kept high-value tools)"
216
254
  },
217
255
  "workflows": {
218
256
  "title": "2. New Workflow Orchestration",
@@ -284,7 +322,7 @@
284
322
  "subtitle": "MCP Probe Kit integrates complete development process, best practices guide from requirements to deployment",
285
323
  "overview": {
286
324
  "title": "Complete Development Process",
287
- "description": "MCP Probe Kit's 22 tools cover the complete development process from requirements analysis to code deployment. Here are the recommended best practices.",
325
+ "description": "MCP Probe Kit's 28 tools cover the complete development process from requirements analysis to code deployment. Here are the recommended best practices.",
288
326
  "coreIdea": "Core Philosophy:",
289
327
  "coreIdeaText": "Chain the entire development process through workflow orchestration tools (start_*), making AI your development assistant."
290
328
  },
@@ -539,7 +577,7 @@
539
577
  "resources": {
540
578
  "title": "More Resources",
541
579
  "allTools": "Complete Tools Reference",
542
- "allToolsDesc": "View detailed descriptions of all 22 tools",
580
+ "allToolsDesc": "View detailed descriptions of all 28 tools",
543
581
  "gettingStarted": "Installation & Configuration",
544
582
  "gettingStartedDesc": "Quick start guide",
545
583
  "migration": "Migration Guide",
package/docs/i18n/ja.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "meta": {
3
- "title": "MCP Probe Kit - AI้ง†ๅ‹•ใฎๅฎŒๅ…จ้–‹็™บใƒ„ใƒผใƒซใ‚ญใƒƒใƒˆ | ้–‹็™บใƒฉใ‚คใƒ•ใ‚ตใ‚คใ‚ฏใƒซๅ…จไฝ“ใ‚’ใ‚ซใƒใƒผใ™ใ‚‹22ใฎใƒ„ใƒผใƒซ",
4
- "description": "MCP Probe Kitใฏใ€่ฆไปถๅˆ†ๆžใ€ใ‚ณใƒผใƒ‰้–‹็™บใ€ๅ“่ณชไฟ่จผใ€ใƒใ‚ฐไฟฎๆญฃใ€ใƒชใƒชใƒผใ‚น็ฎก็†ใ‚’ใ‚ซใƒใƒผใ™ใ‚‹22ใฎAI้ง†ๅ‹•้–‹็™บใƒ„ใƒผใƒซใ‚’ๆไพ›ใ—ใพใ™ใ€‚Cursorใ€Clineใ€Claude Desktopใ‚’ใ‚ตใƒใƒผใƒˆใ—ใ€100%ๆง‹้€ ๅŒ–ๅ‡บๅŠ›ใ‚’ๅฎŸ็พใ€‚",
3
+ "title": "MCP Probe Kit - AI้ง†ๅ‹•ใฎๅฎŒๅ…จ้–‹็™บใƒ„ใƒผใƒซใ‚ญใƒƒใƒˆ | ้–‹็™บใƒฉใ‚คใƒ•ใ‚ตใ‚คใ‚ฏใƒซๅ…จไฝ“ใ‚’ใ‚ซใƒใƒผใ™ใ‚‹28ใฎใƒ„ใƒผใƒซ",
4
+ "description": "MCP Probe Kitใฏใ€่ฆไปถๅˆ†ๆžใ€ใ‚ณใƒผใƒ‰้–‹็™บใ€ๅ“่ณชไฟ่จผใ€ใƒใ‚ฐไฟฎๆญฃใ€ใƒชใƒชใƒผใ‚น็ฎก็†ใ‚’ใ‚ซใƒใƒผใ™ใ‚‹28ใฎAI้ง†ๅ‹•้–‹็™บใƒ„ใƒผใƒซใ‚’ๆไพ›ใ—ใพใ™ใ€‚Cursorใ€Clineใ€Claude Desktopใ‚’ใ‚ตใƒใƒผใƒˆใ—ใ€100%ๆง‹้€ ๅŒ–ๅ‡บๅŠ›ใ‚’ๅฎŸ็พใ€‚",
5
5
  "keywords": "MCP Probe Kit, AI้–‹็™บใƒ„ใƒผใƒซ, ใ‚ณใƒผใƒ‰็”Ÿๆˆ, ใ‚ณใƒผใƒ‰ใƒฌใƒ“ใƒฅใƒผ, Gitใƒ„ใƒผใƒซ, UI้–‹็™บ, ้–‹็™บๅŠน็އ, Cursor, Cline, Claude, MCPใ‚ตใƒผใƒใƒผ"
6
6
  },
7
7
  "nav": {
@@ -14,19 +14,19 @@
14
14
  "hero": {
15
15
  "title": "๐Ÿš€ MCP Probe Kit",
16
16
  "subtitle": "AI้–‹็™บๅผทๅŒ–ใƒ„ใƒผใƒซใ‚ญใƒƒใƒˆ ยท ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚ปใƒณใ‚ฟใƒผ",
17
- "version": "v3.0.16",
17
+ "version": "v3.0.18",
18
18
  "quickStart": "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚นใ‚ฟใƒผใƒˆ",
19
19
  "visitMainSite": "ByteZoneXใ‚’่จชๅ•"
20
20
  },
21
21
  "sections": {
22
22
  "quickStart": {
23
23
  "title": "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚นใ‚ฟใƒผใƒˆ",
24
- "description": "5ๅˆ†ใงMCP Probe Kit v3.0.16ใ‚’ๅง‹ใ‚ใ‚‹",
24
+ "description": "5ๅˆ†ใงMCP Probe Kit v3.0.18ใ‚’ๅง‹ใ‚ใ‚‹",
25
25
  "installConfig": "ใ‚คใƒณใ‚นใƒˆใƒผใƒซใจ่จญๅฎš"
26
26
  },
27
27
  "tools": {
28
28
  "title": "ใƒ„ใƒผใƒซใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆ",
29
- "description": "22ใฎๅฎŸ็”จ็š„ใชใƒ„ใƒผใƒซใฎๅฎŒๅ…จใชใƒชใƒ•ใ‚กใƒฌใƒณใ‚นใ€‚ใ‚ณใƒผใƒ‰ใ‚ฐใƒฉใƒ•ๆดžๅฏŸใจใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใ‚’ๅซใ‚€",
29
+ "description": "28ใฎๅฎŸ็”จ็š„ใชใƒ„ใƒผใƒซใฎๅฎŒๅ…จใชใƒชใƒ•ใ‚กใƒฌใƒณใ‚นใ€‚ใ‚ณใƒผใƒ‰ใ‚ฐใƒฉใƒ•ๆดžๅฏŸใจใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใ‚’ๅซใ‚€",
30
30
  "allTools": "ใ™ในใฆใฎใƒ„ใƒผใƒซ"
31
31
  },
32
32
  "guides": {
@@ -87,6 +87,44 @@
87
87
  "noteText": "ๆ‰‹ๅ‹•ใงๅฎŸ่กŒใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™",
88
88
  "updateText": "ใƒใƒผใ‚ธใƒงใƒณใ‚’ๆ›ดๆ–ฐ"
89
89
  },
90
+ "memory": {
91
+ "title": "ใƒกใƒขใƒชใ‚ทใ‚นใƒ†ใƒ ใฎใ‚ปใƒƒใƒˆใ‚ขใƒƒใƒ—๏ผˆQdrant + Embedding๏ผ‰",
92
+ "descriptionPrefix": "ๆฌกใ‚’ไฝฟใ„ใŸใ„ๅ ดๅˆ๏ผš",
93
+ "descriptionSuffix": "ใ€ใƒ™ใ‚ฏใƒˆใƒซใƒ‡ใƒผใ‚ฟใƒ™ใƒผใ‚นใจ embedding ใ‚ตใƒผใƒ“ใ‚นใฎไธกๆ–นใ‚’่จญๅฎšใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚",
94
+ "optionA": {
95
+ "title": "ใ‚ชใƒ—ใ‚ทใƒงใƒณ A๏ผšQdrant + Ollama๏ผˆๆŽจๅฅจ๏ผ‰"
96
+ },
97
+ "optionB": {
98
+ "title": "ใ‚ชใƒ—ใ‚ทใƒงใƒณ B๏ผšQdrant + OpenAI-Compatible Embedding API"
99
+ },
100
+ "env": {
101
+ "title": "็’ฐๅขƒๅค‰ๆ•ฐใฎ่ชฌๆ˜Ž",
102
+ "item1": "๏ผšQdrant ใฎใ‚จใƒณใƒ‰ใƒใ‚คใƒณใƒˆใ€‚ใ™ในใฆใฎใƒกใƒขใƒชๆฉŸ่ƒฝใฎๅŸบๆœฌ่จญๅฎšใงใ™",
103
+ "item2": "๏ผšไปปๆ„ใฎ Qdrant API ใ‚ญใƒผ",
104
+ "item3": "๏ผšใ‚ณใƒฌใ‚ฏใ‚ทใƒงใƒณๅใ€‚ๆ—ขๅฎšๅ€คใฏ ",
105
+ "item4Prefix": "๏ผš",
106
+ "item4Middle": " ใพใŸใฏ ",
107
+ "item5": "๏ผšembedding API ใฎใ‚จใƒณใƒ‰ใƒใ‚คใƒณใƒˆ",
108
+ "item6": "๏ผšembedding API ใ‚ญใƒผใ€‚Ollama ๅˆฉ็”จๆ™‚ใฏ้€šๅธธ็ฉบใงใ™",
109
+ "item7Prefix": "๏ผšembedding ใƒขใƒ‡ใƒซๅใ€‚ๆ—ขๅฎšๅ€คใฏ ",
110
+ "item8Prefix": "๏ผšๆ—ขๅฎšใฎๆคœ็ดขไปถๆ•ฐใ€‚ๆ—ขๅฎšๅ€คใฏ ",
111
+ "item9Prefix": "๏ผš่ฆ็ด„ใฎๆœ€ๅคงๆ–‡ๅญ—ๆ•ฐใ€‚ๆ—ขๅฎšๅ€คใฏ "
112
+ },
113
+ "behavior": {
114
+ "title": "ๅ‹•ไฝœ่ชฌๆ˜Ž",
115
+ "item1Prefix": "ใƒกใƒขใƒชๆ›ธใ่พผใฟใซใฏ ",
116
+ "item1Middle": " ใจ ",
117
+ "item2Prefix": "่ชญใฟๅ–ใ‚Šๅฐ‚็”จใƒกใƒขใƒชใ‚ขใ‚ฏใ‚ปใ‚น๏ผˆID ๆŒ‡ๅฎš่ชญใฟๅ–ใ‚Šใชใฉ๏ผ‰ใฏ ",
118
+ "item3Prefix": "ๅˆๅ›žๆ›ธใ่พผใฟๆ™‚ใซ Qdrant collection ใ‚’่‡ชๅ‹•ไฝœๆˆใ—ใ€่ท้›ขๅฐบๅบฆใซใฏ ",
119
+ "item4": "ใƒ™ใ‚ฏใƒˆใƒซๆฌกๅ…ƒใฏๆœ€ๅˆใฎ embedding ๅฟœ็ญ”ใ‹ใ‚‰่‡ชๅ‹•ๆŽจๅฎšใ•ใ‚Œใพใ™"
120
+ },
121
+ "cursor": {
122
+ "title": "Cursor ๅฑฅๆญดใƒ„ใƒผใƒซ",
123
+ "item1": " ใฏ Qdrant ใ‚„ embedding ใซไพๅญ˜ใ—ใพใ›ใ‚“",
124
+ "item2": "Windows / macOS / Linux ใฎใƒญใƒผใ‚ซใƒซ Cursor ใ‚คใƒณใ‚นใƒˆใƒผใƒซใ‚’ใ‚ตใƒใƒผใƒˆใ—ใพใ™",
125
+ "item3Prefix": "ๆ—ขๅฎšใงใฏ Cursor ใฎใƒญใƒผใ‚ซใƒซใƒ‡ใƒผใ‚ฟใƒ™ใƒผใ‚น "
126
+ }
127
+ },
90
128
  "windowsGraph": {
91
129
  "title": "Windows ๅ‘ใ‘ใ‚ฐใƒฉใƒ•ใƒ„ใƒผใƒซ่ฃœ่ถณ",
92
130
  "description": "ใ‚ฐใƒฉใƒ•้–ข้€ฃใƒ„ใƒผใƒซใฏใ€GitNexus ใ‚’ๆ—ขๅฎšใง npx ็ตŒ็”ฑใง่ตทๅ‹•ใ™ใ‚‹ใŸใ‚ใ€Windows ใงใฏๅˆๅ›ž่ตทๅ‹•ใŒ้…ใใชใ‚‹ๅ ดๅˆใŒใ‚ใ‚Šใพใ™ใ€‚",
@@ -204,7 +242,7 @@
204
242
  "subtitle": "v2.xใ‹ใ‚‰v3.0ใธใ‚นใƒ ใƒผใ‚บใซ็งป่กŒใ—ใ€้‡ๅคงใชๅค‰ๆ›ดใจๆ–ฐๆฉŸ่ƒฝใ‚’็†่งฃใ™ใ‚‹",
205
243
  "overview": {
206
244
  "title": "ๆฆ‚่ฆ",
207
- "description": "MCP Probe Kit v3.0ใฏๅคง่ฆๆจกใชใƒใƒผใ‚ธใƒงใƒณใ‚ขใƒƒใƒ—ใƒ‡ใƒผใƒˆใงใ€22ใƒ„ใƒผใƒซใซๆœ€้ฉๅŒ–ใ•ใ‚Œใ€ใ‚ˆใ‚ŠๅผทๅŠ›ใชๆฉŸ่ƒฝใจใ‚ˆใ‚Š่‰ฏใ„้–‹็™บไฝ“้จ“ใ‚’ใ‚‚ใŸใ‚‰ใ—ใพใ™ใ€‚",
245
+ "description": "MCP Probe Kit v3.0ใฏๅคง่ฆๆจกใชใƒใƒผใ‚ธใƒงใƒณใ‚ขใƒƒใƒ—ใƒ‡ใƒผใƒˆใงใ€28ใƒ„ใƒผใƒซใซๆœ€้ฉๅŒ–ใ•ใ‚Œใ€ใ‚ˆใ‚ŠๅผทๅŠ›ใชๆฉŸ่ƒฝใจใ‚ˆใ‚Š่‰ฏใ„้–‹็™บไฝ“้จ“ใ‚’ใ‚‚ใŸใ‚‰ใ—ใพใ™ใ€‚",
208
246
  "migrationTime": "็งป่กŒๆ™‚้–“๏ผš",
209
247
  "migrationTimeText": "ใปใจใ‚“ใฉใฎใƒ—ใƒญใ‚ธใ‚งใ‚ฏใƒˆใฏ10ใ€œ15ๅˆ†ใง็งป่กŒใ‚’ๅฎŒไบ†ใงใใ€v2.xใฎใ‚ณใ‚ขใƒ„ใƒผใƒซใฏv3.0ใงไบ’ๆ›ๆ€งใ‚’็ถญๆŒใ—ใฆใ„ใพใ™ใ€‚"
210
248
  },
@@ -212,7 +250,7 @@
212
250
  "title": "ไธปใชๅค‰ๆ›ด็‚น",
213
251
  "toolsOptimization": {
214
252
  "title": "1. ใƒ„ใƒผใƒซใฎๆœ€้ฉๅŒ–",
215
- "description": "v2.x: 39ใƒ„ใƒผใƒซ โ†’ v3.x: 22ใƒ„ใƒผใƒซ๏ผˆไฝŽ้ ปๅบฆใƒ„ใƒผใƒซใ‚’ๅ‰Š้™คใ€้ซ˜ไพกๅ€คใƒ„ใƒผใƒซใ‚’ไฟๆŒ๏ผ‰"
253
+ "description": "v2.x: 39ใƒ„ใƒผใƒซ โ†’ v3.x: 28ใƒ„ใƒผใƒซ๏ผˆไฝŽ้ ปๅบฆใƒ„ใƒผใƒซใ‚’ๅ‰Š้™คใ€้ซ˜ไพกๅ€คใƒ„ใƒผใƒซใ‚’ไฟๆŒ๏ผ‰"
216
254
  },
217
255
  "workflows": {
218
256
  "title": "2. ๆ–ฐใ—ใ„ใƒฏใƒผใ‚ฏใƒ•ใƒญใƒผใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณ",
@@ -284,7 +322,7 @@
284
322
  "subtitle": "MCP Probe KitใฏๅฎŒๅ…จใช้–‹็™บใƒ—ใƒญใ‚ปใ‚นใ‚’็ตฑๅˆใ€่ฆไปถใ‹ใ‚‰ใƒ‡ใƒ—ใƒญใ‚คใพใงใฎใƒ™ใ‚นใƒˆใƒ—ใƒฉใ‚ฏใƒ†ใ‚ฃใ‚นใ‚ฌใ‚คใƒ‰",
285
323
  "overview": {
286
324
  "title": "ๅฎŒๅ…จใช้–‹็™บใƒ—ใƒญใ‚ปใ‚น",
287
- "description": "MCP Probe Kitใฎ22ใฎใƒ„ใƒผใƒซใฏใ€่ฆไปถๅˆ†ๆžใ‹ใ‚‰ใ‚ณใƒผใƒ‰ใƒ‡ใƒ—ใƒญใ‚คใพใงใฎๅฎŒๅ…จใช้–‹็™บใƒ—ใƒญใ‚ปใ‚นใ‚’ใ‚ซใƒใƒผใ—ใฆใ„ใพใ™ใ€‚ไปฅไธ‹ใฏๆŽจๅฅจใ•ใ‚Œใ‚‹ใƒ™ใ‚นใƒˆใƒ—ใƒฉใ‚ฏใƒ†ใ‚ฃใ‚นใงใ™ใ€‚",
325
+ "description": "MCP Probe Kitใฎ28ใฎใƒ„ใƒผใƒซใฏใ€่ฆไปถๅˆ†ๆžใ‹ใ‚‰ใ‚ณใƒผใƒ‰ใƒ‡ใƒ—ใƒญใ‚คใพใงใฎๅฎŒๅ…จใช้–‹็™บใƒ—ใƒญใ‚ปใ‚นใ‚’ใ‚ซใƒใƒผใ—ใฆใ„ใพใ™ใ€‚ไปฅไธ‹ใฏๆŽจๅฅจใ•ใ‚Œใ‚‹ใƒ™ใ‚นใƒˆใƒ—ใƒฉใ‚ฏใƒ†ใ‚ฃใ‚นใงใ™ใ€‚",
288
326
  "coreIdea": "ใ‚ณใ‚ขๅ“ฒๅญฆ๏ผš",
289
327
  "coreIdeaText": "ใƒฏใƒผใ‚ฏใƒ•ใƒญใƒผใ‚ชใƒผใ‚ฑใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใƒ„ใƒผใƒซ๏ผˆstart_*๏ผ‰ใ‚’้€šใ˜ใฆ้–‹็™บใƒ—ใƒญใ‚ปใ‚นๅ…จไฝ“ใ‚’้€ฃๆบใ—ใ€AIใ‚’้–‹็™บใ‚ขใ‚ทใ‚นใ‚ฟใƒณใƒˆใซใ—ใพใ™ใ€‚"
290
328
  },
@@ -539,7 +577,7 @@
539
577
  "resources": {
540
578
  "title": "ใใฎไป–ใฎใƒชใ‚ฝใƒผใ‚น",
541
579
  "allTools": "ๅฎŒๅ…จใชใƒ„ใƒผใƒซใƒชใƒ•ใ‚กใƒฌใƒณใ‚น",
542
- "allToolsDesc": "ๅ…จ22ใƒ„ใƒผใƒซใฎ่ฉณ็ดฐ่ชฌๆ˜Žใ‚’่กจ็คบ",
580
+ "allToolsDesc": "ๅ…จ28ใƒ„ใƒผใƒซใฎ่ฉณ็ดฐ่ชฌๆ˜Žใ‚’่กจ็คบ",
543
581
  "gettingStarted": "ใ‚คใƒณใ‚นใƒˆใƒผใƒซใจ่จญๅฎš",
544
582
  "gettingStartedDesc": "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚นใ‚ฟใƒผใƒˆใ‚ฌใ‚คใƒ‰",
545
583
  "migration": "็งป่กŒใ‚ฌใ‚คใƒ‰",
package/docs/i18n/ko.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "meta": {
3
- "title": "MCP Probe Kit - AI ๊ธฐ๋ฐ˜ ์™„์ „ํ•œ ๊ฐœ๋ฐœ ํˆดํ‚ท | ์ „์ฒด ๊ฐœ๋ฐœ ๋ผ์ดํ”„์‚ฌ์ดํด์„ ์ปค๋ฒ„ํ•˜๋Š” 22๊ฐœ ๋„๊ตฌ",
4
- "description": "MCP Probe Kit์€ ์š”๊ตฌ์‚ฌํ•ญ ๋ถ„์„, ์ฝ”๋“œ ๊ฐœ๋ฐœ, ํ’ˆ์งˆ ๋ณด์ฆ, ๋ฒ„๊ทธ ์ˆ˜์ •, ๋ฆด๋ฆฌ์Šค ๊ด€๋ฆฌ๋ฅผ ์ปค๋ฒ„ํ•˜๋Š” 22๊ฐœ์˜ AI ๊ธฐ๋ฐ˜ ๊ฐœ๋ฐœ ๋„๊ตฌ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค. Cursor, Cline, Claude Desktop์„ ์ง€์›ํ•˜๋ฉฐ 100% ๊ตฌ์กฐํ™”๋œ ์ถœ๋ ฅ์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.",
3
+ "title": "MCP Probe Kit - AI ๊ธฐ๋ฐ˜ ์™„์ „ํ•œ ๊ฐœ๋ฐœ ํˆดํ‚ท | ์ „์ฒด ๊ฐœ๋ฐœ ๋ผ์ดํ”„์‚ฌ์ดํด์„ ์ปค๋ฒ„ํ•˜๋Š” 28๊ฐœ ๋„๊ตฌ",
4
+ "description": "MCP Probe Kit์€ ์š”๊ตฌ์‚ฌํ•ญ ๋ถ„์„, ์ฝ”๋“œ ๊ฐœ๋ฐœ, ํ’ˆ์งˆ ๋ณด์ฆ, ๋ฒ„๊ทธ ์ˆ˜์ •, ๋ฆด๋ฆฌ์Šค ๊ด€๋ฆฌ๋ฅผ ์ปค๋ฒ„ํ•˜๋Š” 28๊ฐœ์˜ AI ๊ธฐ๋ฐ˜ ๊ฐœ๋ฐœ ๋„๊ตฌ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค. Cursor, Cline, Claude Desktop์„ ์ง€์›ํ•˜๋ฉฐ 100% ๊ตฌ์กฐํ™”๋œ ์ถœ๋ ฅ์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.",
5
5
  "keywords": "MCP Probe Kit, AI ๊ฐœ๋ฐœ ๋„๊ตฌ, ์ฝ”๋“œ ์ƒ์„ฑ, ์ฝ”๋“œ ๋ฆฌ๋ทฐ, Git ๋„๊ตฌ, UI ๊ฐœ๋ฐœ, ๊ฐœ๋ฐœ ํšจ์œจ์„ฑ, Cursor, Cline, Claude, MCP ์„œ๋ฒ„"
6
6
  },
7
7
  "nav": {
@@ -14,19 +14,19 @@
14
14
  "hero": {
15
15
  "title": "๐Ÿš€ MCP Probe Kit",
16
16
  "subtitle": "AI ๊ฐœ๋ฐœ ๊ฐ•ํ™” ํˆดํ‚ท ยท ๋ฌธ์„œ ์„ผํ„ฐ",
17
- "version": "v3.0.16",
17
+ "version": "v3.0.18",
18
18
  "quickStart": "๋น ๋ฅธ ์‹œ์ž‘",
19
19
  "visitMainSite": "ByteZoneX ๋ฐฉ๋ฌธ"
20
20
  },
21
21
  "sections": {
22
22
  "quickStart": {
23
23
  "title": "๋น ๋ฅธ ์‹œ์ž‘",
24
- "description": "5๋ถ„ ์•ˆ์— MCP Probe Kit v3.0.16 ์‹œ์ž‘ํ•˜๊ธฐ",
24
+ "description": "5๋ถ„ ์•ˆ์— MCP Probe Kit v3.0.18 ์‹œ์ž‘ํ•˜๊ธฐ",
25
25
  "installConfig": "์„ค์น˜ ๋ฐ ๊ตฌ์„ฑ"
26
26
  },
27
27
  "tools": {
28
28
  "title": "๋„๊ตฌ ๋ฌธ์„œ",
29
- "description": "22๊ฐœ ์‹ค์šฉ ๋„๊ตฌ์˜ ์™„์ „ํ•œ ์ฐธ์กฐ. ์ฝ”๋“œ ๊ทธ๋ž˜ํ”„ ์ธ์‚ฌ์ดํŠธ์™€ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ํฌํ•จ",
29
+ "description": "28๊ฐœ ์‹ค์šฉ ๋„๊ตฌ์˜ ์™„์ „ํ•œ ์ฐธ์กฐ. ์ฝ”๋“œ ๊ทธ๋ž˜ํ”„ ์ธ์‚ฌ์ดํŠธ์™€ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ํฌํ•จ",
30
30
  "allTools": "๋ชจ๋“  ๋„๊ตฌ"
31
31
  },
32
32
  "guides": {
@@ -87,6 +87,44 @@
87
87
  "noteText": "์ˆ˜๋™์œผ๋กœ ์‹คํ–‰ ํ•„์š”",
88
88
  "updateText": "๋ฒ„์ „ ์—…๋ฐ์ดํŠธ"
89
89
  },
90
+ "memory": {
91
+ "title": "๋ฉ”๋ชจ๋ฆฌ ์‹œ์Šคํ…œ ์„ค์น˜ ๊ตฌ์„ฑ (Qdrant + Embedding)",
92
+ "descriptionPrefix": "๋‹ค์Œ์„ ์‚ฌ์šฉํ•˜๋ ค๋ฉด",
93
+ "descriptionSuffix": ", ๋ฒกํ„ฐ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์™€ embedding ์„œ๋น„์Šค๋ฅผ ํ•จ๊ป˜ ์„ค์ •ํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.",
94
+ "optionA": {
95
+ "title": "์˜ต์…˜ A: Qdrant + Ollama (๊ถŒ์žฅ)"
96
+ },
97
+ "optionB": {
98
+ "title": "์˜ต์…˜ B: Qdrant + OpenAI-Compatible Embedding API"
99
+ },
100
+ "env": {
101
+ "title": "ํ™˜๊ฒฝ ๋ณ€์ˆ˜ ์„ค๋ช…",
102
+ "item1": ": Qdrant ์ฃผ์†Œ, ๋ชจ๋“  ๋ฉ”๋ชจ๋ฆฌ ๊ธฐ๋Šฅ์˜ ๊ธฐ๋ณธ ์„ค์ •",
103
+ "item2": ": ์„ ํƒ ์‚ฌํ•ญ์ธ Qdrant API Key",
104
+ "item3": ": ์ปฌ๋ ‰์…˜ ์ด๋ฆ„, ๊ธฐ๋ณธ๊ฐ’์€ ",
105
+ "item4Prefix": ": ",
106
+ "item4Middle": " ๋˜๋Š” ",
107
+ "item5": ": embedding API ์ฃผ์†Œ",
108
+ "item6": ": embedding API Key, Ollama ์‚ฌ์šฉ ์‹œ ์ผ๋ฐ˜์ ์œผ๋กœ ๋น„์›Œ ๋‘ก๋‹ˆ๋‹ค",
109
+ "item7Prefix": ": embedding ๋ชจ๋ธ ์ด๋ฆ„, ๊ธฐ๋ณธ๊ฐ’์€ ",
110
+ "item8Prefix": ": ๊ธฐ๋ณธ ๊ฒ€์ƒ‰ ๊ฐœ์ˆ˜, ๊ธฐ๋ณธ๊ฐ’์€ ",
111
+ "item9Prefix": ": ์š”์•ฝ ์ตœ๋Œ€ ๋ฌธ์ž ์ˆ˜, ๊ธฐ๋ณธ๊ฐ’์€ "
112
+ },
113
+ "behavior": {
114
+ "title": "๋™์ž‘ ์„ค๋ช…",
115
+ "item1Prefix": "๋ฉ”๋ชจ๋ฆฌ ์“ฐ๊ธฐ์—๋Š” ",
116
+ "item1Middle": " ๋ฐ ",
117
+ "item2Prefix": "์ฝ๊ธฐ ์ „์šฉ ๋ฉ”๋ชจ๋ฆฌ ์ ‘๊ทผ(์˜ˆ: ID๋กœ ์ฝ๊ธฐ)์—๋Š” ",
118
+ "item3Prefix": "์ฒซ ์“ฐ๊ธฐ ์‹œ Qdrant collection ์ด ์ž๋™ ์ƒ์„ฑ๋˜๋ฉฐ ๊ฑฐ๋ฆฌ ์ธก์ •์€ ",
119
+ "item4": "๋ฒกํ„ฐ ์ฐจ์›์€ ์ฒซ embedding ์‘๋‹ต์„ ๊ธฐ์ค€์œผ๋กœ ์ž๋™ ์ถ”๋ก ๋ฉ๋‹ˆ๋‹ค"
120
+ },
121
+ "cursor": {
122
+ "title": "Cursor ๊ธฐ๋ก ๋„๊ตฌ",
123
+ "item1": " ๋Š” Qdrant ๋˜๋Š” embedding ์— ์˜์กดํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค",
124
+ "item2": "Windows / macOS / Linux ์˜ ๋กœ์ปฌ Cursor ์„ค์น˜๋ฅผ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค",
125
+ "item3Prefix": "๊ธฐ๋ณธ์ ์œผ๋กœ Cursor ๋กœ์ปฌ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์ธ "
126
+ }
127
+ },
90
128
  "windowsGraph": {
91
129
  "title": "Windows ๊ทธ๋ž˜ํ”„ ๋„๊ตฌ ์•ˆ๋‚ด",
92
130
  "description": "๊ทธ๋ž˜ํ”„ ๊ด€๋ จ ๋„๊ตฌ๋Š” ๊ธฐ๋ณธ์ ์œผ๋กœ GitNexus ๋ฅผ npx ๋กœ ์‹œ์ž‘ํ•˜๋ฏ€๋กœ Windows ์—์„œ ์ฒซ ์‹คํ–‰์ด ๋А๋ฆด ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.",
@@ -204,7 +242,7 @@
204
242
  "subtitle": "v2.x์—์„œ v3.0์œผ๋กœ ์›ํ™œํ•˜๊ฒŒ ๋งˆ์ด๊ทธ๋ ˆ์ด์…˜ํ•˜๊ณ  ์ฃผ์š” ๋ณ€๊ฒฝ ์‚ฌํ•ญ ๋ฐ ์ƒˆ๋กœ์šด ๊ธฐ๋Šฅ ์ดํ•ด",
205
243
  "overview": {
206
244
  "title": "๊ฐœ์š”",
207
- "description": "MCP Probe Kit v3.0์€ ์ฃผ์š” ๋ฒ„์ „ ์—…๋ฐ์ดํŠธ๋กœ, 22๊ฐœ ๋„๊ตฌ๋กœ ์ตœ์ ํ™”๋˜์–ด ๋” ๊ฐ•๋ ฅํ•œ ๊ธฐ๋Šฅ๊ณผ ๋” ๋‚˜์€ ๊ฐœ๋ฐœ ๊ฒฝํ—˜์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.",
245
+ "description": "MCP Probe Kit v3.0์€ ์ฃผ์š” ๋ฒ„์ „ ์—…๋ฐ์ดํŠธ๋กœ, 28๊ฐœ ๋„๊ตฌ๋กœ ์ตœ์ ํ™”๋˜์–ด ๋” ๊ฐ•๋ ฅํ•œ ๊ธฐ๋Šฅ๊ณผ ๋” ๋‚˜์€ ๊ฐœ๋ฐœ ๊ฒฝํ—˜์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.",
208
246
  "migrationTime": "๋งˆ์ด๊ทธ๋ ˆ์ด์…˜ ์‹œ๊ฐ„๏ผš",
209
247
  "migrationTimeText": "๋Œ€๋ถ€๋ถ„์˜ ํ”„๋กœ์ ํŠธ๋Š” 10-15๋ถ„ ๋‚ด์— ๋งˆ์ด๊ทธ๋ ˆ์ด์…˜์„ ์™„๋ฃŒํ•  ์ˆ˜ ์žˆ์œผ๋ฉฐ, v2.x์˜ ํ•ต์‹ฌ ๋„๊ตฌ๋Š” v3.0์—์„œ ํ˜ธํ™˜์„ฑ์„ ์œ ์ง€ํ•ฉ๋‹ˆ๋‹ค."
210
248
  },
@@ -212,7 +250,7 @@
212
250
  "title": "์ฃผ์š” ๋ณ€๊ฒฝ ์‚ฌํ•ญ",
213
251
  "toolsOptimization": {
214
252
  "title": "1. ๋„๊ตฌ ์ตœ์ ํ™”",
215
- "description": "v2.x: 39๊ฐœ ๋„๊ตฌ โ†’ v3.x: 22๊ฐœ ๋„๊ตฌ (์ €๋นˆ๋„ ๋„๊ตฌ ์ œ๊ฑฐ, ๊ณ ๊ฐ€์น˜ ๋„๊ตฌ ์œ ์ง€)"
253
+ "description": "v2.x: 39๊ฐœ ๋„๊ตฌ โ†’ v3.x: 28๊ฐœ ๋„๊ตฌ (์ €๋นˆ๋„ ๋„๊ตฌ ์ œ๊ฑฐ, ๊ณ ๊ฐ€์น˜ ๋„๊ตฌ ์œ ์ง€)"
216
254
  },
217
255
  "workflows": {
218
256
  "title": "2. ์ƒˆ๋กœ์šด ์›Œํฌํ”Œ๋กœ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜",
@@ -284,7 +322,7 @@
284
322
  "subtitle": "MCP Probe Kit์€ ์™„์ „ํ•œ ๊ฐœ๋ฐœ ํ”„๋กœ์„ธ์Šค๋ฅผ ํ†ตํ•ฉ, ์š”๊ตฌ์‚ฌํ•ญ๋ถ€ํ„ฐ ๋ฐฐํฌ๊นŒ์ง€์˜ ๋ชจ๋ฒ” ์‚ฌ๋ก€ ๊ฐ€์ด๋“œ",
285
323
  "overview": {
286
324
  "title": "์™„์ „ํ•œ ๊ฐœ๋ฐœ ํ”„๋กœ์„ธ์Šค",
287
- "description": "MCP Probe Kit์˜ 22๊ฐœ ๋„๊ตฌ๋Š” ์š”๊ตฌ์‚ฌํ•ญ ๋ถ„์„๋ถ€ํ„ฐ ์ฝ”๋“œ ๋ฐฐํฌ๊นŒ์ง€์˜ ์™„์ „ํ•œ ๊ฐœ๋ฐœ ํ”„๋กœ์„ธ์Šค๋ฅผ ์ปค๋ฒ„ํ•ฉ๋‹ˆ๋‹ค. ๋‹ค์Œ์€ ๊ถŒ์žฅ๋˜๋Š” ๋ชจ๋ฒ” ์‚ฌ๋ก€์ž…๋‹ˆ๋‹ค.",
325
+ "description": "MCP Probe Kit์˜ 28๊ฐœ ๋„๊ตฌ๋Š” ์š”๊ตฌ์‚ฌํ•ญ ๋ถ„์„๋ถ€ํ„ฐ ์ฝ”๋“œ ๋ฐฐํฌ๊นŒ์ง€์˜ ์™„์ „ํ•œ ๊ฐœ๋ฐœ ํ”„๋กœ์„ธ์Šค๋ฅผ ์ปค๋ฒ„ํ•ฉ๋‹ˆ๋‹ค. ๋‹ค์Œ์€ ๊ถŒ์žฅ๋˜๋Š” ๋ชจ๋ฒ” ์‚ฌ๋ก€์ž…๋‹ˆ๋‹ค.",
288
326
  "coreIdea": "ํ•ต์‹ฌ ์ฒ ํ•™๏ผš",
289
327
  "coreIdeaText": "์›Œํฌํ”Œ๋กœ ์˜ค์ผ€์ŠคํŠธ๋ ˆ์ด์…˜ ๋„๊ตฌ(start_*)๋ฅผ ํ†ตํ•ด ์ „์ฒด ๊ฐœ๋ฐœ ํ”„๋กœ์„ธ์Šค๋ฅผ ์—ฐ๊ฒฐํ•˜์—ฌ AI๋ฅผ ๊ฐœ๋ฐœ ์–ด์‹œ์Šคํ„ดํŠธ๋กœ ๋งŒ๋“ญ๋‹ˆ๋‹ค."
290
328
  },
@@ -539,7 +577,7 @@
539
577
  "resources": {
540
578
  "title": "์ถ”๊ฐ€ ๋ฆฌ์†Œ์Šค",
541
579
  "allTools": "์™„์ „ํ•œ ๋„๊ตฌ ์ฐธ์กฐ",
542
- "allToolsDesc": "๋ชจ๋“  22๊ฐœ ๋„๊ตฌ์˜ ์ž์„ธํ•œ ์„ค๋ช… ๋ณด๊ธฐ",
580
+ "allToolsDesc": "๋ชจ๋“  28๊ฐœ ๋„๊ตฌ์˜ ์ž์„ธํ•œ ์„ค๋ช… ๋ณด๊ธฐ",
543
581
  "gettingStarted": "์„ค์น˜ ๋ฐ ๊ตฌ์„ฑ",
544
582
  "gettingStartedDesc": "๋น ๋ฅธ ์‹œ์ž‘ ๊ฐ€์ด๋“œ",
545
583
  "migration": "๋งˆ์ด๊ทธ๋ ˆ์ด์…˜ ๊ฐ€์ด๋“œ",