memorizz 0.10.0 → 0.11.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 (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -34,4 +34,19 @@ uv tool uninstall memorizz # the npm shim does not remove the uv-managed tool
34
34
 
35
35
  ## Env
36
36
 
37
+ The npm launcher forwards all commands to the same Python CLI, including:
38
+
39
+ ```bash
40
+ memorizz config path
41
+ memorizz config set NOTION_TOKEN # hidden input; never append the token
42
+ memorizz notion connect # guided Notion memory + vector-store setup
43
+ memorizz memory configure # choose another memory provider
44
+ ```
45
+
46
+ Settings normally save to `~/.memorizz/.env` (`MEMORIZZ_HOME` and
47
+ `MEMORIZZ_ENV_FILE` override this). Use `--project` to explicitly edit the
48
+ current directory's `.env`. Exports and project settings take precedence over
49
+ shared defaults. Restart existing CLI/MCP processes after saving; existing
50
+ memory is not migrated. These commands do not require an active LLM session.
51
+
37
52
  - `MEMORIZZ_SKIP_POSTINSTALL=1` — skip the bootstrap during `npm install`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memorizz",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
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",