mindkeg-mcp 0.6.1 → 0.7.0

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
@@ -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 auto-detects your agent (Claude Code, Cursor, Windsurf), writes the MCP config, copies agent instructions, and runs a health check. That's it open your agent and start coding.
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 # Target a specific agent
52
- npx mindkeg-mcp init --no-instructions # Skip copying AGENTS.md
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 safe to run multiple times. It merges with existing configs and never overwrites.
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