skillpm-skill 0.0.10 → 0.0.12
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/LICENSE +21 -0
- package/package.json +1 -1
- package/skills/skillpm/SKILL.md +16 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 skillpm contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
package/skills/skillpm/SKILL.md
CHANGED
|
@@ -35,7 +35,7 @@ All commands can be run without global install via `npx skillpm <command>`.
|
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
npx skillpm install <skill-name>
|
|
38
|
-
# Aliases: skillpm i
|
|
38
|
+
# Aliases: skillpm i, skillpm add
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
This runs `npm install`, scans `node_modules/` for skill packages, links them into agent directories, copies config files, and configures any required MCP servers.
|
|
@@ -60,9 +60,10 @@ npx skillpm uninstall <skill-name>
|
|
|
60
60
|
```bash
|
|
61
61
|
npx skillpm list
|
|
62
62
|
# Aliases: skillpm ls
|
|
63
|
+
npx skillpm list --json # machine-readable JSON output
|
|
63
64
|
```
|
|
64
65
|
|
|
65
|
-
Shows all installed skill packages with descriptions and MCP server requirements.
|
|
66
|
+
Shows all installed skill packages with descriptions and MCP server requirements. Use `--json` for scripting.
|
|
66
67
|
|
|
67
68
|
### Scaffold a new skill
|
|
68
69
|
|
|
@@ -105,6 +106,19 @@ npx skillpm mcp add <source> # Add an MCP server (delegates to add-mcp)
|
|
|
105
106
|
npx skillpm mcp list # List configured MCP servers
|
|
106
107
|
```
|
|
107
108
|
|
|
109
|
+
### npm passthrough
|
|
110
|
+
|
|
111
|
+
Any command not handled by skillpm is passed through to npm:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
npx skillpm outdated # → npm outdated
|
|
115
|
+
npx skillpm audit # → npm audit
|
|
116
|
+
npx skillpm update # → npm update
|
|
117
|
+
npx skillpm why <skill> # → npm why <skill>
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
This means skillpm is a superset of npm — all npm commands work transparently.
|
|
121
|
+
|
|
108
122
|
## Creating a skill package
|
|
109
123
|
|
|
110
124
|
### Package structure
|