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.
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +9 -10
- package/dist/npx-cli/index.js +207 -224
- package/package.json +2 -3
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/package.json +1 -1
- package/plugin/scripts/mcp-server.cjs +1 -1
- package/plugin/scripts/worker-service.cjs +3 -3
- package/plugin/skills/version-bump/SKILL.md +1 -2
- package/openclaw/Dockerfile.e2e +0 -46
- package/openclaw/SKILL.md +0 -462
- package/openclaw/TESTING.md +0 -279
- package/openclaw/dist/index.js +0 -20
- package/openclaw/e2e-verify.sh +0 -222
- package/openclaw/install.sh +0 -1653
- package/openclaw/openclaw.plugin.json +0 -98
- package/openclaw/package.json +0 -21
- package/openclaw/skills/do/SKILL.md +0 -1
- package/openclaw/skills/make-plan/SKILL.md +0 -1
- package/openclaw/src/index.test.ts +0 -1178
- package/openclaw/src/index.ts +0 -1136
- package/openclaw/test-e2e.sh +0 -40
- package/openclaw/test-install.sh +0 -2086
- package/openclaw/test-sse-consumer.js +0 -98
- package/openclaw/tsconfig.json +0 -26
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.
|
|
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
|
-
|
|
44
|
+
**Run the interactive installer — this is the one required step:**
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
|
|
48
|
-
/plugin install keepmind
|
|
47
|
+
npx keepmind@latest install
|
|
49
48
|
```
|
|
50
49
|
|
|
51
|
-
|
|
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
|
-
|
|
54
|
-
|
|
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
|
-
|
|
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.
|
|
58
|
+
**Requirements:** Node ≥ 22.5. Bun and uv are installed automatically at setup time.
|
|
60
59
|
|
|
61
60
|
---
|
|
62
61
|
|