skilldb 0.4.2 → 0.4.3

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 +19 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,11 +9,14 @@ CLI, TypeScript SDK, and **MCP Server** for [SkillDB](https://skilldb.dev) — d
9
9
  Connect SkillDB directly to your AI coding tool via the Model Context Protocol:
10
10
 
11
11
  ```bash
12
- # Claude Code
13
- claude mcp add skilldb -- npx -p skilldb skilldb-mcp
12
+ # Step 1: Install globally (one time)
13
+ npm install -g skilldb
14
+
15
+ # Step 2: Add to Claude Code
16
+ claude mcp add skilldb -- skilldb-mcp
14
17
 
15
18
  # With API key (for full skill content)
16
- claude mcp add skilldb -- npx -p skilldb skilldb-mcp --api-key sk_live_xxx
19
+ claude mcp add skilldb -- skilldb-mcp --api-key sk_live_xxx
17
20
  ```
18
21
 
19
22
  **Cursor** — add to `.cursor/mcp.json`:
@@ -21,8 +24,19 @@ claude mcp add skilldb -- npx -p skilldb skilldb-mcp --api-key sk_live_xxx
21
24
  {
22
25
  "mcpServers": {
23
26
  "skilldb": {
24
- "command": "npx",
25
- "args": ["skilldb-mcp"]
27
+ "command": "skilldb-mcp"
28
+ }
29
+ }
30
+ }
31
+ ```
32
+
33
+ **Windsurf** — add to `mcp_config.json`:
34
+ ```json
35
+ {
36
+ "mcpServers": {
37
+ "skilldb": {
38
+ "command": "skilldb-mcp",
39
+ "args": ["--api-key", "sk_live_xxx"]
26
40
  }
27
41
  }
28
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skilldb",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "SDK and CLI for SkillDB — discover, install, and manage AI agent skills",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",