claude-mem 13.10.0 → 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 +5 -0
- package/dist/npx-cli/index.js +311 -308
- 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 +251 -244
- 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
|
@@ -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
|
---
|