@skillsmith/mcp-server 0.3.17 → 0.3.19

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 CHANGED
@@ -1,18 +1,25 @@
1
1
  # @skillsmith/mcp-server
2
2
 
3
+ MCP (Model Context Protocol) server for Claude Code 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.15 → 0.3.16
17
+ [skillsmith] Update available: 0.3.17 → 0.3.18
9
18
  Restart Claude Code 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
@@ -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.**