@iceinvein/agent-skills 0.1.7 → 0.1.8
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 +19 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,18 +25,30 @@ bunx @iceinvein/agent-skills install design-review
|
|
|
25
25
|
|
|
26
26
|
# Install for a specific tool
|
|
27
27
|
bunx @iceinvein/agent-skills install design-review --tool claude
|
|
28
|
+
|
|
29
|
+
# Install globally (available in all projects)
|
|
30
|
+
bunx @iceinvein/agent-skills install design-review -g
|
|
28
31
|
```
|
|
29
32
|
|
|
33
|
+
If no tools are detected in your directory, the CLI will prompt you to choose which tools you use.
|
|
34
|
+
|
|
30
35
|
## Commands
|
|
31
36
|
|
|
32
37
|
| Command | Description |
|
|
33
38
|
|---------|-------------|
|
|
34
|
-
| `install <skill> [--tool <tool>]` | Install a skill |
|
|
35
|
-
| `remove <skill
|
|
36
|
-
| `update <skill
|
|
39
|
+
| `install <skill> [--tool <tool>] [-g]` | Install a skill |
|
|
40
|
+
| `remove <skill> [-g]` | Remove a skill |
|
|
41
|
+
| `update <skill> [-g]` | Update to latest version |
|
|
37
42
|
| `list` | List all available skills |
|
|
38
43
|
| `info <skill>` | Show skill details |
|
|
39
44
|
|
|
45
|
+
### Flags
|
|
46
|
+
|
|
47
|
+
| Flag | Description |
|
|
48
|
+
|------|-------------|
|
|
49
|
+
| `--tool <tool>` | Install for a specific tool (claude, cursor, codex, gemini) |
|
|
50
|
+
| `-g, --global` | Install to home directory instead of current project |
|
|
51
|
+
|
|
40
52
|
## Available Skills
|
|
41
53
|
|
|
42
54
|
### design-review
|
|
@@ -66,6 +78,10 @@ Skills live in this repo under `skills/`. The CLI fetches them from GitHub and i
|
|
|
66
78
|
- **Codex**: Appended to `AGENTS.md`
|
|
67
79
|
- **Gemini CLI**: `.gemini/skills/` + `.gemini/settings.json`
|
|
68
80
|
|
|
81
|
+
### Local vs Global
|
|
82
|
+
|
|
83
|
+
By default, skills install to the **current project directory** (e.g., `./claude/skills/`). Use `-g` to install to your **home directory** (e.g., `~/.claude/skills/`) so the skill is available in every project.
|
|
84
|
+
|
|
69
85
|
A `.agent-skills.lock` file tracks installations for update and remove.
|
|
70
86
|
|
|
71
87
|
## License
|