keepmind 1.0.0 → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepmind",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions (node-only fork of claude-mem)",
5
5
  "author": {
6
6
  "name": "Manuel Staggl",
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  <p align="center">
8
8
  <a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
9
- <a href="package.json"><img src="https://img.shields.io/badge/version-1.0.0-green.svg" alt="Version"></a>
9
+ <a href="package.json"><img src="https://img.shields.io/badge/version-1.0.1-green.svg" alt="Version"></a>
10
10
  <a href="package.json"><img src="https://img.shields.io/badge/node-%3E%3D22.5-brightgreen.svg" alt="Node"></a>
11
11
  </p>
12
12
 
@@ -41,22 +41,21 @@ Data lives under `~/.keepmind/` (SQLite `keepmind.db` + `vector-db/`).
41
41
 
42
42
  ## Quick Start
43
43
 
44
- keepmind installs as a Claude Code plugin from this repo's marketplace:
44
+ **Run the interactive installer this is the one required step:**
45
45
 
46
46
  ```bash
47
- /plugin marketplace add ManuelStaggl/keepmind
48
- /plugin install keepmind
47
+ npx keepmind@latest install
49
48
  ```
50
49
 
51
- Or run the installer from a checkout:
50
+ The installer does everything: registers the plugin with Claude Code, installs the runtime (worker, Bun, uv, native deps), lets you pick your AI provider/model, and starts the worker. If an existing **claude-mem** install is found, it offers to migrate your memories and remove it.
52
51
 
53
- ```bash
54
- npx keepmind install --provider claude
55
- ```
52
+ > ⚠️ **The `/plugin install` marketplace flow alone is NOT enough.** It only copies the plugin files — it does **not** install the runtime (worker, Bun/uv, dependencies) or configure a provider, so no memory is ever captured. Whether or not you added the marketplace, you must run `npx keepmind@latest install` to complete setup.
53
+
54
+ Then **restart Claude Code**. Memory injection begins on your **second** session in a project — the first seeds the store, subsequent sessions receive auto-injected context.
56
55
 
57
- Restart Claude Code. Memory injection begins on your **second** session in a project the first seeds the store, subsequent sessions receive auto-injected context.
56
+ Check status any time with `npx keepmind@latest status` (or diagnose setup with `npx keepmind@latest doctor`).
58
57
 
59
- **Requirements:** Node ≥ 22.5. Native deps (`sqlite-vec`, `@huggingface/transformers`) are installed into the plugin at setup time.
58
+ **Requirements:** Node ≥ 22.5. Bun and uv are installed automatically at setup time.
60
59
 
61
60
  ---
62
61