sverklo 0.1.7 → 0.1.8

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
@@ -5,10 +5,11 @@
5
5
  One command gives Claude Code, Cursor, or any MCP agent deep codebase understanding — semantic search, dependency ranking, and persistent memory. Everything runs locally. No API keys. No cloud.
6
6
 
7
7
  ```bash
8
- claude mcp add sverklo -- npx sverklo .
8
+ npm install -g sverklo
9
+ cd your-project && sverklo init
9
10
  ```
10
11
 
11
- That's it. Your agent now has 10 new tools for code search and memory.
12
+ That's it. `sverklo init` sets up everything MCP server config, CLAUDE.md instructions, and hooks that ensure Claude uses sverklo tools over built-in grep.
12
13
 
13
14
  ---
14
15
 
@@ -66,19 +67,20 @@ Agent query → BM25 text search ──┐
66
67
 
67
68
  ## Quick Start
68
69
 
69
- ### Claude Code
70
+ ### Claude Code (recommended)
70
71
  ```bash
71
- claude mcp add sverklo -- npx sverklo .
72
+ sverklo init
72
73
  ```
74
+ This creates `.claude/mcp.json`, adds a SessionStart hook, and appends sverklo instructions to your `CLAUDE.md`. Safe to run multiple times.
73
75
 
74
- ### Cursor
75
- Add to `.cursor/mcp.json`:
76
+ ### Cursor / Windsurf / VS Code
77
+ Add to `.cursor/mcp.json` (or `.windsurf/mcp.json` / `.vscode/mcp.json`):
76
78
  ```json
77
79
  {
78
80
  "mcpServers": {
79
81
  "sverklo": {
80
- "command": "npx",
81
- "args": ["sverklo", "."]
82
+ "command": "sverklo",
83
+ "args": ["."]
82
84
  }
83
85
  }
84
86
  }
@@ -0,0 +1 @@
1
+ export declare function getDashboardHTML(): string;