claude-mem 13.10.2 โ 13.10.3
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 +13 -13
- package/dist/npx-cli/index.js +201 -201
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +3 -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/server-service.cjs +2 -2
- package/plugin/scripts/transcript-watcher.cjs +1 -1
- package/plugin/scripts/worker-service.cjs +244 -244
package/README.md
CHANGED
|
@@ -175,13 +175,12 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
175
175
|
- ๐ง **Persistent Memory** - Context survives across sessions
|
|
176
176
|
- ๐ **Progressive Disclosure** - Layered memory retrieval with token cost visibility
|
|
177
177
|
- ๐ **Skill-Based Search** - Query your project history with mem-search skill
|
|
178
|
-
- ๐ฅ๏ธ **Web Viewer UI** - Real-time memory stream at
|
|
178
|
+
- ๐ฅ๏ธ **Web Viewer UI** - Real-time memory stream at the worker URL printed on startup
|
|
179
179
|
- ๐ป **Claude Desktop Skill** - Search memory from Claude Desktop conversations
|
|
180
180
|
- ๐ **Privacy Control** - Use `<private>` tags to exclude sensitive content from storage
|
|
181
181
|
- โ๏ธ **Context Configuration** - Fine-grained control over what context gets injected
|
|
182
182
|
- ๐ค **Automatic Operation** - No manual intervention required
|
|
183
|
-
- ๐ **Citations** - Reference past observations with IDs
|
|
184
|
-
- ๐งช **Beta Channel** - Try experimental features like Endless Mode via version switching
|
|
183
|
+
- ๐ **Citations** - Reference past observations with IDs through the worker API or view all in the web viewer
|
|
185
184
|
|
|
186
185
|
---
|
|
187
186
|
|
|
@@ -194,7 +193,6 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
194
193
|
- **[Installation Guide](https://docs.claude-mem.ai/installation)** - Quick start & advanced installation
|
|
195
194
|
- **[Usage Guide](https://docs.claude-mem.ai/usage/getting-started)** - How Claude-Mem works automatically
|
|
196
195
|
- **[Search Tools](https://docs.claude-mem.ai/usage/search-tools)** - Query your project history with natural language
|
|
197
|
-
- **[Beta Features](https://docs.claude-mem.ai/beta-features)** - Try experimental features like Endless Mode
|
|
198
196
|
|
|
199
197
|
### Best Practices
|
|
200
198
|
|
|
@@ -215,6 +213,7 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
215
213
|
|
|
216
214
|
- **[Configuration](https://docs.claude-mem.ai/configuration)** - Environment variables & settings
|
|
217
215
|
- **[Development](https://docs.claude-mem.ai/development)** - Building, testing, contributing
|
|
216
|
+
- **[Release Branches](https://docs.claude-mem.ai/branches)** - Stable, core-dev, and community-edge branch flow
|
|
218
217
|
- **[Troubleshooting](https://docs.claude-mem.ai/troubleshooting)** - Common issues & solutions
|
|
219
218
|
|
|
220
219
|
---
|
|
@@ -225,7 +224,7 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
225
224
|
|
|
226
225
|
1. **5 Lifecycle Hooks** - SessionStart, UserPromptSubmit, PostToolUse, Stop, SessionEnd (6 hook scripts)
|
|
227
226
|
2. **Smart Install** - Cached dependency checker (pre-hook script, not a lifecycle hook)
|
|
228
|
-
3. **Worker Service** - HTTP API
|
|
227
|
+
3. **Worker Service** - Local HTTP API with web viewer UI and search endpoints, managed by Bun
|
|
229
228
|
4. **SQLite Database** - Stores sessions, observations, summaries
|
|
230
229
|
5. **mem-search Skill** - Natural language queries with progressive disclosure
|
|
231
230
|
6. **Chroma Vector Database** - Hybrid semantic + keyword search for intelligent context retrieval
|
|
@@ -273,11 +272,12 @@ See [Search Tools Guide](https://docs.claude-mem.ai/usage/search-tools) for deta
|
|
|
273
272
|
|
|
274
273
|
---
|
|
275
274
|
|
|
276
|
-
##
|
|
275
|
+
## Release Branches
|
|
277
276
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
See **[
|
|
277
|
+
Stable releases ship from `main` and are published to npm. `core-dev` and
|
|
278
|
+
`community-edge` are source-run branches for early reliability fixes and
|
|
279
|
+
community integrations. See **[Release Branches](https://docs.claude-mem.ai/branches)**
|
|
280
|
+
for the branch flow and non-stable run instructions.
|
|
281
281
|
|
|
282
282
|
---
|
|
283
283
|
|
|
@@ -383,9 +383,9 @@ Contributions are welcome! Please:
|
|
|
383
383
|
5. Submit a Pull Request
|
|
384
384
|
|
|
385
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
|
|
387
|
-
See [Release Branches](https://docs.claude-mem.ai/branches) for the
|
|
388
|
-
|
|
386
|
+
`community-edge`. Only `main` is published to npm; the others are run from
|
|
387
|
+
source. See [Release Branches](https://docs.claude-mem.ai/branches) for the
|
|
388
|
+
strategy and local run instructions.
|
|
389
389
|
|
|
390
390
|
See [Development Guide](https://docs.claude-mem.ai/development) for contribution workflow.
|
|
391
391
|
|
|
@@ -422,7 +422,7 @@ open/commercial boundary.
|
|
|
422
422
|
|
|
423
423
|
---
|
|
424
424
|
|
|
425
|
-
### What About CMEM?
|
|
425
|
+
### What About CMEM?
|
|
426
426
|
|
|
427
427
|
CMEM is a token created by a 3rd party but officially embraced by the creator of Claude-Mem (Alex Newman, @thedotmack). The token acts as a community catalyst for growth and a vehicle for bringing CMEM to the developers and knowledge workers that need it most.
|
|
428
428
|
|