mindkeg-mcp 0.6.1 → 0.7.1
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 +6 -7
- package/dist/cli/index.js +1230 -272
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +928 -205
- package/dist/index.js.map +1 -1
- package/dist/models/index.d.ts +1 -1
- package/dist/server/index.d.ts +16 -4
- package/dist/server/index.js +927 -198
- package/dist/server/index.js.map +1 -1
- package/dist/services/index.d.ts +1 -1
- package/dist/storage/storage-adapter.d.ts +1 -1
- package/package.json +1 -1
- package/templates/AGENTS.md +23 -474
- package/dist/{index-GC26W794.d.ts → index-Cq2hedvZ.d.ts} +6 -6
package/README.md
CHANGED
|
@@ -37,23 +37,22 @@ Unlike traditional RAG systems that chunk large documents, Mind Keg stores **pre
|
|
|
37
37
|
|
|
38
38
|
## Quick Start
|
|
39
39
|
|
|
40
|
-
### One-command setup
|
|
41
|
-
|
|
42
40
|
```bash
|
|
43
41
|
npx mindkeg-mcp init
|
|
44
42
|
```
|
|
45
43
|
|
|
46
|
-
This
|
|
44
|
+
That's it. This installs Mind Keg globally for your AI agent (Claude Code, Cursor, Windsurf). Open any project and your agent has persistent memory -- no API keys, no per-project setup.
|
|
45
|
+
|
|
46
|
+
For Claude Code, a SessionStart hook is also installed -- your agent loads prior knowledge automatically at the start of every session.
|
|
47
47
|
|
|
48
48
|
**Options:**
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
npx mindkeg-mcp init --agent cursor
|
|
52
|
-
npx mindkeg-mcp init --
|
|
53
|
-
npx mindkeg-mcp init --no-health-check # Skip the health check
|
|
51
|
+
npx mindkeg-mcp init --agent cursor # Target a specific agent
|
|
52
|
+
npx mindkeg-mcp init --project # Per-project setup instead of global
|
|
54
53
|
```
|
|
55
54
|
|
|
56
|
-
`init` is idempotent
|
|
55
|
+
`init` is idempotent -- safe to run multiple times. It merges with existing configs and never overwrites.
|
|
57
56
|
|
|
58
57
|
### Manual setup
|
|
59
58
|
|