skillfish 1.0.10 → 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.
Files changed (2) hide show
  1. package/README.md +104 -121
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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
- Install AI agent skills from GitHub with a single command.
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
- ## Overview
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
- One command installs skills to **all detected agents**:
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
- ## Usage
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
- # Specify explicit path
55
- npx skillfish add owner/repo --path path/to/skill
93
+ ---
56
94
 
57
- # Install all skills from a repo (non-interactive)
58
- npx skillfish add owner/repo --all
95
+ ## Command Reference
59
96
 
60
- # Overwrite existing skills
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
- ### List Skills
99
+ Install skills from a repository.
68
100
 
69
101
  ```bash
70
- # Interactive agent and location picker
71
- npx skillfish list
72
-
73
- # List global skills only
74
- npx skillfish list --global
75
-
76
- # List project skills only
77
- npx skillfish list --project
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
- ### Remove Skills
113
+ ### list
84
114
 
85
- ```bash
86
- # Interactive skill picker
87
- npx skillfish remove
115
+ View installed skills.
88
116
 
89
- # Remove a skill by name
90
- npx skillfish remove my-skill
91
-
92
- # Remove all installed skills
93
- npx skillfish remove --all
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
- Use `--all` to install all skills non-interactively (useful for automation).
124
+ ### remove
122
125
 
123
- ## Examples
126
+ Remove installed skills.
124
127
 
125
128
  ```bash
126
- # Install from a skill repo with SKILL.md at root
127
- npx skillfish add user/my-skill
128
-
129
- # Install using full path from GitHub
130
- npx skillfish add owner/repo/path/to/skill
131
-
132
- # Install from a plugin repo with explicit path
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
- ## Discovery
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
- This CLI collects anonymous, aggregate install counts to understand skill popularity. No personally identifiable information is collected.
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
- DO_NOT_TRACK=1 npx skillfish add owner/repo
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
- Telemetry is also automatically disabled in CI environments (`CI=true`).
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
- **Security Note:** Skills are markdown files that provide instructions to AI agents. Always review skills before installing. skillfish does not vet third-party skills.
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 security vulnerabilities, please email security@skill.fish. See [SECURITY.md](SECURITY.md) for details.
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) for guidelines.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillfish",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Install AI agent skills from GitHub with a single command",
5
5
  "type": "module",
6
6
  "bin": {