@nuzo/memory-cli 0.1.3 → 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.
- package/dist/index.js +1 -1
- package/package.json +2 -2
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.
|
|
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.
|
|
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.
|
|
22
|
+
"@nuzo/memory-core": "0.2.0",
|
|
23
23
|
"commander": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|