@clauderecallhq/cli 0.63.0 → 0.64.2
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 +83 -136
- package/dist/daemon/entrypoint.js +168 -168
- package/package.json +6 -2
- package/scripts/postinstall.mjs +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clauderecallhq/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.2",
|
|
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",
|
|
@@ -47,10 +47,14 @@
|
|
|
47
47
|
"version-bump": "node scripts/bump-versions.mjs",
|
|
48
48
|
"version-bump:dry": "node scripts/bump-versions.mjs --dry-run",
|
|
49
49
|
"installs": "node scripts/installs.mjs",
|
|
50
|
+
"deploy:site": "bash site/scripts/deploy/deploy-to-production.sh",
|
|
51
|
+
"deploy:site:skip-build": "bash site/scripts/deploy/deploy-to-production.sh --skip-build",
|
|
52
|
+
"deploy:site:dry-run": "bash site/scripts/deploy/deploy-to-production.sh --dry-run",
|
|
50
53
|
"prepare": "[ -d .git ] && git config core.hooksPath .githooks || true",
|
|
51
54
|
"postinstall": "node scripts/postinstall.mjs",
|
|
52
55
|
"verify:bundle-deps": "node scripts/verify-bundle-deps.mjs",
|
|
53
|
-
"
|
|
56
|
+
"check:versions": "node scripts/check-versions.mjs",
|
|
57
|
+
"prepublishOnly": "npm run check:versions && npm run build:cli && npm run verify:bundle-deps"
|
|
54
58
|
},
|
|
55
59
|
"keywords": [
|
|
56
60
|
"claude",
|
package/scripts/postinstall.mjs
CHANGED
|
@@ -45,10 +45,13 @@ function runModelDownload() {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
function printPostInstallBanner() {
|
|
48
|
-
// Skip in CI /
|
|
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 (
|
|
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
|
];
|