@clauderecallhq/cli 0.73.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 +12 -11
- package/dist/cli.js +276 -276
- package/dist/daemon/entrypoint.js +471 -471
- package/dist/mcp-server.js +141 -135
- package/dist/web/assets/{dist-CM2Q2okx.js → dist-BByOdSt4.js} +1 -1
- package/dist/web/assets/index-eoqvpiAT.js +657 -0
- package/dist/web/index.html +1 -1
- package/package.json +2 -2
- package/dist/web/assets/index-D8oScLt4.js +0 -657
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
|
|
|
@@ -140,7 +140,7 @@ Local **768-dimension embeddings** via `bge-base-en-v1.5` ONNX. Three-lane RRF f
|
|
|
140
140
|
|
|
141
141
|
The embedder model (~110MB) auto-downloads on `npm install`. Skip with `RECALL_SKIP_MODEL_DOWNLOAD=1`.
|
|
142
142
|
|
|
143
|
-
**One-click vectorization from the web UI.** Each project header has a `🧠 Vectorize` button. Click → pre-flight dialog shows scope (X of Y eligible sessions), three-✓ cost guarantees (free, on-device CPU only, no network), depth selector (Quick / Standard / Full / Custom chunks-per-session), and a **depth-aware ETA** computed server-side per cap level so Standard and Full give honest, different numbers. While running, the dialog flips to monitor mode with a live progress bar, ETA tick countdown, observed-throughput (drained-in-this-session) feeding the estimate, and visible **warm-up** (yellow) + **wind-down** (red) progress bars with timing context for the parts that have no deterministic ETA (embedder load is 5-60s by hardware; worker batch wind-down is 5-15s). Stop is a **global kill switch** — clears every project's queue and halts the worker
|
|
143
|
+
**One-click vectorization from the web UI.** Each project header has a `🧠 Vectorize` button. Click → pre-flight dialog shows scope (X of Y eligible sessions), three-✓ cost guarantees (free, on-device CPU only, no network), depth selector (Quick / Standard / Full / Custom chunks-per-session), and a **depth-aware ETA** computed server-side per cap level so Standard and Full give honest, different numbers. **Counters are per-repository:** the Queued, Throughput, and ETA tiles only count chunks from the project you opened the dialog from, with a separate small disclosure line surfacing how many chunks are queued from other projects ahead of yours (the worker drains FIFO globally). While running, the dialog flips to monitor mode with a live progress bar, ETA tick countdown, observed-throughput (drained-in-this-session) feeding the estimate, and visible **warm-up** (yellow) + **wind-down** (red) progress bars with timing context for the parts that have no deterministic ETA (embedder load is 5-60s by hardware; worker batch wind-down is 5-15s). **Three explicit confirmation states close every run:** green `✓ Vectorization complete — N chunks embedded in Xs` banner when the queue drains naturally, green `✓ Already vectorized — N{project} is already done` pre-flight callout (replacing the gray "Nothing to do" text) when there's nothing to vectorize, and the existing green `✓ Stopped — worker halted and queue cleared` badge for Stop. Stop itself is a **global kill switch** — clears every project's queue and halts the worker. The vector worker **does not auto-resume on daemon restart** by default; enable `semantic.autoResumeWorker: true` in `~/.recall/config.json` if you want background draining without a click. Free tier doesn't see the button — endpoint is Pro-gated.
|
|
144
144
|
|
|
145
145
|
**Anonymous install ping (opt-in, off by default).** On first run we ask once whether you want to send a single anonymous message per month so we can count real installs vs bots. No PII, no fingerprint, no cross-month linkage. Full payload at [clauderecall.com/telemetry](https://clauderecall.com/telemetry). Toggle any time with `recall telemetry on` / `off` / `view`.
|
|
146
146
|
|
|
@@ -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
|
|