skillfish 1.0.9 → 1.0.11
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 +105 -122
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/logo.png" alt="skillfish" width="600">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/knoxgraeme/skillfish/main/assets/logo.png" alt="skillfish" width="600">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -10,15 +10,63 @@
|
|
|
10
10
|
<a href="https://github.com/knoxgraeme/skillfish/actions"><img src="https://github.com/knoxgraeme/skillfish/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<strong>The skill manager for AI coding agents.</strong><br>
|
|
15
|
+
Install, update, and sync skills across Claude Code, Cursor, Copilot + more.
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Quick Start
|
|
14
21
|
|
|
15
22
|
```bash
|
|
16
23
|
npx skillfish add owner/repo
|
|
17
24
|
```
|
|
18
25
|
|
|
19
|
-
|
|
26
|
+
One command installs to **all detected agents** on your system.
|
|
27
|
+
|
|
28
|
+
## What Are Agent Skills?
|
|
29
|
+
|
|
30
|
+
Agent Skills are portable packages of instructions, prompts, scripts, and resources that AI coding agents can discover and use. They give agents like Claude Code, Cursor, and Copilot domain expertise, reusable workflows, and team-specific context - loaded on demand to extend capabilities.
|
|
31
|
+
|
|
32
|
+
Each skill contains a `SKILL.md` file with structured prompts and instructions the agent can follow.
|
|
33
|
+
|
|
34
|
+
Learn more at [agentskills.io](https://agentskills.io).
|
|
35
|
+
|
|
36
|
+
## Find Skills
|
|
37
|
+
|
|
38
|
+
- **[skill.fish](https://skill.fish)** - Browse and discover community skills
|
|
39
|
+
- **[MCP Market](https://mcpmarket.com/tools/skills)** - Skills directory
|
|
40
|
+
|
|
41
|
+
## Commands
|
|
42
|
+
|
|
43
|
+
| Command | Description |
|
|
44
|
+
|---------|-------------|
|
|
45
|
+
| `skillfish add <owner/repo>` | Install skills |
|
|
46
|
+
| `skillfish list` | View installed skills |
|
|
47
|
+
| `skillfish remove [name]` | Remove skills |
|
|
48
|
+
| `skillfish update` | Update installed skills |
|
|
49
|
+
|
|
50
|
+
All commands support `--json` for automation.
|
|
51
|
+
|
|
52
|
+
## Examples
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
npx skillfish add user/my-skill # Install a skill
|
|
56
|
+
npx skillfish add owner/repo --all # Install all skills from repo
|
|
57
|
+
npx skillfish list # See what's installed
|
|
58
|
+
npx skillfish update # Update all skills
|
|
59
|
+
npx skillfish remove old-skill # Remove a skill
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Supported Agents
|
|
63
|
+
|
|
64
|
+
Works with 17+ agents including:
|
|
20
65
|
|
|
21
|
-
|
|
66
|
+
**Claude Code** · **Cursor** · **Windsurf** · **Codex** · **GitHub Copilot** · **Gemini CLI** · **OpenCode** · **Goose** · **Amp** · **Roo Code** · **Kiro CLI** · **Kilo Code** · **Trae** · **Cline** · **Antigravity** · **Droid** · **Clawdbot**
|
|
67
|
+
|
|
68
|
+
<details>
|
|
69
|
+
<summary>All supported agents</summary>
|
|
22
70
|
|
|
23
71
|
| Agent | Skills Directory |
|
|
24
72
|
|-------|------------------|
|
|
@@ -40,141 +88,65 @@ One command installs skills to **all detected agents**:
|
|
|
40
88
|
| Droid | `~/.factory/skills/` |
|
|
41
89
|
| Clawdbot | `~/.clawdbot/skills/` |
|
|
42
90
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
### Install Skills
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
# Install a skill (auto-discovers SKILL.md location)
|
|
49
|
-
npx skillfish add owner/repo
|
|
50
|
-
|
|
51
|
-
# Full path from GitHub (plugin/skill syntax)
|
|
52
|
-
npx skillfish add owner/repo/plugin/skill
|
|
91
|
+
</details>
|
|
53
92
|
|
|
54
|
-
|
|
55
|
-
npx skillfish add owner/repo --path path/to/skill
|
|
93
|
+
---
|
|
56
94
|
|
|
57
|
-
|
|
58
|
-
npx skillfish add owner/repo --all
|
|
95
|
+
## Command Reference
|
|
59
96
|
|
|
60
|
-
|
|
61
|
-
npx skillfish add owner/repo --force
|
|
62
|
-
|
|
63
|
-
# Skip confirmation prompt
|
|
64
|
-
npx skillfish add owner/repo --yes
|
|
65
|
-
```
|
|
97
|
+
### add
|
|
66
98
|
|
|
67
|
-
|
|
99
|
+
Install skills from a repository.
|
|
68
100
|
|
|
69
101
|
```bash
|
|
70
|
-
|
|
71
|
-
npx skillfish
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
npx skillfish
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
npx skillfish
|
|
78
|
-
|
|
79
|
-
# List skills for a specific agent
|
|
80
|
-
npx skillfish list --agent "Claude Code"
|
|
102
|
+
npx skillfish add owner/repo # Auto-discover SKILL.md
|
|
103
|
+
npx skillfish add owner/repo my-skill # Install by skill name
|
|
104
|
+
npx skillfish add owner/repo/path/to/skill # Full path syntax
|
|
105
|
+
npx skillfish add owner/repo --path skills/foo # Explicit path
|
|
106
|
+
npx skillfish add owner/repo --all # Install all skills
|
|
107
|
+
npx skillfish add owner/repo --force # Overwrite existing
|
|
108
|
+
npx skillfish add owner/repo --yes # Skip confirmation
|
|
109
|
+
npx skillfish add owner/repo --project # Project only (./)
|
|
110
|
+
npx skillfish add owner/repo --global # Global only (~/)
|
|
81
111
|
```
|
|
82
112
|
|
|
83
|
-
###
|
|
113
|
+
### list
|
|
84
114
|
|
|
85
|
-
|
|
86
|
-
# Interactive skill picker
|
|
87
|
-
npx skillfish remove
|
|
115
|
+
View installed skills.
|
|
88
116
|
|
|
89
|
-
|
|
90
|
-
npx skillfish
|
|
91
|
-
|
|
92
|
-
#
|
|
93
|
-
npx skillfish
|
|
94
|
-
|
|
95
|
-
# Remove from current project only
|
|
96
|
-
npx skillfish remove my-skill --project
|
|
97
|
-
|
|
98
|
-
# Remove from home directory only
|
|
99
|
-
npx skillfish remove my-skill --global
|
|
100
|
-
|
|
101
|
-
# Remove from specific agent
|
|
102
|
-
npx skillfish remove my-skill --agent "Claude Code"
|
|
103
|
-
|
|
104
|
-
# Skip confirmation prompt
|
|
105
|
-
npx skillfish remove my-skill --yes
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Interactive Selection
|
|
109
|
-
|
|
110
|
-
When a repo contains multiple skills, you'll get an interactive multi-select menu with skill names and descriptions from frontmatter:
|
|
111
|
-
|
|
112
|
-
```
|
|
113
|
-
◆ Select skills to install
|
|
114
|
-
│ ◻ my-skill - A helpful skill for your AI agent
|
|
115
|
-
│ ◻ another-skill - Another useful capability
|
|
116
|
-
│ ◻ third-skill - Yet another skill option
|
|
117
|
-
│ ...
|
|
118
|
-
└
|
|
117
|
+
```bash
|
|
118
|
+
npx skillfish list # List all installed skills
|
|
119
|
+
npx skillfish list --global # Global skills only (~/)
|
|
120
|
+
npx skillfish list --project # Project skills only (./)
|
|
121
|
+
npx skillfish list --agent "Claude Code" # Specific agent
|
|
119
122
|
```
|
|
120
123
|
|
|
121
|
-
|
|
124
|
+
### remove
|
|
122
125
|
|
|
123
|
-
|
|
126
|
+
Remove installed skills.
|
|
124
127
|
|
|
125
128
|
```bash
|
|
126
|
-
|
|
127
|
-
npx skillfish
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
npx skillfish
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
npx skillfish add org/plugin-repo --path plugins/my-plugin/skills/skill-name
|
|
134
|
-
|
|
135
|
-
# Install all skills non-interactively
|
|
136
|
-
npx skillfish add org/plugin-repo --all --yes
|
|
137
|
-
|
|
138
|
-
# Force reinstall
|
|
139
|
-
npx skillfish add user/skill --force
|
|
140
|
-
|
|
141
|
-
# JSON output for automation
|
|
142
|
-
npx skillfish add owner/repo --json
|
|
129
|
+
npx skillfish remove # Interactive picker
|
|
130
|
+
npx skillfish remove my-skill # By name
|
|
131
|
+
npx skillfish remove --all # Remove all
|
|
132
|
+
npx skillfish remove my-skill --project # Project only
|
|
133
|
+
npx skillfish remove my-skill --global # Global only
|
|
134
|
+
npx skillfish remove my-skill --agent "Cursor" # Specific agent
|
|
135
|
+
npx skillfish remove my-skill --yes # Skip confirmation
|
|
143
136
|
```
|
|
144
137
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
The CLI searches these locations for `SKILL.md`:
|
|
148
|
-
1. Repository root
|
|
149
|
-
2. `.claude/skills/{repo}/`
|
|
150
|
-
3. `skills/{repo}/`
|
|
151
|
-
4. `plugins/{repo}/skills/{repo}/`
|
|
152
|
-
|
|
153
|
-
Use `--path` to skip discovery and specify the exact location.
|
|
154
|
-
|
|
155
|
-
## Telemetry
|
|
138
|
+
### update
|
|
156
139
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
**What is collected:**
|
|
160
|
-
- Skill identifier (e.g., `owner/repo/skill-name`)
|
|
161
|
-
- Incremented install count
|
|
162
|
-
|
|
163
|
-
**What is NOT collected:**
|
|
164
|
-
- IP addresses
|
|
165
|
-
- User identifiers
|
|
166
|
-
- System information
|
|
167
|
-
- Usage patterns
|
|
168
|
-
|
|
169
|
-
To opt out, set `DO_NOT_TRACK=1` in your environment:
|
|
140
|
+
Update installed skills to latest version.
|
|
170
141
|
|
|
171
142
|
```bash
|
|
172
|
-
|
|
143
|
+
npx skillfish update # Check for updates interactively
|
|
144
|
+
npx skillfish update --yes # Update all without prompting
|
|
145
|
+
npx skillfish update --json # Check for updates (JSON output)
|
|
173
146
|
```
|
|
174
147
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
## Exit Codes
|
|
148
|
+
<details>
|
|
149
|
+
<summary>Exit Codes</summary>
|
|
178
150
|
|
|
179
151
|
Exit codes help agents and scripts understand command results without parsing error messages.
|
|
180
152
|
|
|
@@ -193,22 +165,33 @@ skillfish add owner/repo --json
|
|
|
193
165
|
# Output includes: "exit_code": 0 (or error code)
|
|
194
166
|
```
|
|
195
167
|
|
|
168
|
+
</details>
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
196
172
|
## Security
|
|
197
173
|
|
|
198
|
-
|
|
174
|
+
Skills are markdown files that provide instructions to AI agents. Always review skills before installing. skillfish does not vet third-party skills.
|
|
199
175
|
|
|
200
|
-
To report
|
|
176
|
+
To report vulnerabilities, email security@skill.fish. See [SECURITY.md](SECURITY.md).
|
|
201
177
|
|
|
202
178
|
## Contributing
|
|
203
179
|
|
|
204
|
-
Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
205
|
-
|
|
206
|
-
Please read our [Code of Conduct](CODE_OF_CONDUCT.md) before participating.
|
|
180
|
+
Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) and our [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
207
181
|
|
|
208
182
|
## Changelog
|
|
209
183
|
|
|
210
184
|
See [CHANGELOG.md](CHANGELOG.md) for release history.
|
|
211
185
|
|
|
186
|
+
<details>
|
|
187
|
+
<summary>Telemetry</summary>
|
|
188
|
+
|
|
189
|
+
Anonymous, aggregate install counts only. No PII collected.
|
|
190
|
+
|
|
191
|
+
To opt out: `DO_NOT_TRACK=1` or `CI=true`.
|
|
192
|
+
|
|
193
|
+
</details>
|
|
194
|
+
|
|
212
195
|
## License
|
|
213
196
|
|
|
214
197
|
[AGPL-3.0](LICENSE) - Graeme Knox
|