@nuzo/memory-cli 0.1.1 → 0.1.3
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 +39 -11
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,26 +1,54 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @nuzo/memory-cli
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The user-facing CLI for Nuzo, a local-first and auditable memory layer for AI
|
|
4
4
|
agents.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Most users should start here.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
7
9
|
|
|
8
10
|
```bash
|
|
9
|
-
nuzo
|
|
11
|
+
npm install --global @nuzo/memory-cli
|
|
12
|
+
nuzo memory init
|
|
13
|
+
nuzo memory doctor
|
|
10
14
|
```
|
|
11
15
|
|
|
12
|
-
|
|
16
|
+
## Use
|
|
13
17
|
|
|
14
18
|
```bash
|
|
15
|
-
nuzo memory init
|
|
16
19
|
nuzo memory remember "The demo project uses SQLite." --kind project_decision
|
|
17
20
|
nuzo memory recall "SQLite"
|
|
18
21
|
nuzo memory list
|
|
19
|
-
nuzo memory
|
|
20
|
-
nuzo memory
|
|
22
|
+
nuzo memory suggest-capture "The user prefers concise notes." --kind preference --reason "Durable response style preference."
|
|
23
|
+
nuzo memory export --path ./memories.memory.export.json
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
For project-local memory:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
nuzo memory init --project
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Defaults
|
|
33
|
+
|
|
34
|
+
Runtime memory is stored locally under:
|
|
35
|
+
|
|
36
|
+
```text
|
|
37
|
+
~/.nuzo/memory/
|
|
21
38
|
```
|
|
22
39
|
|
|
23
|
-
|
|
24
|
-
|
|
40
|
+
Nuzo does not enable telemetry, sync, embeddings, or network calls by default.
|
|
41
|
+
Inferred memories should be suggested first and written only after explicit
|
|
42
|
+
user confirmation.
|
|
43
|
+
|
|
44
|
+
## Related Packages
|
|
45
|
+
|
|
46
|
+
| Package | Purpose |
|
|
47
|
+
| --- | --- |
|
|
48
|
+
| `@nuzo/memory-cli` | The `nuzo` command for local memory control. |
|
|
49
|
+
| `@nuzo/mcp-server` | MCP stdio server for Codex, Claude Code, and MCP hosts. |
|
|
50
|
+
| `@nuzo/memory-core` | Library-level memory lifecycle and storage behavior. |
|
|
51
|
+
|
|
52
|
+
Documentation: https://nuzo.com.br/
|
|
25
53
|
|
|
26
|
-
|
|
54
|
+
License: Apache-2.0
|
package/dist/index.js
CHANGED
|
@@ -27,7 +27,7 @@ export function createProgram(io = defaultIO) {
|
|
|
27
27
|
program
|
|
28
28
|
.name("nuzo")
|
|
29
29
|
.description("Local-first, auditable memory for AI agents.")
|
|
30
|
-
.version("0.1.
|
|
30
|
+
.version("0.1.3");
|
|
31
31
|
const memory = program.command("memory").description("Manage local Nuzo stores.");
|
|
32
32
|
memory
|
|
33
33
|
.option("--store <path>", "Path to the SQLite memory store.")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuzo/memory-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Command line interface for Nuzo.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@nuzo/memory-core": "0.1.
|
|
22
|
+
"@nuzo/memory-core": "0.1.3",
|
|
23
23
|
"commander": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|