skilldb 0.4.1 → 0.4.2

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,10 +10,10 @@ Connect SkillDB directly to your AI coding tool via the Model Context Protocol:
10
10
 
11
11
  ```bash
12
12
  # Claude Code
13
- claude mcp add skilldb -- npx skilldb-mcp
13
+ claude mcp add skilldb -- npx -p skilldb skilldb-mcp
14
14
 
15
15
  # With API key (for full skill content)
16
- claude mcp add skilldb -- npx skilldb-mcp --api-key sk_live_xxx
16
+ claude mcp add skilldb -- npx -p skilldb skilldb-mcp --api-key sk_live_xxx
17
17
  ```
18
18
 
19
19
  **Cursor** — add to `.cursor/mcp.json`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skilldb",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
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",