@catcuts-skills/handover 1.0.6 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@catcuts-skills/handover",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "跨会话工作交接工具。支持归档当前进度和恢复历史进度两个模式。",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15,9 +15,6 @@
15
15
  "SKILL.md",
16
16
  "scripts/"
17
17
  ],
18
- "optionalDependencies": {
19
- "skills": "^1.1.2"
20
- },
21
18
  "keywords": [
22
19
  "claude-code",
23
20
  "skill",
@@ -189,7 +189,8 @@ try {
189
189
  // 构建 skills 命令
190
190
  const commandParts = [
191
191
  'npx',
192
- 'skills',
192
+ '-y', // 自动确认 npx 安装
193
+ 'skills', // 始终使用最新版本
193
194
  'add',
194
195
  `"${packageRoot}"`,
195
196
  ];