claude-mem 13.18.0 → 13.21.0
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 +4 -0
- package/dist/npx-cli/index.js +360 -359
- package/dist/opencode-plugin/index.js +9 -9
- package/openclaw/openclaw.plugin.json +17 -10
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/modes/code.json +1 -1
- package/plugin/modes/email-investigation.json +1 -1
- package/plugin/modes/law-study.json +1 -1
- package/plugin/modes/meme-tokens.json +1 -1
- package/plugin/package.json +1 -1
- package/plugin/scripts/context-generator.cjs +27 -24
- package/plugin/scripts/mcp-server.cjs +17 -17
- package/plugin/scripts/server-service.cjs +47 -47
- package/plugin/scripts/transcript-watcher.cjs +16 -16
- package/plugin/scripts/worker-service.cjs +418 -304
- package/plugin/skills/mode-creator/references/mode-authoring.md +2 -1
- package/plugin/ui/viewer-bundle.js +2 -2
package/README.md
CHANGED
|
@@ -136,6 +136,10 @@ Install with a single command:
|
|
|
136
136
|
npx claude-mem install
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
+
The installer sets everything up first, then asks you to sign in to claude-mem in your browser (email magic link — no card required). Signing in provisions a memory key for your account and unlocks the **claude-mem observer**: memory that runs off-plan, free for your first 7 days, so you get up to 100% more usage from your plan. When the free week ends, memory automatically falls back to your Anthropic plan unless you subscribe. After sign-in you pick your memory provider — the claude-mem observer, your own OpenRouter or Gemini key, or your Anthropic plan.
|
|
140
|
+
|
|
141
|
+
Prefer to skip the sign-in? Pass an explicit `--provider` flag, set `CLAUDE_MEM_ONLINE_OPTIN=false`, or run in CI/non-interactive shells — the installer completes without any account interaction.
|
|
142
|
+
|
|
139
143
|
Or install for OpenCode:
|
|
140
144
|
|
|
141
145
|
```bash
|