@opencangjie/skills 0.0.34 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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
+
5
19
  ## [0.0.33] - 2026-02-20
6
20
 
7
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencangjie/skills",
3
- "version": "0.0.34",
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",
@@ -89,7 +89,7 @@
89
89
  }
90
90
  },
91
91
  "runtime": {
92
- "version": "0.0.11",
92
+ "version": "0.0.12",
93
93
  "downloadUrl": "https://atomgit.com/UCToo/agentskills-runtime/releases",
94
94
  "platforms": {
95
95
  "win32-x64": "agentskills-runtime-win-x64.tar.gz",