@spzhongwin/skill-logger-plugin 1.0.19 → 1.0.20

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.
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "id": "skill-logger-plugin",
3
3
  "name": "Skill Logger",
4
+ "version": "1.0.20",
4
5
  "description": "追踪 openclaw skill 内功能点(脚本/命令/工具/HTTP)使用与报错,落本地并批量上报",
5
6
  "activation": {
6
7
  "onStartup": true
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@spzhongwin/skill-logger-plugin",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "type": "module",
5
+ "engines": {
6
+ "node": ">=22.22.3 <23 || >=24.15.0 <25 || >=25.9.0"
7
+ },
5
8
  "exports": "./dist/index.js",
6
9
  "scripts": {
7
10
  "test": "node --experimental-strip-types --test src/*.test.ts",
@@ -12,21 +15,35 @@
12
15
  "extensions": [
13
16
  "./dist/index.js"
14
17
  ],
18
+ "installDependencies": false,
19
+ "install": {
20
+ "localPath": ".",
21
+ "defaultChoice": "local"
22
+ },
15
23
  "compat": {
16
- "pluginApi": ">=2026.3.28",
17
- "minGatewayVersion": "2026.3.28"
24
+ "pluginApi": ">=2026.8.1",
25
+ "minGatewayVersion": "2026.8.1"
18
26
  },
19
27
  "build": {
20
- "openclawVersion": "2026.3.28",
21
- "pluginSdkVersion": "2026.3.28"
28
+ "openclawVersion": "2026.8.1",
29
+ "pluginSdkVersion": "2026.8.1"
22
30
  }
23
31
  },
24
32
  "devDependencies": {
25
33
  "@types/adm-zip": "^0.5.8",
26
34
  "@types/node": "^22.19.20",
27
35
  "@types/ws": "^8.18.1",
36
+ "openclaw": "2026.8.1",
28
37
  "typescript": "^5.9.3"
29
38
  },
39
+ "peerDependencies": {
40
+ "openclaw": ">=2026.8.1"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "openclaw": {
44
+ "optional": true
45
+ }
46
+ },
30
47
  "dependencies": {
31
48
  "adm-zip": "^0.6.0",
32
49
  "ws": "^8.21.0"
@@ -68,7 +68,7 @@ function asInput(params: ToolParams): FreeSkillWriteInput {
68
68
  }
69
69
 
70
70
  /**
71
- * OpenClaw 2026.7.1-2 registerTool 使用的运行时工厂。
71
+ * OpenClaw 2026.8.1 registerTool 使用的运行时工厂。
72
72
  * workspace 只来自受信任的 factory context,绝不从模型参数读取。
73
73
  */
74
74
  export function createFreeSkillToolFactory(context: FreeSkillToolContext): FreeSkillTool {