@camunda8/spm 0.3.0 → 0.4.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
@@ -153,6 +153,7 @@ make install PREFIX=~/.local # or a custom prefix
153
153
  spm init [--target claude|copilot ...] # scaffold ai.json (repeatable / comma-separated)
154
154
  spm add <git> (--tag|--branch|--commit <v>) \ # add + install a skill
155
155
  [--path <subdir>] [--name <local-name>] [--all] # --all: add every skill under --path
156
+ spm target add [vendor ...] # add target vendor(s); no arg = pick interactively
156
157
  spm remove <name> # drop a skill
157
158
  spm update [name] # re-resolve branches/tags to latest
158
159
  spm install # rebuild from ai.lock (after clone)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda8/spm",
3
- "version": "0.3.0",
3
+ "version": "0.4.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.3.0",
37
- "@camunda8/spm-linux-arm64": "0.3.0",
38
- "@camunda8/spm-darwin-x64": "0.3.0",
39
- "@camunda8/spm-darwin-arm64": "0.3.0",
40
- "@camunda8/spm-win32-x64": "0.3.0"
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"
41
41
  }
42
42
  }