@opencangjie/skills 0.0.33 → 0.0.35

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/CHANGELOG.md CHANGED
@@ -2,6 +2,39 @@
2
2
 
3
3
  All notable changes to the `@opencangjie/skills` SDK will be documented in this file.
4
4
 
5
+ ## [0.0.35] - 2026-02-20
6
+
7
+ ### Fixed
8
+ - **Runtime v0.0.12**: Temporary directory now uses system temp directory (`getTempDirectory()`)
9
+ - Permanently fixed Windows "Filename too long" error when cloning Git repositories
10
+ - Temporary path is now `C:\Users\xxx\AppData\Local\Temp\skills-git-clone\` (Windows) or `/tmp/skills-git-clone/` (Linux/macOS)
11
+ - This is much shorter than the previous path which was nested deep in the pnpm/node_modules directory
12
+
13
+ ## [0.0.34] - 2026-02-20
14
+
15
+ ### Changed
16
+ - Added `peerDependencies` with `@types/node: ">=18.0.0"` (optional) to support wider range of `@types/node` versions
17
+ - This fixes pnpm resolution issues in monorepo environments where different apps use different `@types/node` versions
18
+
19
+ ## [0.0.33] - 2026-02-20
20
+
21
+ ### Fixed
22
+ - **install-runtime command**: Changed `--version` to `--runtime-version` to avoid conflict with CLI's built-in `-v` option
23
+ - Updated README documentation with correct command syntax
24
+
25
+ ## [0.0.32] - 2026-02-20
26
+
27
+ ### Fixed
28
+ - **Runtime v0.0.11**: Temporary directory now uses skill installation directory's parent
29
+ - Fixed Windows "Filename too long" error when cloning Git repositories
30
+ - Temporary path shortened from `runtime_dir/temp/git-clone/` to `skills_parent/temp/git-clone/`
31
+
32
+ ## [0.0.31] - 2026-02-20
33
+
34
+ ### Fixed
35
+ - **Runtime download URL**: Fixed AtomGit download URL format
36
+ - Changed from API endpoint to public download URL: `https://atomgit.com/{owner}/{repo}/releases/download/v{version}/{filename}`
37
+
5
38
  ## [0.0.6] - 2026-02-17
6
39
 
7
40
  ### Fixed
package/README_cn.md CHANGED
@@ -72,7 +72,7 @@ npx skills run my-skill -p '{"input": "data"}'
72
72
 
73
73
  ```bash
74
74
  npx skills install-runtime
75
- npx skills install-runtime --runtime-version 0.0.10
75
+ npx skills install-runtime --runtime-version 0.0.11
76
76
  ```
77
77
 
78
78
  #### `npx skills start`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencangjie/skills",
3
- "version": "0.0.33",
3
+ "version": "0.0.35",
4
4
  "description": "JavaScript/TypeScript SDK for AgentSkills Runtime - Install, manage, and execute AI agent skills with built-in runtime support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -80,8 +80,16 @@
80
80
  "engines": {
81
81
  "node": ">=18.0.0"
82
82
  },
83
+ "peerDependencies": {
84
+ "@types/node": ">=18.0.0"
85
+ },
86
+ "peerDependenciesMeta": {
87
+ "@types/node": {
88
+ "optional": true
89
+ }
90
+ },
83
91
  "runtime": {
84
- "version": "0.0.11",
92
+ "version": "0.0.12",
85
93
  "downloadUrl": "https://atomgit.com/UCToo/agentskills-runtime/releases",
86
94
  "platforms": {
87
95
  "win32-x64": "agentskills-runtime-win-x64.tar.gz",