@nuzo/memory-cli 0.1.2 → 0.2.0

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 +39 -11
  2. package/dist/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,26 +1,54 @@
1
- # Nuzo CLI
1
+ # @nuzo/memory-cli
2
2
 
3
- The Nuzo CLI gives users direct control over local, auditable memory for AI
3
+ The user-facing CLI for Nuzo, a local-first and auditable memory layer for AI
4
4
  agents.
5
5
 
6
- The public command is:
6
+ Most users should start here.
7
+
8
+ ## Install
7
9
 
8
10
  ```bash
9
- nuzo memory
11
+ npm install --global @nuzo/memory-cli
12
+ nuzo memory init
13
+ nuzo memory doctor
10
14
  ```
11
15
 
12
- Core workflows:
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 update mem_01HZY --expected-revision 1 --tag sqlite
20
- nuzo memory doctor
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
- Memory is stored locally under `~/.nuzo/memory/` by default. Nuzo does not use
24
- telemetry or network access by default.
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
- Documentation: https://nuzo.com.br
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.2");
30
+ .version("0.2.0");
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.2",
3
+ "version": "0.2.0",
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.2",
22
+ "@nuzo/memory-core": "0.2.0",
23
23
  "commander": "^15.0.0"
24
24
  },
25
25
  "publishConfig": {