@clauderecallhq/cli 0.74.0 → 0.75.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/README.md +11 -10
- package/dist/cli.js +276 -276
- package/dist/daemon/entrypoint.js +474 -474
- package/dist/mcp-server.js +141 -135
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Claude Recall indexes every Claude Code session you've ever run, surfaces what m
|
|
|
22
22
|
|
|
23
23
|
<br />
|
|
24
24
|
|
|
25
|
-
<sub>
|
|
25
|
+
<sub>Your session content stays on your machine. No cloud. No account. Opt-in telemetry, off by default.</sub>
|
|
26
26
|
|
|
27
27
|
</div>
|
|
28
28
|
|
|
@@ -504,7 +504,7 @@ All writes are rate-limited (default 60/min), zod-validated, and audited to `~/.
|
|
|
504
504
|
|
|
505
505
|
<div align="center">
|
|
506
506
|
|
|
507
|
-
<img src="https://cdn.clauderecall.com/marketing/privacy-trust.gif?v=hd3" alt="Local-first design — daemon binds to 127.0.0.1,
|
|
507
|
+
<img src="https://cdn.clauderecall.com/marketing/privacy-trust.gif?v=hd3" alt="Local-first design — daemon binds to 127.0.0.1, session content stays on your machine" width="640">
|
|
508
508
|
|
|
509
509
|
</div>
|
|
510
510
|
|
|
@@ -513,20 +513,21 @@ All writes are rate-limited (default 60/min), zod-validated, and audited to `~/.
|
|
|
513
513
|
Claude Recall is **local-first by design**, not as an afterthought.
|
|
514
514
|
|
|
515
515
|
- **The daemon binds to `127.0.0.1` only.** Never `0.0.0.0`, never a public interface.
|
|
516
|
-
- **No
|
|
517
|
-
- **The only outbound calls are user-initiated**, never automatic, and never transmit your session data.
|
|
516
|
+
- **No session content is uploaded — ever.** The daemon, file watcher, indexer, and web UI never transmit your session data. Search, context re-injection, and the web UI are fully local.
|
|
518
517
|
- **No cloud. No account.** Your data lives at `~/.recall/` and nowhere else.
|
|
519
518
|
- **Source sessions are never modified.** Claude Code's JSONL files at `~/.claude/projects/` are strictly read-only to Recall.
|
|
520
519
|
- **Never-delete-data invariant.** Every write enforces three independent durability layers: SQLite with history columns, plain-text mirror on disk, and source JSONLs untouched. Renaming, clearing, or removing anything is always additive; the prior value is archived, never destroyed.
|
|
521
520
|
|
|
522
|
-
The
|
|
521
|
+
The daemon's full outbound network surface — metadata only, never session content:
|
|
523
522
|
|
|
524
|
-
|
|
|
525
|
-
|
|
526
|
-
| `recall activate <key>` | `clauderecall.com` |
|
|
527
|
-
|
|
|
523
|
+
| Trigger | Endpoint | What it sends | What it gets | Automatic? |
|
|
524
|
+
|---|---|---|---|---|
|
|
525
|
+
| `recall activate <key>` | `clauderecall.com` | License key only | A signed JWT for offline validation | No — only when you activate |
|
|
526
|
+
| Pro license revocation check | `clauderecall.com` | Anonymous license fingerprint | OK / revoked status | Yes — daily, after activation |
|
|
527
|
+
| `recall semantic install` | `huggingface.co` | Nothing about you | The `bge-base-en-v1.5` ONNX model | No — only when you opt in to vector search |
|
|
528
|
+
| Anonymous install ping | `clauderecall.com` | One anonymous nonce, no PII, no fingerprint, no cross-month linkage | Nothing | Yes — once a month, only after `recall telemetry on` (off by default) |
|
|
528
529
|
|
|
529
|
-
|
|
530
|
+
Activate is required for Pro features. Telemetry is opt-in. Without activation and without telemetry, the daemon's automatic outbound surface is zero — Recall is fully air-gapped for indexing, search, and context re-injection. Full telemetry disclosure: [clauderecall.com/telemetry](https://clauderecall.com/telemetry).
|
|
530
531
|
|
|
531
532
|
<br />
|
|
532
533
|
|