From fb9540fd4a6685f59829522e41d39783274c5c95 Mon Sep 17 00:00:00 2001 From: sean Date: Tue, 17 Jun 2025 16:06:45 +0800 Subject: [PATCH] =?UTF-8?q?optimize:=E4=BC=98=E5=8C=96=E8=AE=B0=E5=BF=86?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E9=80=BB=E8=BE=91=EF=BC=8C=E7=A1=AE?= =?UTF-8?q?=E4=BF=9D=E5=AE=8C=E6=95=B4=E8=AE=B0=E5=BF=86=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E4=B8=8D=E8=A2=AB=E6=88=AA=E6=96=AD=EF=BC=8C=E5=90=8C=E6=97=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=B7=A5=E5=85=B7=E5=AE=9A=E4=B9=89=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E6=8F=8F=E8=BF=B0=EF=BC=8C=E5=A2=9E=E5=BC=BA=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E5=AF=B9=E8=AE=B0=E5=BF=86=E5=9B=9E=E6=83=B3=E5=99=A8?= =?UTF-8?q?=E7=9A=84=E7=90=86=E8=A7=A3=E5=92=8C=E4=BD=BF=E7=94=A8=E6=8C=87?= =?UTF-8?q?=E5=AF=BC=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/core/pouch/commands/RecallCommand.js | 25 +- src/lib/mcp/toolDefinitions.js | 6 +- src/package.registry.json | 262 +++++++++---------- 3 files changed, 141 insertions(+), 152 deletions(-) diff --git a/src/lib/core/pouch/commands/RecallCommand.js b/src/lib/core/pouch/commands/RecallCommand.js index 39339ba..f4cb4f6 100644 --- a/src/lib/core/pouch/commands/RecallCommand.js +++ b/src/lib/core/pouch/commands/RecallCommand.js @@ -263,28 +263,17 @@ ${formattedMemories} */ formatRetrievedKnowledge (memories, query) { return memories.map((memory, index) => { - // 多行内容处理:如果内容包含换行,保持原始格式,但限制总长度 + // 保持完整的记忆内容,不进行截断 + // 陈述性记忆的完整性对于系统价值至关重要 let content = memory.content - if (content.length > 200) { - // 保持换行结构但截断过长内容 - const lines = content.split('\n') - let truncated = '' - let currentLength = 0 - - for (const line of lines) { - if (currentLength + line.length + 1 > 180) { - truncated += '...' - break - } - truncated += (truncated ? '\n' : '') + line - currentLength += line.length + 1 - } - content = truncated - } + + // 只对格式进行优化,但不截断内容 + // 确保换行符正确显示 + content = content.trim() return `📝 ${index + 1}. **记忆** (${memory.timestamp}) ${content} -${memory.tags.slice(0, 5).join(' ')} +${memory.tags.slice(0, 8).join(' ')} ---` }).join('\n') } diff --git a/src/lib/mcp/toolDefinitions.js b/src/lib/mcp/toolDefinitions.js index 011a266..a6d3c5d 100644 --- a/src/lib/mcp/toolDefinitions.js +++ b/src/lib/mcp/toolDefinitions.js @@ -70,7 +70,7 @@ const TOOL_DEFINITIONS = [ }, { name: 'promptx_recall', - description: '🔍 [记忆回想器] ⚡ 让你记住并运用以前的经验和知识 - 瞬间检索之前学会的专业技能/处理过的项目经验/掌握的最佳实践/解决过的问题方案,避免重复犯错和重新学习,当需要参考历史经验做决策时必须使用,让你的工作越来越专业', + description: '🔍 [记忆回想器] ⚡ 让你记住并运用以前的经验和知识 - 瞬间检索专业技能/项目经验/最佳实践/问题方案。**关键字策略**:1️⃣有把握精确匹配时使用query(如"女娲"、"PromptX"、"MCP");2️⃣语义搜索或不确定时留空query获取全量记忆;3️⃣如果第一次使用参数没获取到想要的结果,建议重新使用无参数获取全量信息;4️⃣全量检索比错过重要记忆更有价值。避免重复犯错,让工作越来越专业', inputSchema: { type: 'object', properties: { @@ -80,13 +80,13 @@ const TOOL_DEFINITIONS = [ }, query: { type: 'string', - description: '检索关键词或描述,可选参数,不提供则返回所有记忆' + description: '检索关键词,仅在确信能精确匹配时使用(如"女娲"、"PromptX"等具体词汇)。语义搜索或不确定时请留空以获取全量记忆,如果使用关键字无结果建议重试无参数方式' } }, required: ['random_string'] }, zodSchema: z.object({ - query: z.string().optional().describe('检索关键词或描述,可选参数,不提供则返回所有记忆') + query: z.string().optional().describe('检索关键词,仅在确信能精确匹配时使用(如"女娲"、"PromptX"等具体词汇)。语义搜索或不确定时请留空以获取全量记忆,如果使用关键字无结果建议重试无参数方式') }) }, { diff --git a/src/package.registry.json b/src/package.registry.json index e60d429..7155f06 100644 --- a/src/package.registry.json +++ b/src/package.registry.json @@ -4,8 +4,8 @@ "metadata": { "version": "2.0.0", "description": "package 级资源注册表", - "createdAt": "2025-06-17T07:51:28.253Z", - "updatedAt": "2025-06-17T07:51:28.261Z", + "createdAt": "2025-06-17T07:57:37.732Z", + "updatedAt": "2025-06-17T07:57:37.738Z", "resourceCount": 43 }, "resources": [ @@ -17,9 +17,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/assistant/assistant.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.734Z", + "updatedAt": "2025-06-17T07:57:37.734Z", + "scannedAt": "2025-06-17T07:57:37.734Z" } }, { @@ -30,9 +30,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/domain/assistant/thought/assistant.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.734Z", + "updatedAt": "2025-06-17T07:57:37.734Z", + "scannedAt": "2025-06-17T07:57:37.734Z" } }, { @@ -43,9 +43,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/assistant/execution/assistant.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.734Z", + "updatedAt": "2025-06-17T07:57:37.734Z", + "scannedAt": "2025-06-17T07:57:37.734Z" } }, { @@ -56,9 +56,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/frontend-developer/frontend-developer.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.734Z", + "updatedAt": "2025-06-17T07:57:37.734Z", + "scannedAt": "2025-06-17T07:57:37.734Z" } }, { @@ -69,9 +69,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/domain/frontend-developer/thought/frontend-developer.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.734Z", + "updatedAt": "2025-06-17T07:57:37.734Z", + "scannedAt": "2025-06-17T07:57:37.734Z" } }, { @@ -82,9 +82,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/java-backend-developer/execution/code-quality.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -95,9 +95,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/frontend-developer/execution/frontend-developer.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -108,9 +108,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/frontend-developer/execution/technical-architecture.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -121,9 +121,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/frontend-developer/execution/user-experience.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.256Z", - "updatedAt": "2025-06-17T07:51:28.256Z", - "scannedAt": "2025-06-17T07:51:28.256Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -134,9 +134,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/frontend-developer/execution/wechat-miniprogram-development.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -147,9 +147,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/java-backend-developer/java-backend-developer.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -160,9 +160,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/domain/java-backend-developer/thought/java-backend-developer.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -173,9 +173,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/java-backend-developer/execution/database-design.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -186,9 +186,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/java-backend-developer/execution/java-backend-developer.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -199,9 +199,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/java-backend-developer/execution/spring-ecosystem.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -212,9 +212,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/java-backend-developer/execution/system-architecture.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.735Z", + "updatedAt": "2025-06-17T07:57:37.735Z", + "scannedAt": "2025-06-17T07:57:37.735Z" } }, { @@ -225,9 +225,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/nuwa/nuwa.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -238,9 +238,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/nuwa/execution/dpml-authoring.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -251,9 +251,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/nuwa/execution/role-design-patterns.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -264,9 +264,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/nuwa/execution/role-generation.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -277,9 +277,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/nuwa/execution/visualization-enhancement.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -290,9 +290,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/product-manager/product-manager.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -303,9 +303,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/domain/product-manager/thought/product-manager.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -316,9 +316,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/product-manager/execution/market-analysis.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -329,9 +329,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/product-manager/execution/product-manager.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -342,9 +342,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/product-manager/execution/user-research.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.257Z", - "updatedAt": "2025-06-17T07:51:28.257Z", - "scannedAt": "2025-06-17T07:51:28.257Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -355,9 +355,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/sean/sean.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.258Z", - "updatedAt": "2025-06-17T07:51:28.258Z", - "scannedAt": "2025-06-17T07:51:28.258Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -368,9 +368,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/sean/execution/sean-decision-framework.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.258Z", - "updatedAt": "2025-06-17T07:51:28.258Z", - "scannedAt": "2025-06-17T07:51:28.258Z" + "createdAt": "2025-06-17T07:57:37.736Z", + "updatedAt": "2025-06-17T07:57:37.736Z", + "scannedAt": "2025-06-17T07:57:37.736Z" } }, { @@ -381,9 +381,9 @@ "description": "专业角色,提供特定领域的专业能力", "reference": "@package://prompt/domain/xiaohongshu-marketer/xiaohongshu-marketer.role.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -394,9 +394,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/domain/xiaohongshu-marketer/thought/xiaohongshu-marketer.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -407,9 +407,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/brand-marketing.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -420,9 +420,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/community-building.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -433,9 +433,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/content-creation.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -446,9 +446,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/content-optimization.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -459,9 +459,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/data-analytics.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -472,9 +472,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/ecommerce-conversion.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -485,9 +485,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/performance-optimization.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -498,9 +498,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/platform-compliance.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -511,9 +511,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/team-collaboration.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -524,9 +524,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/user-operation.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -537,9 +537,9 @@ "description": "执行模式,定义具体的行为模式", "reference": "@package://prompt/domain/xiaohongshu-marketer/execution/xiaohongshu-marketer.execution.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.259Z", - "updatedAt": "2025-06-17T07:51:28.259Z", - "scannedAt": "2025-06-17T07:51:28.259Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -550,9 +550,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/core/recall.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.260Z", - "updatedAt": "2025-06-17T07:51:28.260Z", - "scannedAt": "2025-06-17T07:51:28.260Z" + "createdAt": "2025-06-17T07:57:37.737Z", + "updatedAt": "2025-06-17T07:57:37.737Z", + "scannedAt": "2025-06-17T07:57:37.737Z" } }, { @@ -563,9 +563,9 @@ "description": "思维模式,指导AI的思考方式", "reference": "@package://prompt/core/remember.thought.md", "metadata": { - "createdAt": "2025-06-17T07:51:28.260Z", - "updatedAt": "2025-06-17T07:51:28.260Z", - "scannedAt": "2025-06-17T07:51:28.260Z" + "createdAt": "2025-06-17T07:57:37.738Z", + "updatedAt": "2025-06-17T07:57:37.738Z", + "scannedAt": "2025-06-17T07:57:37.738Z" } } ],