@camunda8/spm 0.3.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.
- package/README.md +2 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -153,12 +153,14 @@ 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)
|
|
159
160
|
spm list # show skills + pinned commits
|
|
160
161
|
spm status # check skills are materialized in this checkout
|
|
161
162
|
spm clean # remove generated vendor config
|
|
163
|
+
spm prune [--yes] # wipe the global fetch cache ($SPM_HOME/store, default ~/.spm/store)
|
|
162
164
|
```
|
|
163
165
|
|
|
164
166
|
## Worktrees & fresh clones
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/spm",
|
|
3
|
-
"version": "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.
|
|
37
|
-
"@camunda8/spm-linux-arm64": "0.
|
|
38
|
-
"@camunda8/spm-darwin-x64": "0.
|
|
39
|
-
"@camunda8/spm-darwin-arm64": "0.
|
|
40
|
-
"@camunda8/spm-win32-x64": "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
|
}
|