skillpass 0.2.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.
- package/LICENSE +21 -0
- package/README.md +15 -5
- package/bin/skillpass.js +2 -0
- package/dist/{cli.mjs → cli.js} +723 -580
- package/package.json +5 -5
- package/bin/skillpass.mjs +0 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Brad Traversy
|
|
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/README.md
CHANGED
|
@@ -20,10 +20,10 @@ Requires Node 20 or newer. No runtime dependencies.
|
|
|
20
20
|
## Commands
|
|
21
21
|
|
|
22
22
|
```
|
|
23
|
-
skillpass search [query] [--target <tool>] [--category <slug>] [--packs] [--json]
|
|
23
|
+
skillpass search [query] [--ai] [--target <tool>] [--category <slug>] [--packs] [--json]
|
|
24
24
|
skillpass scan <path> [--json]
|
|
25
25
|
skillpass report <slug>[@version] [--json]
|
|
26
|
-
skillpass add <slug>[@version] [--target <tool
|
|
26
|
+
skillpass add <slug>[@version] [--target <tool>... [--global] | --dir <path>] [--yes]
|
|
27
27
|
skillpass remove <slug> [--target <tool> [--global] | --dir <path>]
|
|
28
28
|
skillpass update <slug>[@version] [--target <tool> [--global]] [--yes]
|
|
29
29
|
skillpass outdated
|
|
@@ -38,6 +38,10 @@ skillpass --version | --help
|
|
|
38
38
|
`--target claude-code`, `--category security-review`, or `--packs` for
|
|
39
39
|
multi-skill workflow packs.
|
|
40
40
|
|
|
41
|
+
`skillpass search --ai "turn a video into an article"` searches by meaning
|
|
42
|
+
instead of by keyword, through the directory's free AI search. Results come
|
|
43
|
+
back in relevance order and the same filters apply.
|
|
44
|
+
|
|
41
45
|
### Inspect
|
|
42
46
|
|
|
43
47
|
`skillpass report <slug>` prints the version's Skill Passport before you
|
|
@@ -52,9 +56,15 @@ risk, then downloads the validated snapshot and re-verifies every byte against
|
|
|
52
56
|
the pinned source hash before anything touches disk. Installs are atomic - a
|
|
53
57
|
failed write leaves nothing behind.
|
|
54
58
|
|
|
55
|
-
- `--target
|
|
56
|
-
|
|
57
|
-
-
|
|
59
|
+
- `--target <tool>` installs into the tool's skills folder, or its user-level
|
|
60
|
+
folder with `--global`:
|
|
61
|
+
- `claude-code`: `.claude/skills/` and `~/.claude/skills/`
|
|
62
|
+
- `agents`: the shared `.agents/skills/` and `~/.agents/skills/` that
|
|
63
|
+
`codex`, `cursor`, `windsurf`, `github-copilot`, `gemini-cli`, and
|
|
64
|
+
`opencode` all read; any of those names resolves to the same folders
|
|
65
|
+
- `cline`: `.cline/skills/` and `~/.cline/skills/`
|
|
66
|
+
- Repeat `--target` to install into several tools in one pass with one
|
|
67
|
+
pre-flight; targets that share a folder install once
|
|
58
68
|
- `--dir <path>` installs anywhere
|
|
59
69
|
- No flags in a terminal: an interactive picker
|
|
60
70
|
|
package/bin/skillpass.js
ADDED