@clauderecallhq/cli 0.64.4 → 0.65.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clauderecallhq/cli",
3
- "version": "0.64.4",
3
+ "version": "0.65.0",
4
4
  "description": "Never lose a Claude Code session again. Local, fast, searchable memory over every session you've ever run.",
5
5
  "type": "module",
6
6
  "homepage": "https://clauderecall.com",
@@ -83,7 +83,6 @@
83
83
  "@anthropic-ai/sdk": "^0.94.0",
84
84
  "@hono/node-server": "^2.0.0",
85
85
  "@modelcontextprotocol/sdk": "^1.29.0",
86
- "better-sqlite3": "^12.9.0",
87
86
  "chalk": "^5.3.0",
88
87
  "chokidar": "^5.0.0",
89
88
  "cli-table3": "^0.6.5",
@@ -99,16 +98,16 @@
99
98
  "sqlite-vec": "^0.1.6",
100
99
  "zod": "^4.3.6"
101
100
  },
102
- "optionalDependencies": {
103
- "@huggingface/transformers": "^3.4.1"
101
+ "overrides": {
102
+ "global-agent": "^4.1.3"
104
103
  },
105
104
  "devDependencies": {
106
105
  "@fontsource/inter": "^5.2.8",
107
106
  "@fontsource/jetbrains-mono": "^5.2.8",
107
+ "@huggingface/transformers": "^3.4.1",
108
108
  "@playwright/test": "^1.59.1",
109
109
  "@tanstack/react-query": "^5.99.1",
110
110
  "@tanstack/react-virtual": "^3.13.24",
111
- "@types/better-sqlite3": "^7.6.11",
112
111
  "@types/d3": "^7.4.3",
113
112
  "@types/dompurify": "^3.0.5",
114
113
  "@types/mailparser": "^3.4.6",
@@ -118,6 +117,8 @@
118
117
  "@types/react-dom": "^19.2.3",
119
118
  "@vitejs/plugin-react": "^6.0.1",
120
119
  "autoprefixer": "^10.5.0",
120
+ "@types/better-sqlite3": "^7.6.11",
121
+ "better-sqlite3": "^12.9.0",
121
122
  "bullmq": "^5.76.3",
122
123
  "clsx": "^2.1.1",
123
124
  "d3": "^7.9.0",
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
  import { existsSync } from 'node:fs';
3
- import { spawnSync } from 'node:child_process';
4
3
 
5
4
  const cliPath = 'dist/cli.js';
6
5
 
@@ -17,31 +16,14 @@ runModelDownload();
17
16
  printPostInstallBanner();
18
17
  process.exit(0);
19
18
 
19
+ // As of CLI 0.65, semantic search is opt-in via `recall semantic install`.
20
+ // Doing it automatically here would (1) re-introduce the `boolean@3.2.0`
21
+ // upstream deprecation warning on EVERY `npm install -g` and (2) force a
22
+ // 100MB+ download on users who never touch vector search. The function
23
+ // stays exported for any future re-enablement, but is never called from
24
+ // the default postinstall flow.
20
25
  function runModelDownload() {
21
- if (process.env.RECALL_SKIP_MODEL_DOWNLOAD === '1') {
22
- console.log('[recall] RECALL_SKIP_MODEL_DOWNLOAD=1 — skipping embedder model download');
23
- console.log('[recall] Run `recall semantic install` later to enable vector search');
24
- return;
25
- }
26
-
27
- if (process.env.CI === 'true' && process.env.RECALL_FORCE_MODEL_DOWNLOAD !== '1') {
28
- console.log('[recall] CI environment detected — skipping embedder model download');
29
- console.log('[recall] Run `recall semantic install` to enable vector search later');
30
- return;
31
- }
32
-
33
- console.log('[recall] Installing embedder model bge-base-en-v1.5 (~110MB) so vector search works out of the box…');
34
- console.log('[recall] set RECALL_SKIP_MODEL_DOWNLOAD=1 to skip; install later with `recall semantic install`');
35
-
36
- const result = spawnSync(process.execPath, [cliPath, 'semantic', 'install'], {
37
- stdio: 'inherit',
38
- env: process.env,
39
- });
40
-
41
- if (result.status !== 0) {
42
- console.warn('[recall] Embedder model download skipped or failed (exit code ' + result.status + ')');
43
- console.warn('[recall] CLI is installed and working. Run `recall semantic install` later to enable vector search.');
44
- }
26
+ return;
45
27
  }
46
28
 
47
29
  function printPostInstallBanner() {
@@ -61,6 +43,7 @@ function printPostInstallBanner() {
61
43
  ' recall open the dashboard',
62
44
  ' recall index build the searchable database',
63
45
  ' recall trial start a 7-day Pro trial (no card)',
46
+ ' recall semantic install add vector search (~110MB)',
64
47
  ' recall telemetry opt-in / opt-out of anonymous install pings',
65
48
  '',
66
49
  ' Free tier is fully usable. Trial unlocks Pro features',