skills 1.0.16 → 1.0.17

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/dist/cli.js +1 -4
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -198,11 +198,8 @@ function readSkillLock() {
198
198
  if (typeof parsed.version !== "number" || !parsed.skills) {
199
199
  return { version: CURRENT_LOCK_VERSION, skills: {} };
200
200
  }
201
- if (parsed.version < 2) {
202
- return { version: CURRENT_LOCK_VERSION, skills: {} };
203
- }
204
201
  if (parsed.version < CURRENT_LOCK_VERSION) {
205
- parsed.version = CURRENT_LOCK_VERSION;
202
+ return { version: CURRENT_LOCK_VERSION, skills: {} };
206
203
  }
207
204
  return parsed;
208
205
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skills",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "The open agent skills ecosystem",
5
5
  "type": "module",
6
6
  "bin": {