@bangdao-ai/acw-tools 1.3.4-beta.1 → 1.3.5-beta.1

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.
package/index.js CHANGED
@@ -855,9 +855,9 @@ async function uploadExecutions(sessionId, executionsList) {
855
855
  data.cursorCommands = exec.cursorCommands;
856
856
  }
857
857
 
858
- // 添加详细时间信息(仅type=ai时)- 序列化为JSON字符串
858
+ // 添加详细时间信息(仅type=ai时)- 直接传对象,后端会正确处理JSON
859
859
  if (exec.type === 'ai' && exec.timingInfo) {
860
- data.timingInfo = JSON.stringify(exec.timingInfo);
860
+ data.timingInfo = exec.timingInfo;
861
861
  }
862
862
 
863
863
  // 添加工具调用名称(仅type=ai时)
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ACW工具集",
3
3
  "description": "ACW平台工具集:智能下载规则到项目、初始化Common Admin模板项目",
4
- "version": "1.3.4",
4
+ "version": "1.3.5",
5
5
  "author": "邦道科技 - 产品技术中心",
6
6
  "homepage": "https://www.npmjs.com/package/@bangdao-ai/acw-tools",
7
7
  "repository": "https://www.npmjs.com/package/@bangdao-ai/acw-tools?activeTab=readme",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bangdao-ai/acw-tools",
3
- "version": "1.3.4-beta.1",
3
+ "version": "1.3.5-beta.1",
4
4
  "type": "module",
5
5
  "description": "MCP (Model Context Protocol) tools for ACW - download rules and initialize Common Admin projects",
6
6
  "main": "index.js",