claude-mem 13.9.3 → 13.10.2
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 +11 -6
- package/dist/npx-cli/index.js +387 -381
- package/dist/opencode-plugin/index.js +11 -8
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +2 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/hooks/codex-hooks.json +10 -5
- package/plugin/package.json +1 -1
- package/plugin/scripts/bun-runner.js +2 -2
- package/plugin/scripts/context-generator.cjs +131 -124
- package/plugin/scripts/mcp-server.cjs +52 -49
- package/plugin/scripts/server-service.cjs +138 -135
- package/plugin/scripts/transcript-watcher.cjs +17 -14
- package/plugin/scripts/version-check.js +1 -1
- package/plugin/scripts/worker-service.cjs +294 -246
- package/plugin/sqlite/SessionStore.js +764 -0
- package/plugin/sqlite/observations/files.js +10 -0
- package/plugin/ui/viewer-bundle.js +11 -11
- package/plugin/scripts/worker-cli.js +0 -19
package/README.md
CHANGED
|
@@ -136,15 +136,16 @@ Install with a single command:
|
|
|
136
136
|
npx claude-mem install
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
-
Or install for
|
|
139
|
+
Or install for OpenCode:
|
|
140
140
|
|
|
141
141
|
```bash
|
|
142
|
-
npx claude-mem install --ide
|
|
142
|
+
npx claude-mem install --ide opencode
|
|
143
143
|
```
|
|
144
|
-
|
|
144
|
+
|
|
145
|
+
Or install for Antigravity CLI ([setup guide](https://docs.claude-mem.ai/antigravity-cli/setup)):
|
|
145
146
|
|
|
146
147
|
```bash
|
|
147
|
-
npx claude-mem install --ide
|
|
148
|
+
npx claude-mem install --ide antigravity
|
|
148
149
|
```
|
|
149
150
|
|
|
150
151
|
Or install from the plugin marketplace inside Claude Code:
|
|
@@ -155,7 +156,7 @@ Or install from the plugin marketplace inside Claude Code:
|
|
|
155
156
|
/plugin install claude-mem
|
|
156
157
|
```
|
|
157
158
|
|
|
158
|
-
Restart Claude Code
|
|
159
|
+
Restart Claude Code. Context from previous sessions will automatically appear in new sessions.
|
|
159
160
|
|
|
160
161
|
> **Note:** Claude-Mem is also published on npm, but `npm install -g claude-mem` installs the **SDK/library only** — it does not register the plugin hooks or set up the worker service. Always install via `npx claude-mem install` or the `/plugin` commands above.
|
|
161
162
|
|
|
@@ -191,7 +192,6 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
191
192
|
### Getting Started
|
|
192
193
|
|
|
193
194
|
- **[Installation Guide](https://docs.claude-mem.ai/installation)** - Quick start & advanced installation
|
|
194
|
-
- **[Gemini CLI Setup](https://docs.claude-mem.ai/gemini-cli/setup)** - Dedicated guide for Google's Gemini CLI integration
|
|
195
195
|
- **[Usage Guide](https://docs.claude-mem.ai/usage/getting-started)** - How Claude-Mem works automatically
|
|
196
196
|
- **[Search Tools](https://docs.claude-mem.ai/usage/search-tools)** - Query your project history with natural language
|
|
197
197
|
- **[Beta Features](https://docs.claude-mem.ai/beta-features)** - Try experimental features like Endless Mode
|
|
@@ -382,6 +382,11 @@ Contributions are welcome! Please:
|
|
|
382
382
|
4. Update documentation
|
|
383
383
|
5. Submit a Pull Request
|
|
384
384
|
|
|
385
|
+
Claude-Mem ships from three branches: `main` (stable), `core-dev`, and
|
|
386
|
+
`community-edge`. Only `main` is published to npm; the others are run from source.
|
|
387
|
+
See [Release Branches](https://docs.claude-mem.ai/branches) for the strategy and
|
|
388
|
+
how to run the non-stable lines locally.
|
|
389
|
+
|
|
385
390
|
See [Development Guide](https://docs.claude-mem.ai/development) for contribution workflow.
|
|
386
391
|
|
|
387
392
|
---
|