@xmemo/client 0.4.135 → 0.4.137
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/LICENSE +7 -7
- package/README.md +422 -329
- package/bin/memory-os.js +12 -12
- package/package.json +46 -46
- package/src/cli.js +2673 -2244
package/bin/memory-os.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import { run } from '../src/cli.js';
|
|
3
|
-
|
|
4
|
-
const exitCode = await run(process.argv.slice(2), {
|
|
5
|
-
env: process.env,
|
|
6
|
-
stdin: process.stdin,
|
|
7
|
-
stdout: process.stdout,
|
|
8
|
-
stderr: process.stderr,
|
|
9
|
-
fetch: globalThis.fetch
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
process.exitCode = exitCode;
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { run } from '../src/cli.js';
|
|
3
|
+
|
|
4
|
+
const exitCode = await run(process.argv.slice(2), {
|
|
5
|
+
env: process.env,
|
|
6
|
+
stdin: process.stdin,
|
|
7
|
+
stdout: process.stdout,
|
|
8
|
+
stderr: process.stderr,
|
|
9
|
+
fetch: globalThis.fetch
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
process.exitCode = exitCode;
|
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@xmemo/client",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Privacy-first CLI and MCP setup helper for XMemo.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"xmemo": "bin/memory-os.js",
|
|
8
|
-
"memory-os": "bin/memory-os.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"bin",
|
|
12
|
-
"src",
|
|
13
|
-
"README.md",
|
|
14
|
-
"LICENSE"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"lint": "node --check bin/memory-os.js && node --check src/cli.js && node --check test/cli.test.js",
|
|
18
|
-
"test": "node --test",
|
|
19
|
-
"pack:dry-run": "npm pack --dry-run",
|
|
20
|
-
"prepublishOnly": "npm run lint && npm test && npm run pack:dry-run"
|
|
21
|
-
},
|
|
22
|
-
"engines": {
|
|
23
|
-
"node": ">=20.0.0"
|
|
24
|
-
},
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
"access": "public",
|
|
27
|
-
"provenance": true
|
|
28
|
-
},
|
|
29
|
-
"repository": {
|
|
30
|
-
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/yonro/memory-os-cli.git"
|
|
32
|
-
},
|
|
33
|
-
"bugs": {
|
|
34
|
-
"url": "https://github.com/yonro/memory-os-cli/issues"
|
|
35
|
-
},
|
|
36
|
-
"homepage": "https://github.com/yonro/memory-os-cli#readme",
|
|
37
|
-
"keywords": [
|
|
38
|
-
"xmemo",
|
|
39
|
-
"memory-os",
|
|
40
|
-
"mcp",
|
|
41
|
-
"agent",
|
|
42
|
-
"cli",
|
|
43
|
-
"privacy"
|
|
44
|
-
],
|
|
45
|
-
"license": "UNLICENSED"
|
|
46
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@xmemo/client",
|
|
3
|
+
"version": "0.4.137",
|
|
4
|
+
"description": "Privacy-first CLI and MCP setup helper for XMemo.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"xmemo": "bin/memory-os.js",
|
|
8
|
+
"memory-os": "bin/memory-os.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"src",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"lint": "node --check bin/memory-os.js && node --check src/cli.js && node --check test/cli.test.js",
|
|
18
|
+
"test": "node --test",
|
|
19
|
+
"pack:dry-run": "npm pack --dry-run",
|
|
20
|
+
"prepublishOnly": "npm run lint && npm test && npm run pack:dry-run"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.0.0"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public",
|
|
27
|
+
"provenance": true
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/yonro/memory-os-cli.git"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/yonro/memory-os-cli/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/yonro/memory-os-cli#readme",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"xmemo",
|
|
39
|
+
"memory-os",
|
|
40
|
+
"mcp",
|
|
41
|
+
"agent",
|
|
42
|
+
"cli",
|
|
43
|
+
"privacy"
|
|
44
|
+
],
|
|
45
|
+
"license": "UNLICENSED"
|
|
46
|
+
}
|