@opencangjie/skills 0.0.32 → 0.0.34

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,25 @@
2
2
 
3
3
  All notable changes to the `@opencangjie/skills` SDK will be documented in this file.
4
4
 
5
+ ## [0.0.33] - 2026-02-20
6
+
7
+ ### Fixed
8
+ - **install-runtime command**: Changed `--version` to `--runtime-version` to avoid conflict with CLI's built-in `-v` option
9
+ - Updated README documentation with correct command syntax
10
+
11
+ ## [0.0.32] - 2026-02-20
12
+
13
+ ### Fixed
14
+ - **Runtime v0.0.11**: Temporary directory now uses skill installation directory's parent
15
+ - Fixed Windows "Filename too long" error when cloning Git repositories
16
+ - Temporary path shortened from `runtime_dir/temp/git-clone/` to `skills_parent/temp/git-clone/`
17
+
18
+ ## [0.0.31] - 2026-02-20
19
+
20
+ ### Fixed
21
+ - **Runtime download URL**: Fixed AtomGit download URL format
22
+ - Changed from API endpoint to public download URL: `https://atomgit.com/{owner}/{repo}/releases/download/v{version}/{filename}`
23
+
5
24
  ## [0.0.6] - 2026-02-17
6
25
 
7
26
  ### 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.32",
3
+ "version": "0.0.34",
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.10",
92
+ "version": "0.0.11",
85
93
  "downloadUrl": "https://atomgit.com/UCToo/agentskills-runtime/releases",
86
94
  "platforms": {
87
95
  "win32-x64": "agentskills-runtime-win-x64.tar.gz",