ai-worktool 1.0.16 → 1.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 (2) hide show
  1. package/CHANGELOG.md +2 -1
  2. package/package.json +9 -2
package/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## 1.0.16 (2025-08-05)
1
+ ## 1.0.18 (2025-08-09)
2
2
 
3
3
 
4
4
  ### Bug Fixes
@@ -138,6 +138,7 @@
138
138
  * **agent:** 增加工具调用回调并优化测试流程 ([1cae77e](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/1cae77e7bf05c3f72771d29568034eaecfea3c8e))
139
139
  * **agent:** 增加智能体增量回复功能 ([edd406b](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/edd406b905b930a7943c9697248150f9a4505e08))
140
140
  * **ai-worktool:** 重构 Webview 交互逻辑 ([d118dec](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/d118dec14d3ca3644f41a34db4a5b028987df2db))
141
+ * **commands:** 在打开订单和使用页面时添加 token 参数 ([c20e809](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/c20e809cec5a0c2c1ca886c5414730ce4893fabd))
141
142
  * **configuration:** 增加包管理器、测试框架和编程语言选择配置项 ([ec3cceb](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/ec3cceba695485010c5c710894ea2e49f57737f8))
142
143
  * **dify-plugin:** 新增重命名文件或目录的功能 ([9bb6961](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/9bb69613a28aba6859f72b14b2aa1a586ac9ca70))
143
144
  * **extension:** 重构 Webview 并添加覆盖率报告功能 ([fd8a62b](https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools/commits/fd8a62b79aff4c03af8b56779d607f01d65c175a))
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ai-worktool",
3
3
  "displayName": "吃豆豆:单测智能体",
4
- "version": "1.0.16",
4
+ "version": "1.0.18",
5
5
  "description": "单元测试智能体,帮你开发单元测试用例代码直到100%单测覆盖通过。",
6
6
  "author": "jianguoke.cn",
7
7
  "license": "MIT",
@@ -14,7 +14,8 @@
14
14
  "build": "tsc",
15
15
  "test": "jest test/tools",
16
16
  "coverage": "jest --coverage test/tools",
17
- "plugin": "ts-node ./tools.ts && dify plugin package plugins/dify-plugin",
17
+ "tools": "ts-node ./tools.ts",
18
+ "plugin": "yarn tools && dify plugin package plugins/dify-plugin",
18
19
  "package": "cross-env PKG_CACHE_PATH=./binaries pkg . --targets node20-win-x64 --out-path aicoder ",
19
20
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
20
21
  "ver": "node ./updatever.js",
@@ -262,6 +263,7 @@
262
263
  "table": "^6.9.0"
263
264
  },
264
265
  "devDependencies": {
266
+ "@types/adm-zip": "^0.5.7",
265
267
  "@types/cli-color": "^2.0.6",
266
268
  "@types/jest": "^30.0.0",
267
269
  "@types/jsonwebtoken": "^9.0.10",
@@ -272,8 +274,10 @@
272
274
  "@vscode/test-electron": "^1.6.2",
273
275
  "@yao-pkg/pkg": "^6.6.0",
274
276
  "@yao-pkg/pkg-fetch": "^3.5.24",
277
+ "adm-zip": "^0.5.16",
275
278
  "conventional-changelog-cli": "^2.2.2",
276
279
  "cross-env": "^10.0.0",
280
+ "dotenv": "^17.2.1",
277
281
  "eslint": "^7.32.0",
278
282
  "husky": "^9.1.7",
279
283
  "jest": "^29.7.0",
@@ -286,6 +290,9 @@
286
290
  "vsce": "^2.6.4"
287
291
  },
288
292
  "jest": {
293
+ "setupFiles": [
294
+ "dotenv/config"
295
+ ],
289
296
  "preset": "ts-jest",
290
297
  "testEnvironment": "node"
291
298
  }