@bjlee2024/claude-mem 13.4.9 → 13.4.18
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/.claude-plugin/marketplace.json +2 -2
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +6 -0
- package/dist/npx-cli/index.js +293 -292
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +4 -2
- package/plugin/.claude-plugin/plugin.json +2 -2
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/bun.lock +163 -0
- package/plugin/hooks/hooks.json +7 -7
- package/plugin/package.json +2 -2
- package/plugin/scripts/bun-runner.js +9 -1
- package/plugin/scripts/mcp-server.cjs +29 -29
- package/plugin/scripts/server-beta-service.cjs +160 -151
- package/plugin/scripts/worker-service.cjs +113 -113
- package/plugin/skills/knowledge-agent/SKILL.md +2 -0
- package/plugin/skills/timeline-report/SKILL.md +33 -8
- package/plugin/skills/weekly-digests/SKILL.md +40 -3
- package/plugin/ui/viewer-bundle.js +12 -12
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "claude-mem",
|
|
13
|
-
"version": "13.4.
|
|
13
|
+
"version": "13.4.18",
|
|
14
14
|
"source": "./plugin",
|
|
15
|
-
"description": "
|
|
15
|
+
"description": "Memory compression system for Claude Code - persist context across sessions"
|
|
16
16
|
}
|
|
17
17
|
]
|
|
18
18
|
}
|
package/README.md
CHANGED
|
@@ -183,6 +183,12 @@ The installer handles dependencies, plugin setup, AI provider configuration, wor
|
|
|
183
183
|
|
|
184
184
|
## Documentation
|
|
185
185
|
|
|
186
|
+
> 🍴 **This is a fork of [`thedotmack/claude-mem`](https://github.com/thedotmack/claude-mem), published as `@bjlee2024/claude-mem`.**
|
|
187
|
+
> **→ [Fork Guide & Changelog](docs/FORK.md)** — everything that differs from upstream: the
|
|
188
|
+
> multi-device **[Server & Client Modes](docs/public/server-client-modes.mdx)**, subscription/local-model
|
|
189
|
+
> generation, client-mode search, the full version history, and how to use it all.
|
|
190
|
+
> [Compare every change ↗](https://github.com/thedotmack/claude-mem/compare/main...bjlee2024:claude-mem:main)
|
|
191
|
+
|
|
186
192
|
📚 **[View Full Documentation](https://docs.claude-mem.ai/)** - Browse on official website
|
|
187
193
|
|
|
188
194
|
### Getting Started
|