agent-skill-manager 1.7.0 → 1.8.1
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 +21 -9
- package/dist/agent-skill-manager.js +239 -219
- package/dist/chunk-0547b22w.js +90 -0
- package/dist/chunk-4jgszsb5.js +90 -0
- package/dist/chunk-fdba7wpb.js +12 -0
- package/dist/chunk-hkka951q.js +12 -0
- package/dist/chunk-msxpxn5g.js +12 -0
- package/dist/chunk-nvnecg9s.js +12 -0
- package/dist/chunk-rg8bzwd8.js +90 -0
- package/dist/chunk-t3fx1sq1.js +90 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -121,6 +121,7 @@ asm inspect <skill-name> # Show detailed info for a skill
|
|
|
121
121
|
asm install <source> # Install a skill from GitHub
|
|
122
122
|
asm uninstall <skill-name> # Remove a skill (with confirmation)
|
|
123
123
|
asm audit # Detect duplicate skills
|
|
124
|
+
asm audit security <name> # Run security audit on a skill
|
|
124
125
|
asm config show # Print current config
|
|
125
126
|
asm config path # Print config file path
|
|
126
127
|
asm config reset # Reset config to defaults
|
|
@@ -153,6 +154,10 @@ asm install github:user/skills --path skills/code-review
|
|
|
153
154
|
asm install github:user/skills --all -p claude -y
|
|
154
155
|
asm install github:user/skills # interactive picker
|
|
155
156
|
|
|
157
|
+
# Private repos (SSH transport)
|
|
158
|
+
asm install github:user/private-skill --transport ssh
|
|
159
|
+
asm install github:user/private-skill -t auto # try HTTPS, fallback to SSH
|
|
160
|
+
|
|
156
161
|
# Other options
|
|
157
162
|
asm install github:user/my-skill --name custom-name
|
|
158
163
|
asm install github:user/my-skill --force
|
|
@@ -163,15 +168,16 @@ asm install github:user/my-skill -p claude --yes --json
|
|
|
163
168
|
|
|
164
169
|
**Install flags:**
|
|
165
170
|
|
|
166
|
-
| Flag
|
|
167
|
-
|
|
|
168
|
-
| `-p, --provider <name>`
|
|
169
|
-
| `--name <name>`
|
|
170
|
-
| `--path <subdir>`
|
|
171
|
-
| `--all`
|
|
172
|
-
| `-
|
|
173
|
-
| `-
|
|
174
|
-
|
|
|
171
|
+
| Flag | Description |
|
|
172
|
+
| ------------------------ | ------------------------------------------------------ |
|
|
173
|
+
| `-p, --provider <name>` | Target provider (claude, codex, openclaw, agents) |
|
|
174
|
+
| `--name <name>` | Override skill directory name |
|
|
175
|
+
| `--path <subdir>` | Install a specific skill from a subdirectory |
|
|
176
|
+
| `--all` | Install all skills found in the repo |
|
|
177
|
+
| `-t, --transport <mode>` | Transport: `https`, `ssh`, or `auto` (default: `auto`) |
|
|
178
|
+
| `-f, --force` | Overwrite if skill already exists |
|
|
179
|
+
| `-y, --yes` | Skip confirmation prompt |
|
|
180
|
+
| `--json` | Output result as JSON |
|
|
175
181
|
|
|
176
182
|
**Multi-skill repo support:** When a repo doesn't have `SKILL.md` at the root, `asm` automatically scans for skills in subdirectories (up to 3 levels deep). In interactive mode, it presents a numbered picker. Use `--path` to target a specific skill or `--all` to batch-install everything.
|
|
177
183
|
|
|
@@ -192,6 +198,12 @@ asm inspect my-skill
|
|
|
192
198
|
# Remove duplicates automatically
|
|
193
199
|
asm audit --yes
|
|
194
200
|
|
|
201
|
+
# Security audit a skill before installing
|
|
202
|
+
asm audit security github:user/repo
|
|
203
|
+
|
|
204
|
+
# Audit all installed skills
|
|
205
|
+
asm audit security --all
|
|
206
|
+
|
|
195
207
|
# Uninstall without confirmation
|
|
196
208
|
asm uninstall old-skill --yes
|
|
197
209
|
```
|