@skillsmith/mcp-server 0.3.18 → 0.3.20
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 +27 -9
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/index.js +14 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/tools/index.d.ts +2 -0
- package/dist/src/tools/index.d.ts.map +1 -1
- package/dist/src/tools/index.js +2 -0
- package/dist/src/tools/index.js.map +1 -1
- package/dist/src/tools/install.conflict-helpers.d.ts.map +1 -1
- package/dist/src/tools/install.conflict-helpers.js +14 -3
- package/dist/src/tools/install.conflict-helpers.js.map +1 -1
- package/dist/src/tools/install.conflict.d.ts.map +1 -1
- package/dist/src/tools/install.conflict.js +3 -1
- package/dist/src/tools/install.conflict.js.map +1 -1
- package/dist/src/tools/install.d.ts.map +1 -1
- package/dist/src/tools/install.helpers.d.ts.map +1 -1
- package/dist/src/tools/install.helpers.js +8 -1
- package/dist/src/tools/install.helpers.js.map +1 -1
- package/dist/src/tools/install.js +34 -6
- package/dist/src/tools/install.js.map +1 -1
- package/dist/src/tools/install.types.d.ts +2 -1
- package/dist/src/tools/install.types.d.ts.map +1 -1
- package/dist/src/tools/install.types.js +6 -0
- package/dist/src/tools/install.types.js.map +1 -1
- package/dist/src/tools/publish.d.ts +41 -0
- package/dist/src/tools/publish.d.ts.map +1 -0
- package/dist/src/tools/publish.helpers.d.ts +46 -0
- package/dist/src/tools/publish.helpers.d.ts.map +1 -0
- package/dist/src/tools/publish.helpers.js +175 -0
- package/dist/src/tools/publish.helpers.js.map +1 -0
- package/dist/src/tools/publish.js +164 -0
- package/dist/src/tools/publish.js.map +1 -0
- package/dist/src/tools/publish.types.d.ts +135 -0
- package/dist/src/tools/publish.types.d.ts.map +1 -0
- package/dist/src/tools/publish.types.js +70 -0
- package/dist/src/tools/publish.types.js.map +1 -0
- package/dist/src/tools/recommend.types.d.ts +3 -3
- package/dist/src/tools/suggest.d.ts +4 -4
- package/dist/src/tools/validate.d.ts.map +1 -1
- package/dist/src/tools/validate.helpers.d.ts +6 -0
- package/dist/src/tools/validate.helpers.d.ts.map +1 -1
- package/dist/src/tools/validate.helpers.js +21 -0
- package/dist/src/tools/validate.helpers.js.map +1 -1
- package/dist/src/tools/validate.js +12 -1
- package/dist/src/tools/validate.js.map +1 -1
- package/dist/src/utils/validation.d.ts.map +1 -1
- package/dist/src/utils/validation.js +10 -0
- package/dist/src/utils/validation.js.map +1 -1
- package/dist/tests/integration/install.integration.test.js +6 -0
- package/dist/tests/integration/install.integration.test.js.map +1 -1
- package/dist/tests/unit/install-helpers.test.js +21 -0
- package/dist/tests/unit/install-helpers.test.js.map +1 -1
- package/dist/tests/unit/publish-helpers.test.d.ts +8 -0
- package/dist/tests/unit/publish-helpers.test.d.ts.map +1 -0
- package/dist/tests/unit/publish-helpers.test.js +132 -0
- package/dist/tests/unit/publish-helpers.test.js.map +1 -0
- package/dist/tests/unit/validate-helpers.test.js +40 -1
- package/dist/tests/unit/validate-helpers.test.js.map +1 -1
- package/package.json +3 -5
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
# @skillsmith/mcp-server
|
|
2
2
|
|
|
3
|
+
MCP (Model Context Protocol) server for agent skill discovery, installation, and management.
|
|
4
|
+
|
|
5
|
+
## What's New in v0.3.18
|
|
6
|
+
|
|
7
|
+
- **Async Initialization** (SMI-2205): Server initializes asynchronously for faster startup
|
|
8
|
+
- **WASM Fallback** (SMI-2206): Automatic fallback to sql.js when native SQLite unavailable
|
|
9
|
+
- **Robust Context Loading** (SMI-2207): Graceful handling of initialization edge cases
|
|
10
|
+
- **612 tests passing** with comprehensive coverage
|
|
11
|
+
|
|
3
12
|
## Auto-Update Notifications
|
|
4
13
|
|
|
5
14
|
The MCP server checks for updates on startup and notifies you when a newer version is available:
|
|
6
15
|
|
|
7
16
|
```
|
|
8
|
-
[skillsmith] Update available: 0.3.
|
|
9
|
-
Restart
|
|
17
|
+
[skillsmith] Update available: 0.3.17 → 0.3.18
|
|
18
|
+
Restart your MCP client to use the latest version.
|
|
10
19
|
```
|
|
11
20
|
|
|
12
21
|
To disable update checks, set `SKILLSMITH_AUTO_UPDATE_CHECK=false` in your environment.
|
|
13
22
|
|
|
14
|
-
MCP (Model Context Protocol) server for Claude Code skill discovery, installation, and management.
|
|
15
|
-
|
|
16
23
|
## Installation
|
|
17
24
|
|
|
18
25
|
```bash
|
|
@@ -21,7 +28,7 @@ npm install @skillsmith/mcp-server
|
|
|
21
28
|
|
|
22
29
|
## Quick Start
|
|
23
30
|
|
|
24
|
-
Copy this
|
|
31
|
+
Copy this MCP configuration snippet:
|
|
25
32
|
|
|
26
33
|
```
|
|
27
34
|
Add this MCP server to my settings.json:
|
|
@@ -36,7 +43,7 @@ Add this MCP server to my settings.json:
|
|
|
36
43
|
}
|
|
37
44
|
```
|
|
38
45
|
|
|
39
|
-
|
|
46
|
+
After adding to your MCP client settings and restarting, try asking:
|
|
40
47
|
|
|
41
48
|
```
|
|
42
49
|
"Search for testing skills"
|
|
@@ -88,7 +95,7 @@ Without an API key, you're limited to **10 total requests** (trial mode). With a
|
|
|
88
95
|
}
|
|
89
96
|
```
|
|
90
97
|
|
|
91
|
-
**Step 3:** Restart
|
|
98
|
+
**Step 3:** Restart your MCP client
|
|
92
99
|
|
|
93
100
|
> **Security Note:** Never paste your API key in chat. Configure it via the settings file above. For testing, set the env var using the appropriate command for your platform:
|
|
94
101
|
>
|
|
@@ -161,7 +168,7 @@ Get detailed information about a specific skill.
|
|
|
161
168
|
|
|
162
169
|
### install_skill
|
|
163
170
|
|
|
164
|
-
Install a skill to your local
|
|
171
|
+
Install a skill to your local environment.
|
|
165
172
|
|
|
166
173
|
| Parameter | Type | Required | Description |
|
|
167
174
|
|-----------|------|----------|-------------|
|
|
@@ -204,7 +211,7 @@ Compare multiple skills side-by-side.
|
|
|
204
211
|
|
|
205
212
|
| Tier | Description |
|
|
206
213
|
|------|-------------|
|
|
207
|
-
| `verified` | Official
|
|
214
|
+
| `verified` | Official platform skills |
|
|
208
215
|
| `community` | Community-reviewed skills |
|
|
209
216
|
| `experimental` | New/beta skills |
|
|
210
217
|
| `unknown` | Unverified skills |
|
|
@@ -215,8 +222,19 @@ Compare multiple skills side-by-side.
|
|
|
215
222
|
|----------|-------------|---------|
|
|
216
223
|
| `SKILLSMITH_DB_PATH` | Database file location | `~/.skillsmith/skills.db` |
|
|
217
224
|
| `SKILLSMITH_TELEMETRY_ENABLED` | Enable anonymous telemetry | `false` |
|
|
225
|
+
| `SKILLSMITH_USE_WASM` | Force WASM SQLite driver (sql.js) | `false` |
|
|
218
226
|
| `POSTHOG_API_KEY` | PostHog API key (required if telemetry enabled) | - |
|
|
219
227
|
|
|
228
|
+
### WASM Fallback (v0.3.18+)
|
|
229
|
+
|
|
230
|
+
The MCP server automatically falls back to a WASM-based SQLite driver (sql.js) when native better-sqlite3 is unavailable. This ensures the server works in environments where native modules can't be compiled.
|
|
231
|
+
|
|
232
|
+
The fallback is automatic—no configuration needed. To force WASM mode:
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
export SKILLSMITH_USE_WASM=true
|
|
236
|
+
```
|
|
237
|
+
|
|
220
238
|
## Telemetry
|
|
221
239
|
|
|
222
240
|
Skillsmith includes optional, anonymous telemetry to help improve the product. **Telemetry is disabled by default.**
|