skill-library-mcp 1.3.4 → 1.3.5
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +10 -56
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skill-library-mcp",
|
|
3
3
|
"version": "1.3.3",
|
|
4
|
-
"description": "On-demand access to
|
|
4
|
+
"description": "On-demand access to 15,000+ curated skills for AI coding assistants via MCP",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "modbender"
|
|
7
7
|
},
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "skill-library",
|
|
11
|
-
"description": "On-demand access to
|
|
11
|
+
"description": "On-demand access to 15,000+ curated skills for AI coding assistants. Search, browse categories, and load skills without polluting your context window.",
|
|
12
12
|
"source": "./",
|
|
13
13
|
"category": "productivity",
|
|
14
14
|
"keywords": ["skills", "mcp", "skill-library", "claude-code", "ai"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skill-library",
|
|
3
|
-
"description": "On-demand access to
|
|
3
|
+
"description": "On-demand access to 15,000+ curated skills for AI coding assistants. Search, browse categories, and load skills without polluting your context window.",
|
|
4
4
|
"version": "1.3.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "modbender"
|
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# Skill Library MCP
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**15,000+ ready-to-use skills for AI coding assistants, served on demand via MCP.**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/skill-library-mcp)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://nodejs.org)
|
|
8
8
|
|
|
9
|
-
An MCP server that provides on-demand skill loading for AI coding assistants. Instead of stuffing your system prompt with every skill you might need, this server indexes
|
|
9
|
+
An MCP server that provides on-demand skill loading for AI coding assistants. Instead of stuffing your system prompt with every skill you might need, this server indexes 15,000+ skills and serves only the ones relevant to your current task — keeping context windows lean and responses focused.
|
|
10
10
|
|
|
11
11
|
## Why?
|
|
12
12
|
|
|
13
|
-
- **
|
|
13
|
+
- **15,000+ skills** covering frontend, backend, DevOps, security, testing, databases, AI/ML, automation, and more
|
|
14
14
|
- **On-demand loading** — skills are fetched only when needed, not crammed into every conversation
|
|
15
15
|
- **IDF-weighted search** — finds the right skill even from natural language queries like "help me debug a memory leak"
|
|
16
16
|
- **Browse by category** — 13 categories to discover skills you didn't know existed
|
|
@@ -22,9 +22,7 @@ An MCP server that provides on-demand skill loading for AI coding assistants. In
|
|
|
22
22
|
|
|
23
23
|
### Claude Code Plugin (Recommended)
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
First, add the repository as a marketplace source, then install the plugin:
|
|
25
|
+
Add the marketplace source, then install the plugin:
|
|
28
26
|
|
|
29
27
|
```bash
|
|
30
28
|
claude plugin marketplace add https://github.com/modbender/skill-library-mcp.git
|
|
@@ -33,50 +31,13 @@ claude plugin install skill-library
|
|
|
33
31
|
|
|
34
32
|
The MCP server starts automatically when Claude Code launches. No manual configuration needed.
|
|
35
33
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
claude plugin install skill-library --scope user # Default, available everywhere
|
|
40
|
-
claude plugin install skill-library --scope project # Project-only, shared with collaborators
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
**Desktop UI:**
|
|
44
|
-
|
|
45
|
-
1. Open Claude Desktop settings
|
|
46
|
-
2. Go to **Plugins** and click **Add marketplace by URL**
|
|
47
|
-
3. Enter the repository URL:
|
|
48
|
-
```
|
|
49
|
-
https://github.com/modbender/skill-library-mcp.git
|
|
50
|
-
```
|
|
51
|
-
4. Install **skill-library** from the marketplace list
|
|
52
|
-
|
|
53
|
-
**Local development:**
|
|
34
|
+
### Claude Code (CLI)
|
|
54
35
|
|
|
55
36
|
```bash
|
|
56
|
-
claude --
|
|
37
|
+
claude mcp add skill-library -- npx -y skill-library-mcp
|
|
57
38
|
```
|
|
58
39
|
|
|
59
|
-
### MCP Server (
|
|
60
|
-
|
|
61
|
-
For other tools or manual Claude Code setup, add to your MCP configuration:
|
|
62
|
-
|
|
63
|
-
<details>
|
|
64
|
-
<summary><strong>Claude Code (CLI)</strong></summary>
|
|
65
|
-
|
|
66
|
-
Add to `~/.claude/settings.json`:
|
|
67
|
-
|
|
68
|
-
```json
|
|
69
|
-
{
|
|
70
|
-
"mcpServers": {
|
|
71
|
-
"skill-library": {
|
|
72
|
-
"command": "npx",
|
|
73
|
-
"args": ["-y", "skill-library-mcp"]
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
</details>
|
|
40
|
+
### MCP Server (Other Tools)
|
|
80
41
|
|
|
81
42
|
<details>
|
|
82
43
|
<summary><strong>Claude Desktop</strong></summary>
|
|
@@ -150,13 +111,6 @@ Add to `.vscode/mcp.json`:
|
|
|
150
111
|
|
|
151
112
|
</details>
|
|
152
113
|
|
|
153
|
-
<details>
|
|
154
|
-
<summary><strong>Antigravity</strong></summary>
|
|
155
|
-
|
|
156
|
-
See [Antigravity docs](https://docs.antigravity.dev) for MCP server configuration format.
|
|
157
|
-
|
|
158
|
-
</details>
|
|
159
|
-
|
|
160
114
|
<details>
|
|
161
115
|
<summary><strong>Manual installation</strong></summary>
|
|
162
116
|
|
|
@@ -210,7 +164,7 @@ list_categories()
|
|
|
210
164
|
|
|
211
165
|
## Skill Categories
|
|
212
166
|
|
|
213
|
-
The library includes
|
|
167
|
+
The library includes 15,000+ skills across 13 categories:
|
|
214
168
|
|
|
215
169
|
| Category | Examples |
|
|
216
170
|
|----------|----------|
|
|
@@ -249,7 +203,7 @@ Skills can optionally include a `resources/` directory with additional `.md` fil
|
|
|
249
203
|
|
|
250
204
|
Contributions are welcome! To add a new skill:
|
|
251
205
|
|
|
252
|
-
1. Create a directory under `
|
|
206
|
+
1. Create a directory under `data/` with your skill name
|
|
253
207
|
2. Add a `SKILL.md` file with YAML frontmatter (`name`, `description`)
|
|
254
208
|
3. Run `pnpm dedup` to check for duplicates
|
|
255
209
|
4. Submit a PR
|
|
@@ -262,7 +216,7 @@ pnpm test # Run tests
|
|
|
262
216
|
pnpm build # Build to dist/
|
|
263
217
|
pnpm dev # Run server locally
|
|
264
218
|
pnpm dedup # Check for duplicate skills
|
|
265
|
-
pnpm validate-skills # Validate
|
|
219
|
+
pnpm validate-skills # Validate data/ directory structure
|
|
266
220
|
pnpm fix-skills # Fix broken skills (dry run by default)
|
|
267
221
|
pnpm clean-skills # Remove invalid skill dirs (dry run by default)
|
|
268
222
|
make ci # Run test + validate + build
|