@clauderecallhq/cli 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/bin/cli.js +12 -0
  3. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Claude Recall
2
+
3
+ Local, searchable memory for every Claude Code session you run.
4
+
5
+ Public release coming soon. Visit [clauderecall.com](https://clauderecall.com) for updates.
package/bin/cli.js ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ const msg = [
3
+ '',
4
+ ' Claude Recall',
5
+ ' -------------',
6
+ ' Local, searchable memory for every Claude Code session.',
7
+ '',
8
+ ' Public release coming soon.',
9
+ ' Visit https://clauderecall.com for updates.',
10
+ '',
11
+ ].join('\n');
12
+ process.stdout.write(msg + '\n');
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@clauderecallhq/cli",
3
+ "version": "0.0.1",
4
+ "description": "Claude Recall. Local, searchable memory for every Claude Code session you run. Public release coming soon at https://clauderecall.com.",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "bin": {
9
+ "recall": "bin/cli.js"
10
+ },
11
+ "files": [
12
+ "bin/",
13
+ "README.md"
14
+ ],
15
+ "license": "UNLICENSED",
16
+ "homepage": "https://clauderecall.com",
17
+ "keywords": [
18
+ "claude",
19
+ "claude-code",
20
+ "recall",
21
+ "memory",
22
+ "session",
23
+ "local-first"
24
+ ],
25
+ "engines": {
26
+ "node": ">=20"
27
+ }
28
+ }