@camunda8/spm 0.4.0 → 0.5.0

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/README.md +1 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -160,6 +160,7 @@ spm install # rebuild from ai.lock (after
160
160
  spm list # show skills + pinned commits
161
161
  spm status # check skills are materialized in this checkout
162
162
  spm clean # remove generated vendor config
163
+ spm prune [--yes] # wipe the global fetch cache ($SPM_HOME/store, default ~/.spm/store)
163
164
  ```
164
165
 
165
166
  ## Worktrees & fresh clones
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda8/spm",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Skill package manager (spm): declare AI skills in ai.json and materialize them for Claude/Copilot.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/camunda/spm-cli#readme",
@@ -33,10 +33,10 @@
33
33
  "node": ">=18"
34
34
  },
35
35
  "optionalDependencies": {
36
- "@camunda8/spm-linux-x64": "0.4.0",
37
- "@camunda8/spm-linux-arm64": "0.4.0",
38
- "@camunda8/spm-darwin-x64": "0.4.0",
39
- "@camunda8/spm-darwin-arm64": "0.4.0",
40
- "@camunda8/spm-win32-x64": "0.4.0"
36
+ "@camunda8/spm-linux-x64": "0.5.0",
37
+ "@camunda8/spm-linux-arm64": "0.5.0",
38
+ "@camunda8/spm-darwin-x64": "0.5.0",
39
+ "@camunda8/spm-darwin-arm64": "0.5.0",
40
+ "@camunda8/spm-win32-x64": "0.5.0"
41
41
  }
42
42
  }