mcp-probe-kit 3.0.18 → 3.0.21

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 (62) hide show
  1. package/README.md +87 -55
  2. package/build/index.js +3 -1
  3. package/build/lib/__tests__/agents-md-template.unit.test.d.ts +1 -0
  4. package/build/lib/__tests__/agents-md-template.unit.test.js +27 -0
  5. package/build/lib/__tests__/memory-config.unit.test.js +9 -0
  6. package/build/lib/__tests__/memory-injection.unit.test.d.ts +1 -0
  7. package/build/lib/__tests__/memory-injection.unit.test.js +51 -0
  8. package/build/lib/__tests__/memory-orchestration.unit.test.d.ts +1 -0
  9. package/build/lib/__tests__/memory-orchestration.unit.test.js +84 -0
  10. package/build/lib/__tests__/memory-payload.unit.test.d.ts +1 -0
  11. package/build/lib/__tests__/memory-payload.unit.test.js +35 -0
  12. package/build/lib/__tests__/project-context-layout.unit.test.d.ts +1 -0
  13. package/build/lib/__tests__/project-context-layout.unit.test.js +80 -0
  14. package/build/lib/agents-md-template.d.ts +25 -0
  15. package/build/lib/agents-md-template.js +57 -0
  16. package/build/lib/memory-client.d.ts +8 -1
  17. package/build/lib/memory-client.js +53 -44
  18. package/build/lib/memory-config.d.ts +8 -0
  19. package/build/lib/memory-config.js +19 -0
  20. package/build/lib/memory-orchestration.d.ts +10 -3
  21. package/build/lib/memory-orchestration.js +146 -7
  22. package/build/lib/memory-payload.d.ts +21 -0
  23. package/build/lib/memory-payload.js +65 -0
  24. package/build/lib/merge-agents-md.d.ts +6 -0
  25. package/build/lib/merge-agents-md.js +51 -0
  26. package/build/lib/project-context-layout.d.ts +78 -0
  27. package/build/lib/project-context-layout.js +350 -0
  28. package/build/lib/workspace-root.js +6 -1
  29. package/build/resources/ui-ux-data/metadata.json +1 -1
  30. package/build/schemas/index.d.ts +62 -11
  31. package/build/schemas/memory-tools.d.ts +38 -9
  32. package/build/schemas/memory-tools.js +24 -9
  33. package/build/schemas/project-tools.d.ts +24 -2
  34. package/build/schemas/project-tools.js +24 -2
  35. package/build/tools/__tests__/code_insight.unit.test.js +3 -3
  36. package/build/tools/__tests__/init_project_context.unit.test.js +32 -21
  37. package/build/tools/__tests__/start_feature.unit.test.js +2 -1
  38. package/build/tools/code_insight.js +11 -9
  39. package/build/tools/index.d.ts +1 -0
  40. package/build/tools/index.js +1 -0
  41. package/build/tools/init_project_context.js +563 -506
  42. package/build/tools/memorize_asset.js +12 -0
  43. package/build/tools/scan_and_extract_patterns.js +7 -7
  44. package/build/tools/search_memory.d.ts +7 -0
  45. package/build/tools/search_memory.js +57 -0
  46. package/build/tools/start_bugfix.js +257 -251
  47. package/build/tools/start_feature.js +140 -134
  48. package/build/tools/start_ui.js +405 -405
  49. package/docs/.mcp-probe/layout.json +11 -0
  50. package/docs/data/tools.js +18 -0
  51. package/docs/i18n/all-tools/en.json +6 -1
  52. package/docs/i18n/all-tools/ja.json +2 -1
  53. package/docs/i18n/all-tools/ko.json +2 -1
  54. package/docs/i18n/all-tools/zh-CN.json +7 -2
  55. package/docs/i18n/en.json +38 -7
  56. package/docs/i18n/ja.json +9 -2
  57. package/docs/i18n/ko.json +9 -2
  58. package/docs/i18n/zh-CN.json +40 -9
  59. package/docs/memory-local-setup.md +314 -0
  60. package/docs/memory-local-setup.zh-CN.md +283 -0
  61. package/docs/pages/getting-started.html +252 -33
  62. package/package.json +2 -2
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 1,
3
+ "projectRootEnv": "MCP_PROJECT_ROOT",
4
+ "indexPath": "AGENTS.md",
5
+ "contextRoot": "docs",
6
+ "modularDir": "docs/project-context",
7
+ "graphDir": "docs/graph-insights",
8
+ "indexStyle": "agents",
9
+ "generatedBy": "init_project_context",
10
+ "generatedAt": "2026-05-26T07:57:19.543Z"
11
+ }
@@ -402,6 +402,24 @@ verbose: true`
402
402
  }
403
403
  ],
404
404
  memory: [
405
+ {
406
+ name: 'search_memory',
407
+ description: '按语义检索共享记忆库,支持 type/tags 优先排序',
408
+ schema: 'MemorySearchSchema',
409
+ params: [
410
+ { name: 'query', type: 'string', required: true, desc: '检索关键词或问题描述' },
411
+ { name: 'type', type: 'string', required: false, desc: '优先匹配的类型,如 bugfix' },
412
+ { name: 'tags', type: 'array', required: false, desc: '优先匹配的标签' },
413
+ { name: 'limit', type: 'number', required: false, desc: '返回条数' }
414
+ ],
415
+ usage: '在 start_* 之外主动查找历史 Bug 修复或可复用模式',
416
+ example: `// 使用示例
417
+ 你: 请使用 search_memory 搜索 proxy 相关 bugfix
418
+
419
+ query: "proxy 400 HTTPS"
420
+ type: "bugfix"
421
+ limit: 5`
422
+ },
405
423
  {
406
424
  name: 'read_memory_asset',
407
425
  description: '按 asset_id 读取已存储 memory 资产的完整内容和元数据',
@@ -41,6 +41,7 @@
41
41
  "ui_design_system": "Design System",
42
42
  "ui_search": "Search UI",
43
43
  "code_insight": "Code Insight",
44
+ "search_memory": "Search Memory",
44
45
  "read_memory_asset": "Read Memory",
45
46
  "memorize_asset": "Store Memory",
46
47
  "scan_and_extract_patterns": "Extract Patterns",
@@ -75,7 +76,7 @@
75
76
  },
76
77
  "memory": {
77
78
  "title": "Memory & Cursor History",
78
- "count": "6 tools"
79
+ "count": "7 tools"
79
80
  }
80
81
  },
81
82
  "toolsData": {
@@ -167,6 +168,10 @@
167
168
  "description": "Code graph insight tool, bridging GitNexus to analyze call chains, context, and impact (auto-degrades when unavailable)",
168
169
  "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
  },
171
+ "search_memory": {
172
+ "description": "Semantic search across the shared memory pool, with optional type/tags preference",
173
+ "usage": "Use outside start_* to find historical bugfixes or patterns; follow with read_memory_asset for full content"
174
+ },
170
175
  "read_memory_asset": {
171
176
  "description": "Read the full content and metadata of a stored memory asset by asset ID",
172
177
  "usage": "Use this after a workflow or search result already found a memory summary and you need the full reusable artifact"
@@ -42,6 +42,7 @@
42
42
  "ui_search": "UI検索",
43
43
  "sync_ui_data": "データ同期",
44
44
  "code_insight": "コード洞察",
45
+ "search_memory": "メモリ検索",
45
46
  "read_memory_asset": "メモリ読取",
46
47
  "memorize_asset": "メモリ保存",
47
48
  "scan_and_extract_patterns": "パターン抽出",
@@ -76,7 +77,7 @@
76
77
  },
77
78
  "memory": {
78
79
  "title": "Memory と Cursor History",
79
- "count": "6個"
80
+ "count": "7個"
80
81
  }
81
82
  },
82
83
  "toolsData": {
@@ -42,6 +42,7 @@
42
42
  "ui_search": "UI 검색",
43
43
  "sync_ui_data": "데이터 동기화",
44
44
  "code_insight": "코드 인사이트",
45
+ "search_memory": "메모리 검색",
45
46
  "read_memory_asset": "메모리 읽기",
46
47
  "memorize_asset": "메모리 저장",
47
48
  "scan_and_extract_patterns": "패턴 추출",
@@ -76,7 +77,7 @@
76
77
  },
77
78
  "memory": {
78
79
  "title": "Memory 및 Cursor History",
79
- "count": "6개"
80
+ "count": "7개"
80
81
  }
81
82
  },
82
83
  "toolsData": {
@@ -5,7 +5,7 @@
5
5
  "keywords": "AI 开发工具, 代码生成工具, 代码审查工具, Git 自动化, UI 生成, 代码重构, 性能优化, 安全扫描"
6
6
  },
7
7
  "page": {
8
- "subtitle": "MCP Probe Kit 提供 28 个实用工具,核心与编排工具支持结构化输出"
8
+ "subtitle": "MCP Probe Kit 提供 29 个实用工具,核心与编排工具支持结构化输出"
9
9
  },
10
10
  "search": {
11
11
  "placeholder": "🔍 搜索工具名称或描述...",
@@ -41,6 +41,7 @@
41
41
  "ui_design_system": "设计系统",
42
42
  "ui_search": "搜索UI",
43
43
  "code_insight": "图谱洞察",
44
+ "search_memory": "搜索记忆",
44
45
  "read_memory_asset": "读取记忆",
45
46
  "memorize_asset": "沉淀记忆",
46
47
  "scan_and_extract_patterns": "抽取模式",
@@ -75,7 +76,7 @@
75
76
  },
76
77
  "memory": {
77
78
  "title": "记忆与 Cursor 历史",
78
- "count": "6 个"
79
+ "count": "7 个"
79
80
  }
80
81
  },
81
82
  "toolsData": {
@@ -167,6 +168,10 @@
167
168
  "description": "代码图谱洞察工具,桥接 GitNexus 分析调用链、上下文和影响面(不可用时自动降级)",
168
169
  "usage": "用于刷新 GitNexus 图谱、获取任务级调用链/上下文/影响面,并把结果保存到 docs/graph-insights 与 project-context 索引"
169
170
  },
171
+ "search_memory": {
172
+ "description": "按语义检索共享记忆库,支持 type/tags 优先排序",
173
+ "usage": "在 start_* 之外主动查找历史 Bug 修复或可复用模式;命中后用 read_memory_asset 读全文"
174
+ },
170
175
  "read_memory_asset": {
171
176
  "description": "按资产 ID 读取已沉淀记忆的完整内容与元数据",
172
177
  "usage": "当编排阶段已经命中记忆摘要,需要进一步查看完整代码、规范或模式详情时使用"
package/docs/i18n/en.json CHANGED
@@ -14,14 +14,14 @@
14
14
  "hero": {
15
15
  "title": "🚀 MCP Probe Kit",
16
16
  "subtitle": "AI Development Enhancement Toolkit · Documentation Center",
17
- "version": "v3.0.18",
17
+ "version": "v3.0.21",
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.18 in 5 minutes",
24
+ "description": "Get started with MCP Probe Kit v3.0.21 in 5 minutes",
25
25
  "installConfig": "Installation & Configuration"
26
26
  },
27
27
  "tools": {
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "gettingStarted": {
65
65
  "title": "Installation & Configuration",
66
- "subtitle": "Get started with MCP Probe Kit v3.0.18 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
66
+ "subtitle": "Get started with MCP Probe Kit v3.0.21 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
67
67
  "breadcrumb": {
68
68
  "home": "Documentation",
69
69
  "quickStart": "Quick Start",
@@ -91,11 +91,35 @@
91
91
  "title": "Memory System Setup (Qdrant + Embedding)",
92
92
  "descriptionPrefix": "If you want to use",
93
93
  "descriptionSuffix": ", you need to configure both a vector database and an embedding service.",
94
+ "guideLink": "Extended guide (troubleshooting, performance):",
95
+ "guidePath": "docs/memory-local-setup.md",
96
+ "deployIntro": "Copy the files below into two folders, start both services, then paste the MCP config. No Ollama required.",
97
+ "portTitle": "Ports",
98
+ "layoutTitle": "0. Directory layout",
99
+ "layoutText": "Create two folders anywhere on your machine (example: ~/mcp-memory/):",
100
+ "qdrantTitle": "1. Qdrant (vector DB, port 50008)",
101
+ "qdrantCompose": "qdrant/docker-compose.yml",
102
+ "qdrantEnv": "qdrant/.env",
103
+ "qdrantDeploy": "Start Qdrant",
104
+ "qdrantVerify": "Verify Qdrant",
105
+ "qdrantNote": "When API key is enabled, all requests need header api-key. Dashboard: http://127.0.0.1:50008/dashboard",
106
+ "nomicTitle": "2. Nomic Embed / Infinity (embeddings, port 50012)",
107
+ "nomicCompose": "nomic-embed/docker-compose.yml",
108
+ "nomicEnv": "nomic-embed/.env",
109
+ "nomicDeploy": "Start embedding service",
110
+ "nomicVerify": "Verify embeddings",
111
+ "nomicNote": "First start downloads the model (~2–5 min). Use POST /embeddings (not /v1/embeddings). Returns 768-dim vectors.",
112
+ "mcpTitle": "3. MCP client configuration",
113
+ "mcpNote": "Use the same keys as in qdrant/.env and nomic-embed/.env. Restart Cursor after saving.",
114
+ "alternativesTitle": "Other embedding options",
94
115
  "optionA": {
95
- "title": "Option A: Qdrant + Ollama (recommended)"
116
+ "title": "Recommended stack (steps above)"
96
117
  },
97
118
  "optionB": {
98
- "title": "Option B: Qdrant + OpenAI-Compatible Embedding API"
119
+ "title": "Option B: Qdrant + Ollama"
120
+ },
121
+ "optionC": {
122
+ "title": "Option C: Qdrant + hosted OpenAI-compatible API"
99
123
  },
100
124
  "env": {
101
125
  "title": "Environment Variables",
@@ -165,6 +189,13 @@
165
189
  "claudeMac": {
166
190
  "title": "Claude Desktop (macOS)",
167
191
  "path": "Configuration file path:"
192
+ },
193
+ "opencode": {
194
+ "title": "OpenCode",
195
+ "description": "Create or edit",
196
+ "description2": "in project root, or globally at",
197
+ "note": "Note:",
198
+ "noteText": "OpenCode uses <code>\"environment\"</code> (not <code>\"env\"</code>) for env vars, <code>\"mcp\"</code> (not <code>\"mcpServers\"</code>), and <code>\"command\"</code> as an array with <code>\"type\": \"local\"</code> required. See <a href=\"https://opencode.ai/docs/mcp\" target=\"_blank\" rel=\"noopener\" class=\"text-primary hover:underline\">OpenCode MCP docs</a>."
168
199
  }
169
200
  },
170
201
  "step3": {
@@ -322,7 +353,7 @@
322
353
  "subtitle": "MCP Probe Kit integrates complete development process, best practices guide from requirements to deployment",
323
354
  "overview": {
324
355
  "title": "Complete Development Process",
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.",
356
+ "description": "MCP Probe Kit's 29 tools cover the complete development process from requirements analysis to code deployment. Here are the recommended best practices.",
326
357
  "coreIdea": "Core Philosophy:",
327
358
  "coreIdeaText": "Chain the entire development process through workflow orchestration tools (start_*), making AI your development assistant."
328
359
  },
@@ -577,7 +608,7 @@
577
608
  "resources": {
578
609
  "title": "More Resources",
579
610
  "allTools": "Complete Tools Reference",
580
- "allToolsDesc": "View detailed descriptions of all 28 tools",
611
+ "allToolsDesc": "View detailed descriptions of all 29 tools",
581
612
  "gettingStarted": "Installation & Configuration",
582
613
  "gettingStartedDesc": "Quick start guide",
583
614
  "migration": "Migration Guide",
package/docs/i18n/ja.json CHANGED
@@ -14,14 +14,14 @@
14
14
  "hero": {
15
15
  "title": "🚀 MCP Probe Kit",
16
16
  "subtitle": "AI開発強化ツールキット · ドキュメントセンター",
17
- "version": "v3.0.18",
17
+ "version": "v3.0.21",
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.18を始める",
24
+ "description": "5分でMCP Probe Kit v3.0.21を始める",
25
25
  "installConfig": "インストールと設定"
26
26
  },
27
27
  "tools": {
@@ -165,6 +165,13 @@
165
165
  "claudeMac": {
166
166
  "title": "Claude Desktop (macOS)",
167
167
  "path": "設定ファイルパス:"
168
+ },
169
+ "opencode": {
170
+ "title": "OpenCode",
171
+ "description": "プロジェクトルートに作成・編集",
172
+ "description2": "、またはグローバルパス:",
173
+ "note": "注意:",
174
+ "noteText": "OpenCode は <code>\"environment\"</code>(<code>\"env\"</code> ではありません)で環境変数を指定し、<code>\"mcp\"</code>(<code>\"mcpServers\"</code> ではありません)、<code>\"command\"</code> は配列で <code>\"type\": \"local\"</code> が必須です。詳しくは <a href=\"https://opencode.ai/docs/mcp\" target=\"_blank\" rel=\"noopener\" class=\"text-primary hover:underline\">OpenCode MCP ドキュメント</a> を参照。"
168
175
  }
169
176
  },
170
177
  "step3": {
package/docs/i18n/ko.json CHANGED
@@ -14,14 +14,14 @@
14
14
  "hero": {
15
15
  "title": "🚀 MCP Probe Kit",
16
16
  "subtitle": "AI 개발 강화 툴킷 · 문서 센터",
17
- "version": "v3.0.18",
17
+ "version": "v3.0.21",
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.18 시작하기",
24
+ "description": "5분 안에 MCP Probe Kit v3.0.21 시작하기",
25
25
  "installConfig": "설치 및 구성"
26
26
  },
27
27
  "tools": {
@@ -165,6 +165,13 @@
165
165
  "claudeMac": {
166
166
  "title": "Claude Desktop (macOS)",
167
167
  "path": "구성 파일 경로:"
168
+ },
169
+ "opencode": {
170
+ "title": "OpenCode",
171
+ "description": "프로젝트 루트에서 생성 또는 편집",
172
+ "description2": ", 또는 전역 경로:",
173
+ "note": "참고:",
174
+ "noteText": "OpenCode는 <code>\"environment\"</code>(<code>\"env\"</code>가 아님)로 환경 변수를 지정하고, <code>\"mcp\"</code>(<code>\"mcpServers\"</code>가 아님), <code>\"command\"</code>는 배열이며 <code>\"type\": \"local\"</code>이 필수입니다. 자세한 내용은 <a href=\"https://opencode.ai/docs/mcp\" target=\"_blank\" rel=\"noopener\" class=\"text-primary hover:underline\">OpenCode MCP 문서</a>를 참조하세요."
168
175
  }
169
176
  },
170
177
  "step3": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "meta": {
3
3
  "title": "MCP Probe Kit - AI 驱动的完整研发工具集 | 28个工具覆盖开发全流程",
4
- "description": "MCP Probe Kit 提供 28 个 AI 驱动的研发工具,覆盖需求分析、代码开发、质量保障、Bug修复、版本发布全流程。支持 Cursor、Cline、Claude Desktop,100% 结构化输出。",
4
+ "description": "MCP Probe Kit 提供 29 个 AI 驱动的研发工具,覆盖需求分析、代码开发、质量保障、Bug修复、版本发布全流程。支持 Cursor、Cline、Claude Desktop,100% 结构化输出。",
5
5
  "keywords": "MCP Probe Kit, AI开发工具, 代码生成, 代码审查, Git工具, UI开发, 研发效率, 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 开发增强工具集 · 文档中心",
17
- "version": "v3.0.18",
17
+ "version": "v3.0.21",
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.18",
24
+ "description": "5 分钟快速上手 MCP Probe Kit v3.0.21",
25
25
  "installConfig": "安装配置"
26
26
  },
27
27
  "tools": {
28
28
  "title": "工具文档",
29
- "description": "28 个实用工具的完整参考,含图谱洞察与编排工作流",
29
+ "description": "29 个实用工具的完整参考,含图谱洞察与编排工作流",
30
30
  "allTools": "所有工具"
31
31
  },
32
32
  "guides": {
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "gettingStarted": {
65
65
  "title": "安装配置",
66
- "subtitle": "5 分钟快速上手 MCP Probe Kit v3.0.18,支持 Cursor、Cline 和 Claude Desktop",
66
+ "subtitle": "5 分钟快速上手 MCP Probe Kit v3.0.21,支持 Cursor、Cline 和 Claude Desktop",
67
67
  "breadcrumb": {
68
68
  "home": "文档首页",
69
69
  "quickStart": "快速开始",
@@ -91,11 +91,35 @@
91
91
  "title": "记忆系统安装配置(Qdrant + Embedding)",
92
92
  "descriptionPrefix": "如果你要使用",
93
93
  "descriptionSuffix": ",需要同时配置向量数据库和 embedding 服务。",
94
+ "guideLink": "扩展说明(排错、性能):",
95
+ "guidePath": "docs/memory-local-setup.zh-CN.md",
96
+ "deployIntro": "按下面创建两个目录、复制 compose 与 .env、启动服务,再配置 MCP。无需安装 Ollama。",
97
+ "portTitle": "端口",
98
+ "layoutTitle": "0. 目录结构",
99
+ "layoutText": "在任意路径创建两个文件夹(示例 ~/mcp-memory/):",
100
+ "qdrantTitle": "1. Qdrant(向量库,端口 50008)",
101
+ "qdrantCompose": "qdrant/docker-compose.yml",
102
+ "qdrantEnv": "qdrant/.env",
103
+ "qdrantDeploy": "启动 Qdrant",
104
+ "qdrantVerify": "验证 Qdrant",
105
+ "qdrantNote": "开启 API Key 后,请求须带 api-key 头。面板:http://127.0.0.1:50008/dashboard",
106
+ "nomicTitle": "2. Nomic Embed / Infinity(向量生成,端口 50012)",
107
+ "nomicCompose": "nomic-embed/docker-compose.yml",
108
+ "nomicEnv": "nomic-embed/.env",
109
+ "nomicDeploy": "启动 Embedding 服务",
110
+ "nomicVerify": "验证 Embedding",
111
+ "nomicNote": "首次启动会下载模型(约 2–5 分钟)。路径为 POST /embeddings(不是 /v1/embeddings),向量维度 768。",
112
+ "mcpTitle": "3. MCP 客户端配置",
113
+ "mcpNote": "密钥与 qdrant/.env、nomic-embed/.env 保持一致。保存后请完全重启 Cursor。",
114
+ "alternativesTitle": "其它 Embedding 方案",
94
115
  "optionA": {
95
- "title": "方案 A:Qdrant + Ollama(默认推荐)"
116
+ "title": "推荐方案(见上文步骤)"
96
117
  },
97
118
  "optionB": {
98
- "title": "方案 B:Qdrant + OpenAI-Compatible Embedding API"
119
+ "title": "方案 B:Qdrant + Ollama"
120
+ },
121
+ "optionC": {
122
+ "title": "方案 C:Qdrant + 云端 OpenAI 兼容 Embedding API"
99
123
  },
100
124
  "env": {
101
125
  "title": "环境变量说明",
@@ -165,6 +189,13 @@
165
189
  "claudeMac": {
166
190
  "title": "Claude Desktop (macOS)",
167
191
  "path": "配置文件路径:"
192
+ },
193
+ "opencode": {
194
+ "title": "OpenCode",
195
+ "description": "在项目根目录创建或编辑",
196
+ "description2": ",或全局路径:",
197
+ "note": "注意:",
198
+ "noteText": "OpenCode 使用 <code>\"environment\"</code>(非 <code>\"env\"</code>)配置环境变量,使用 <code>\"mcp\"</code>(非 <code>\"mcpServers\"</code>),<code>\"command\"</code> 为数组且需指定 <code>\"type\": \"local\"</code>。详见 <a href=\"https://opencode.ai/docs/mcp\" target=\"_blank\" rel=\"noopener\" class=\"text-primary hover:underline\">OpenCode MCP 文档</a>。"
168
199
  }
169
200
  },
170
201
  "step3": {
@@ -322,7 +353,7 @@
322
353
  "subtitle": "MCP Probe Kit 融合完整研发流程,从需求到上线的最佳实践指南",
323
354
  "overview": {
324
355
  "title": "完整研发流程",
325
- "description": "MCP Probe Kit 的 28 个工具覆盖了从需求分析到代码上线的完整研发流程。以下是推荐的最佳实践。",
356
+ "description": "MCP Probe Kit 的 29 个工具覆盖了从需求分析到代码上线的完整研发流程。以下是推荐的最佳实践。",
326
357
  "coreIdea": "核心理念:",
327
358
  "coreIdeaText": "通过工作流编排工具(start_*)串联整个开发流程,让 AI 成为你的研发助手。"
328
359
  },
@@ -577,7 +608,7 @@
577
608
  "resources": {
578
609
  "title": "更多资源",
579
610
  "allTools": "完整工具参考",
580
- "allToolsDesc": "查看所有 28 个工具的详细说明",
611
+ "allToolsDesc": "查看所有 29 个工具的详细说明",
581
612
  "gettingStarted": "安装配置",
582
613
  "gettingStartedDesc": "快速开始使用",
583
614
  "migration": "迁移指南",