@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.
- package/README.md +5 -0
- package/bin/cli.js +12 -0
- package/package.json +28 -0
package/README.md
ADDED
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
|
+
}
|