@iceinvein/agent-skills 0.1.21 → 0.1.22
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 +3 -0
- package/dist/cli/index.js +2149 -59
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -108,12 +108,15 @@ Skills that compose the other audit skills into higher-level workflows.
|
|
|
108
108
|
|
|
109
109
|
```
|
|
110
110
|
bunx @iceinvein/agent-skills install <skill> [--tool <tool>] [--activation <mode>] [-g]
|
|
111
|
+
bunx @iceinvein/agent-skills browse [--tool <tool>] [--activation <mode>] [-g]
|
|
111
112
|
bunx @iceinvein/agent-skills remove <skill> [-g]
|
|
112
113
|
bunx @iceinvein/agent-skills update <skill> [-g]
|
|
113
114
|
bunx @iceinvein/agent-skills list
|
|
114
115
|
bunx @iceinvein/agent-skills info <skill>
|
|
115
116
|
```
|
|
116
117
|
|
|
118
|
+
`browse` opens an interactive picker: type a substring to filter, then space-toggle multiple skills and press enter to install them all at once.
|
|
119
|
+
|
|
117
120
|
| Flag | |
|
|
118
121
|
|------|---|
|
|
119
122
|
| `--tool <tool>` | Target a specific tool: `claude`, `cursor`, `codex`, `gemini` |
|