@iceinvein/agent-skills 0.1.21 → 0.1.23
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 +7 -2
- package/dist/cli/index.js +2167 -107
- package/package.json +4 -1
- package/skills/improve-my-codebase/skill.json +31 -0
package/README.md
CHANGED
|
@@ -16,7 +16,8 @@ Each skill encodes a specific design methodology (Brooks, Parnas, Rams, Feathers
|
|
|
16
16
|
Requires [Bun](https://bun.sh). Install it with `curl -fsSL https://bun.sh/install | bash`.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
bunx @iceinvein/agent-skills install <skill>
|
|
19
|
+
bunx @iceinvein/agent-skills install <skill> [<skill> ...] # one or more
|
|
20
|
+
bunx @iceinvein/agent-skills install # no args: opens picker
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
Auto-detects Claude Code, Cursor, Codex, or Gemini CLI. Use `--tool claude` to target one, `-g` to install globally.
|
|
@@ -107,13 +108,17 @@ Skills that compose the other audit skills into higher-level workflows.
|
|
|
107
108
|
## Commands
|
|
108
109
|
|
|
109
110
|
```
|
|
110
|
-
bunx @iceinvein/agent-skills install <skill> [--tool <tool>] [--activation <mode>] [-g]
|
|
111
|
+
bunx @iceinvein/agent-skills install <skill> [<skill> ...] [--tool <tool>] [--activation <mode>] [-g]
|
|
112
|
+
bunx @iceinvein/agent-skills install # picker
|
|
113
|
+
bunx @iceinvein/agent-skills browse # alias
|
|
111
114
|
bunx @iceinvein/agent-skills remove <skill> [-g]
|
|
112
115
|
bunx @iceinvein/agent-skills update <skill> [-g]
|
|
113
116
|
bunx @iceinvein/agent-skills list
|
|
114
117
|
bunx @iceinvein/agent-skills info <skill>
|
|
115
118
|
```
|
|
116
119
|
|
|
120
|
+
`install` accepts multiple skill names and installs each in turn. Run `install` (or `browse`) with no args to open an interactive picker: arrow keys to navigate, space to toggle, enter to install all selected, Esc to cancel.
|
|
121
|
+
|
|
117
122
|
| Flag | |
|
|
118
123
|
|------|---|
|
|
119
124
|
| `--tool <tool>` | Target a specific tool: `claude`, `cursor`, `codex`, `gemini` |
|