@clauderecallhq/cli 0.63.0 → 0.64.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.63.0",
3
+ "version": "0.64.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",
@@ -45,10 +45,13 @@ function runModelDownload() {
45
45
  }
46
46
 
47
47
  function printPostInstallBanner() {
48
- // Skip in CI / non-interactive contexts to keep build logs quiet.
48
+ // Skip in CI / build pipelines to keep their logs quiet.
49
+ // Note: we deliberately do NOT gate on process.stdout.isTTY — npm captures
50
+ // postinstall stdout through its own pipe, so TTY-detection is always false
51
+ // and would suppress the banner on every real install.
49
52
  if (process.env.CI === 'true') return;
50
53
  if (process.env.RECALL_QUIET_INSTALL === '1') return;
51
- if (!process.stdout.isTTY) return;
54
+ if (process.env.npm_config_loglevel === 'silent') return;
52
55
 
53
56
  const lines = [
54
57
  '',
@@ -58,9 +61,11 @@ function printPostInstallBanner() {
58
61
  ' recall open the dashboard',
59
62
  ' recall index build the searchable database',
60
63
  ' recall trial start a 7-day Pro trial (no card)',
64
+ ' recall telemetry opt-in / opt-out of anonymous install pings',
61
65
  '',
62
66
  ' Free tier is fully usable. Trial unlocks Pro features',
63
67
  ' for 7 days. Founder pricing ($29.69 lifetime) ends May 31.',
68
+ ' Privacy: clauderecall.com/telemetry',
64
69
  ' ───────────────────────────────────────────────',
65
70
  '',
66
71
  ];