mcp-probe-kit 3.0.19 → 3.0.22

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 (81) hide show
  1. package/README.md +12 -5
  2. package/build/index.js +3 -1
  3. package/build/lib/__tests__/agents-md-template.unit.test.js +2 -0
  4. package/build/lib/__tests__/memory-config.unit.test.js +9 -0
  5. package/build/lib/__tests__/memory-injection.unit.test.d.ts +1 -0
  6. package/build/lib/__tests__/memory-injection.unit.test.js +51 -0
  7. package/build/lib/__tests__/memory-orchestration.unit.test.d.ts +1 -0
  8. package/build/lib/__tests__/memory-orchestration.unit.test.js +84 -0
  9. package/build/lib/__tests__/memory-payload.unit.test.d.ts +1 -0
  10. package/build/lib/__tests__/memory-payload.unit.test.js +35 -0
  11. package/build/lib/agents-md-template.js +7 -5
  12. package/build/lib/memory-client.d.ts +8 -1
  13. package/build/lib/memory-client.js +53 -44
  14. package/build/lib/memory-config.d.ts +8 -0
  15. package/build/lib/memory-config.js +19 -0
  16. package/build/lib/memory-orchestration.d.ts +7 -2
  17. package/build/lib/memory-orchestration.js +81 -8
  18. package/build/lib/memory-payload.d.ts +21 -0
  19. package/build/lib/memory-payload.js +65 -0
  20. package/build/lib/shadcn-ui.d.ts +11 -0
  21. package/build/lib/shadcn-ui.js +78 -0
  22. package/build/resources/ui-ux-data/guidelines/vercel-web-interface.json +1632 -0
  23. package/build/resources/ui-ux-data/metadata.json +27 -3
  24. package/build/resources/ui-ux-data/shadcn/blocks.json +2541 -0
  25. package/build/resources/ui-ux-data/shadcn/components.json +997 -0
  26. package/build/resources/ui-ux-data/themes/presets.json +483 -0
  27. package/build/schemas/index.d.ts +38 -9
  28. package/build/schemas/memory-tools.d.ts +38 -9
  29. package/build/schemas/memory-tools.js +24 -9
  30. package/build/schemas/output/ui-ux-tools.d.ts +16 -0
  31. package/build/schemas/output/ui-ux-tools.js +4 -0
  32. package/build/schemas/ui-ux-schemas.js +3 -3
  33. package/build/tools/__tests__/start_ui.property.test.js +4 -3
  34. package/build/tools/index.d.ts +1 -0
  35. package/build/tools/index.js +1 -0
  36. package/build/tools/memorize_asset.js +12 -0
  37. package/build/tools/scan_and_extract_patterns.js +7 -7
  38. package/build/tools/search_memory.d.ts +7 -0
  39. package/build/tools/search_memory.js +57 -0
  40. package/build/tools/start_bugfix.js +3 -3
  41. package/build/tools/start_feature.js +3 -3
  42. package/build/tools/start_ui.js +33 -6
  43. package/build/tools/ui-ux-tools.js +322 -244
  44. package/build/utils/__tests__/shadcn-sync.unit.test.d.ts +1 -0
  45. package/build/utils/__tests__/shadcn-sync.unit.test.js +49 -0
  46. package/build/utils/__tests__/theme-pick.unit.test.d.ts +1 -0
  47. package/build/utils/__tests__/theme-pick.unit.test.js +9 -0
  48. package/build/utils/__tests__/themes-sync.unit.test.d.ts +1 -0
  49. package/build/utils/__tests__/themes-sync.unit.test.js +21 -0
  50. package/build/utils/__tests__/ui-metadata.unit.test.d.ts +1 -0
  51. package/build/utils/__tests__/ui-metadata.unit.test.js +35 -0
  52. package/build/utils/__tests__/vercel-guidelines-sync.unit.test.d.ts +1 -0
  53. package/build/utils/__tests__/vercel-guidelines-sync.unit.test.js +34 -0
  54. package/build/utils/bm25.d.ts +2 -1
  55. package/build/utils/bm25.js +17 -5
  56. package/build/utils/shadcn-sync.d.ts +55 -0
  57. package/build/utils/shadcn-sync.js +146 -0
  58. package/build/utils/themes-sync.d.ts +32 -0
  59. package/build/utils/themes-sync.js +201 -0
  60. package/build/utils/ui-data-loader.js +13 -2
  61. package/build/utils/ui-metadata.d.ts +27 -0
  62. package/build/utils/ui-metadata.js +39 -0
  63. package/build/utils/ui-search-engine.d.ts +1 -0
  64. package/build/utils/ui-search-engine.js +20 -6
  65. package/build/utils/ui-sync.d.ts +24 -2
  66. package/build/utils/ui-sync.js +152 -86
  67. package/build/utils/vercel-guidelines-sync.d.ts +30 -0
  68. package/build/utils/vercel-guidelines-sync.js +133 -0
  69. package/docs/data/tools.js +18 -0
  70. package/docs/i18n/all-tools/en.json +6 -1
  71. package/docs/i18n/all-tools/ja.json +2 -1
  72. package/docs/i18n/all-tools/ko.json +2 -1
  73. package/docs/i18n/all-tools/zh-CN.json +7 -2
  74. package/docs/i18n/en.json +5 -5
  75. package/docs/i18n/ja.json +2 -2
  76. package/docs/i18n/ko.json +2 -2
  77. package/docs/i18n/zh-CN.json +7 -7
  78. package/docs/memory-local-setup.md +1 -1
  79. package/docs/memory-local-setup.zh-CN.md +5 -2
  80. package/docs/pages/getting-started.html +3 -2
  81. package/package.json +2 -2
@@ -0,0 +1,133 @@
1
+ /**
2
+ * Vercel Web Interface Guidelines → 可搜索 JSON
3
+ * @see https://github.com/vercel-labs/web-interface-guidelines
4
+ */
5
+ import * as crypto from 'crypto';
6
+ import * as fs from 'fs';
7
+ import * as path from 'path';
8
+ import { fileURLToPath } from 'url';
9
+ import { fetchText } from './shadcn-sync.js';
10
+ export const VERCEL_GUIDELINES_URL = 'https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/AGENTS.md';
11
+ export const VERCEL_GUIDELINES_VERSION = '2026-04-06';
12
+ const __filename = fileURLToPath(import.meta.url);
13
+ const __dirname = path.dirname(__filename);
14
+ const FALLBACK_PATH = path.join(process.cwd(), 'scripts', 'data', 'vercel-web-interface-guidelines.md');
15
+ const BUNDLED_FALLBACK_PATH = path.join(__dirname, '..', '..', 'scripts', 'data', 'vercel-web-interface-guidelines.md');
16
+ function computeChecksum(content) {
17
+ return crypto.createHash('sha256').update(content).digest('hex').slice(0, 16);
18
+ }
19
+ function slugify(value) {
20
+ return value
21
+ .toLowerCase()
22
+ .replace(/[^a-z0-9]+/g, '-')
23
+ .replace(/^-|-$/g, '')
24
+ .slice(0, 48);
25
+ }
26
+ function inferTags(rule, section) {
27
+ const text = `${section} ${rule}`.toLowerCase();
28
+ const tags = new Set(['vercel', 'web-interface']);
29
+ const keywords = [
30
+ 'keyboard',
31
+ 'focus',
32
+ 'form',
33
+ 'animation',
34
+ 'accessibility',
35
+ 'a11y',
36
+ 'contrast',
37
+ 'dark',
38
+ 'performance',
39
+ 'touch',
40
+ 'navigation',
41
+ 'aria',
42
+ 'mobile',
43
+ 'layout',
44
+ 'hydration',
45
+ ];
46
+ for (const keyword of keywords) {
47
+ if (text.includes(keyword)) {
48
+ tags.add(keyword);
49
+ }
50
+ }
51
+ return Array.from(tags);
52
+ }
53
+ export function parseVercelGuidelinesMarkdown(markdown) {
54
+ const lines = markdown.split(/\r?\n/);
55
+ let section = 'General';
56
+ let subsection = 'General';
57
+ const records = [];
58
+ let index = 0;
59
+ for (const line of lines) {
60
+ if (line.startsWith('## ')) {
61
+ section = line.slice(3).trim();
62
+ subsection = section;
63
+ continue;
64
+ }
65
+ if (line.startsWith('### ')) {
66
+ subsection = line.slice(4).trim();
67
+ continue;
68
+ }
69
+ const match = line.match(/^-\s+(MUST|SHOULD|NEVER):\s+(.+)$/);
70
+ if (!match) {
71
+ continue;
72
+ }
73
+ index += 1;
74
+ const level = match[1];
75
+ const rule = match[2].trim();
76
+ const id = `vercel-${slugify(section)}-${slugify(subsection)}-${index}`;
77
+ records.push({
78
+ id,
79
+ title: `${level}: ${rule.slice(0, 80)}${rule.length > 80 ? '…' : ''}`,
80
+ section,
81
+ subsection,
82
+ level,
83
+ rule,
84
+ description: rule,
85
+ category: 'ui-guidelines-vercel',
86
+ source: 'vercel-labs/web-interface-guidelines',
87
+ tags: inferTags(rule, section),
88
+ });
89
+ }
90
+ return records;
91
+ }
92
+ async function loadGuidelinesMarkdown(signal) {
93
+ try {
94
+ const text = await fetchText(VERCEL_GUIDELINES_URL, signal);
95
+ if (text.includes('MUST:')) {
96
+ return text;
97
+ }
98
+ }
99
+ catch {
100
+ // fallback below
101
+ }
102
+ for (const candidate of [FALLBACK_PATH, BUNDLED_FALLBACK_PATH]) {
103
+ if (fs.existsSync(candidate)) {
104
+ return fs.readFileSync(candidate, 'utf-8');
105
+ }
106
+ }
107
+ throw new Error('Vercel Web Interface Guidelines fallback file not found');
108
+ }
109
+ export async function syncVercelGuidelinesTo(outputDir, options) {
110
+ const markdown = await loadGuidelinesMarkdown(options?.signal);
111
+ const checksum = computeChecksum(markdown);
112
+ if (!options?.force && options?.existingChecksum === checksum) {
113
+ return null;
114
+ }
115
+ const records = parseVercelGuidelinesMarkdown(markdown);
116
+ const guidelinesDir = path.join(outputDir, 'guidelines');
117
+ if (!fs.existsSync(guidelinesDir)) {
118
+ fs.mkdirSync(guidelinesDir, { recursive: true });
119
+ }
120
+ fs.writeFileSync(path.join(guidelinesDir, 'vercel-web-interface.json'), `${JSON.stringify(records, null, 2)}\n`, 'utf-8');
121
+ return {
122
+ metadata: {
123
+ version: VERCEL_GUIDELINES_VERSION,
124
+ syncedAt: new Date().toISOString(),
125
+ checksum,
126
+ },
127
+ count: records.length,
128
+ };
129
+ }
130
+ export async function getVercelGuidelinesChecksum(signal) {
131
+ const markdown = await loadGuidelinesMarkdown(signal);
132
+ return computeChecksum(markdown);
133
+ }
@@ -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.19",
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.19 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.19 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",
@@ -353,7 +353,7 @@
353
353
  "subtitle": "MCP Probe Kit integrates complete development process, best practices guide from requirements to deployment",
354
354
  "overview": {
355
355
  "title": "Complete Development Process",
356
- "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.",
357
357
  "coreIdea": "Core Philosophy:",
358
358
  "coreIdeaText": "Chain the entire development process through workflow orchestration tools (start_*), making AI your development assistant."
359
359
  },
@@ -608,7 +608,7 @@
608
608
  "resources": {
609
609
  "title": "More Resources",
610
610
  "allTools": "Complete Tools Reference",
611
- "allToolsDesc": "View detailed descriptions of all 28 tools",
611
+ "allToolsDesc": "View detailed descriptions of all 29 tools",
612
612
  "gettingStarted": "Installation & Configuration",
613
613
  "gettingStartedDesc": "Quick start guide",
614
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.19",
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.19を始める",
24
+ "description": "5分でMCP Probe Kit v3.0.21を始める",
25
25
  "installConfig": "インストールと設定"
26
26
  },
27
27
  "tools": {
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.19",
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.19 시작하기",
24
+ "description": "5분 안에 MCP Probe Kit v3.0.21 시작하기",
25
25
  "installConfig": "설치 및 구성"
26
26
  },
27
27
  "tools": {
@@ -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.19",
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.19",
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.19,支持 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": "快速开始",
@@ -353,7 +353,7 @@
353
353
  "subtitle": "MCP Probe Kit 融合完整研发流程,从需求到上线的最佳实践指南",
354
354
  "overview": {
355
355
  "title": "完整研发流程",
356
- "description": "MCP Probe Kit 的 28 个工具覆盖了从需求分析到代码上线的完整研发流程。以下是推荐的最佳实践。",
356
+ "description": "MCP Probe Kit 的 29 个工具覆盖了从需求分析到代码上线的完整研发流程。以下是推荐的最佳实践。",
357
357
  "coreIdea": "核心理念:",
358
358
  "coreIdeaText": "通过工作流编排工具(start_*)串联整个开发流程,让 AI 成为你的研发助手。"
359
359
  },
@@ -608,7 +608,7 @@
608
608
  "resources": {
609
609
  "title": "更多资源",
610
610
  "allTools": "完整工具参考",
611
- "allToolsDesc": "查看所有 28 个工具的详细说明",
611
+ "allToolsDesc": "查看所有 29 个工具的详细说明",
612
612
  "gettingStarted": "安装配置",
613
613
  "gettingStartedDesc": "快速开始使用",
614
614
  "migration": "迁移指南",
@@ -1,6 +1,6 @@
1
1
  # Local Memory Stack (Qdrant + Nomic Embed)
2
2
 
3
- This guide documents a **lightweight local setup** for mcp-probe-kit memory tools (`memorize_asset`, `read_memory_asset`, `scan_and_extract_patterns`):
3
+ This guide documents a **lightweight local setup** for mcp-probe-kit memory tools (`search_memory`, `memorize_asset`, `read_memory_asset`, `scan_and_extract_patterns`):
4
4
 
5
5
  - **Qdrant** — vector database (port `50008`)
6
6
  - **Infinity (nomic-embed)** — embedding API (port `50012`), replaces Ollama for users who want a smaller footprint
@@ -1,6 +1,6 @@
1
1
  # 本地记忆栈(Qdrant + Nomic Embed)
2
2
 
3
- 面向 `memorize_asset`、`read_memory_asset`、`scan_and_extract_patterns` 的**轻量本机部署**说明:
3
+ 面向 `search_memory`、`memorize_asset`、`read_memory_asset`、`scan_and_extract_patterns` 的**轻量本机部署**说明:
4
4
 
5
5
  - **Qdrant** — 向量库(端口 `50008`)
6
6
  - **Infinity(nomic-embed)** — 向量生成(端口 `50012`),**替代 Ollama**,对用户更轻
@@ -229,7 +229,10 @@ Swagger:`http://127.0.0.1:50012/docs`
229
229
  "MEMORY_EMBEDDING_MODEL": "nomic-ai/nomic-embed-text-v1.5",
230
230
  "MEMORY_EMBEDDING_API_KEY": "与 nomic-embed/.env 中 INFINITY_API_KEY 相同",
231
231
  "MEMORY_SEARCH_LIMIT": "3",
232
- "MEMORY_SUMMARY_MAX_CHARS": "280"
232
+ "MEMORY_SUMMARY_MAX_CHARS": "280",
233
+ "MEMORY_SEARCH_MIN_SCORE": "0",
234
+ "MEMORY_SEARCH_SHOW_SOURCE": "false",
235
+ "MEMORY_REPO_ID": ""
233
236
  }
234
237
  }
235
238
  }
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>MCP Probe Kit - AI-Powered Complete Development Toolkit | 28 Tools Covering Entire Development Lifecycle</title>
6
+ <title>MCP Probe Kit - AI-Powered Complete Development Toolkit | 29 Tools Covering Entire Development Lifecycle</title>
7
7
  <meta name="i18n-title" content="meta.title">
8
8
 
9
9
  <!-- SEO Meta Tags -->
@@ -99,7 +99,7 @@
99
99
  <a href="./all-tools.html" class="flex items-center gap-2 px-3 py-2 rounded-md text-sm text-text-secondary hover:bg-bg-page hover:text-primary transition-colors no-underline">
100
100
  <span>🛠️</span>
101
101
  <span data-i18n="sidebar.allTools">All Tools</span>
102
- <span class="ml-auto bg-bg-page text-xs px-2 py-0.5 rounded-full">28</span>
102
+ <span class="ml-auto bg-bg-page text-xs px-2 py-0.5 rounded-full">29</span>
103
103
  </a>
104
104
  </div>
105
105
 
@@ -250,6 +250,7 @@
250
250
  <h3 class="font-semibold mb-2" data-i18n="gettingStarted.step1.memory.title">Memory System Setup (Qdrant + Embedding)</h3>
251
251
  <p class="mb-3 text-text-secondary">
252
252
  <span data-i18n="gettingStarted.step1.memory.descriptionPrefix">If you want to use</span>
253
+ <code class="bg-gray-200 px-1 rounded text-xs">search_memory</code>、
253
254
  <code class="bg-gray-200 px-1 rounded text-xs">memorize_asset</code>、
254
255
  <code class="bg-gray-200 px-1 rounded text-xs">read_memory_asset</code>、
255
256
  <code class="bg-gray-200 px-1 rounded text-xs">scan_and_extract_patterns</code>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcp-probe-kit",
3
- "version": "3.0.19",
4
- "description": "AI-Powered Development Toolkit - MCP Server with 28 tools covering code quality, development efficiency, project management, and UI/UX design. Features: Structured Output, Workflow Orchestration, UI/UX Pro Max, and Requirements Interview.",
3
+ "version": "3.0.22",
4
+ "description": "AI-Powered Development Toolkit - MCP Server with 29 tools covering code quality, development efficiency, project management, and UI/UX design. Features: Structured Output, Workflow Orchestration, UI/UX Pro Max, and Requirements Interview.",
5
5
  "mcpName": "io.github.mybolide/mcp-probe-kit",
6
6
  "type": "module",
7
7
  "main": "build/index.js",