memorizz 0.5.2 → 0.6.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/README.md +4 -0
- package/package.json +22 -5
package/README.md
CHANGED
|
@@ -11,6 +11,10 @@ developers. On `npm install -g memorizz` it:
|
|
|
11
11
|
|
|
12
12
|
The `memorizz` command then execs the uv-installed CLI.
|
|
13
13
|
|
|
14
|
+
This includes `memorizz harness` for governing installed Codex, Claude Code,
|
|
15
|
+
OpenHands, and native MemAgent workers. The bootstrapper does not install those
|
|
16
|
+
vendor CLIs; inspect local readiness with `memorizz harness doctor`.
|
|
17
|
+
|
|
14
18
|
## First-class install paths
|
|
15
19
|
|
|
16
20
|
If you already use Python tooling, prefer these:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memorizz",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "npm bootstrapper for the
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "npm bootstrapper for the memory-first Memorizz agent CLI and meta-harness.",
|
|
5
5
|
"license": "PolyForm-Noncommercial-1.0.0",
|
|
6
6
|
"homepage": "https://github.com/RichmondAlake/memorizz",
|
|
7
7
|
"repository": {
|
|
@@ -9,16 +9,33 @@
|
|
|
9
9
|
"url": "git+https://github.com/RichmondAlake/memorizz.git",
|
|
10
10
|
"directory": "packaging/npm"
|
|
11
11
|
},
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"memorizz",
|
|
14
|
+
"ai",
|
|
15
|
+
"agent",
|
|
16
|
+
"cli",
|
|
17
|
+
"memory",
|
|
18
|
+
"llm",
|
|
19
|
+
"metaharness",
|
|
20
|
+
"ollama"
|
|
21
|
+
],
|
|
13
22
|
"bin": {
|
|
14
23
|
"memorizz": "bin/memorizz.js"
|
|
15
24
|
},
|
|
16
25
|
"scripts": {
|
|
17
26
|
"postinstall": "node scripts/postinstall.js"
|
|
18
27
|
},
|
|
19
|
-
"files": [
|
|
28
|
+
"files": [
|
|
29
|
+
"bin/",
|
|
30
|
+
"scripts/",
|
|
31
|
+
"README.md"
|
|
32
|
+
],
|
|
20
33
|
"engines": {
|
|
21
34
|
"node": ">=16"
|
|
22
35
|
},
|
|
23
|
-
"os": [
|
|
36
|
+
"os": [
|
|
37
|
+
"darwin",
|
|
38
|
+
"linux",
|
|
39
|
+
"win32"
|
|
40
|
+
]
|
|
24
41
|
}
|