@clauderecallhq/cli 0.68.3 → 0.72.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 +7 -0
- package/dist/cli.js +337 -306
- package/dist/daemon/embedder-worker.js +3 -0
- package/dist/daemon/entrypoint.js +268 -245
- package/dist/mcp-server.js +106 -91
- package/dist/web/assets/{dist-CPal3OGL.js → dist-CM2Q2okx.js} +1 -1
- package/dist/web/assets/index-BdyfKGwx.css +1 -0
- package/dist/web/assets/index-D8oScLt4.js +657 -0
- package/dist/web/index.html +2 -2
- package/package.json +6 -6
- package/dist/web/assets/index-B-HrjaDy.css +0 -1
- package/dist/web/assets/index-BxxoX8lK.js +0 -645
package/README.md
CHANGED
|
@@ -140,12 +140,19 @@ 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 — followed by a green "Stopped" confirmation badge. 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
|
+
|
|
143
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`.
|
|
144
146
|
|
|
145
147
|
```bash
|
|
146
148
|
recall similar <session-id>
|
|
149
|
+
recall semantic install # one-time model download (skipped if `npm install` already pulled it)
|
|
150
|
+
recall semantic reindex # vectorize on local CPU (idempotent, resumable)
|
|
151
|
+
recall semantic verify-spawn # diagnostic — confirms claude CLI honors the no-persistence flag
|
|
147
152
|
```
|
|
148
153
|
|
|
154
|
+
**Two lanes.** Tier-2 (commands above — `install`, `reindex`, `verify-spawn`) is free, local, and never sends anything anywhere. Tier-1 (`recall semantic on / backfill / auto-extract`) shells out to your local `claude` CLI to summarize sessions and **costs plan tokens at ~30 sessions/min** — opt-in for users who want LLM-generated summaries on top of vectors. Default-off.
|
|
155
|
+
|
|
149
156
|
### Cost Analytics
|
|
150
157
|
|
|
151
158
|
Per-session and per-project token + dollar totals. Daily sparkline. Top-10 heaviest sessions. Know exactly where your Anthropic bill is going.
|