sverklo 0.1.7 → 0.1.9
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 +10 -8
- package/dist/src/server/dashboard-html.d.ts +1 -0
- package/dist/src/server/dashboard-html.js +1234 -0
- package/dist/src/server/dashboard-html.js.map +1 -0
- package/dist/src/server/http-server.js +141 -321
- package/dist/src/server/http-server.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
8
|
+
npm install -g sverklo
|
|
9
|
+
cd your-project && sverklo init
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
That's it.
|
|
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
|
-
|
|
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": "
|
|
81
|
-
"args": ["
|
|
82
|
+
"command": "sverklo",
|
|
83
|
+
"args": ["."]
|
|
82
84
|
}
|
|
83
85
|
}
|
|
84
86
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getDashboardHTML(): string;
|