@nuzo/memory-core 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.
Files changed (2) hide show
  1. package/README.md +30 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,36 @@
1
1
  # @nuzo/memory-core
2
2
 
3
- Core memory lifecycle, policy, SQLite storage, FTS recall, audit events, and
4
- portable import/export behavior for Nuzo.
3
+ The host-neutral memory engine for Nuzo.
5
4
 
6
- This package is the host-neutral business layer. Most users should install
7
- Nuzo through a supported host plugin or use the Nuzo CLI instead of consuming
8
- the core package directly.
5
+ This package contains memory lifecycle behavior, policy checks, SQLite storage,
6
+ FTS recall, audit events, and portable import/export contracts. It is consumed
7
+ by `@nuzo/memory-cli` and `@nuzo/mcp-server`.
8
+
9
+ Most users should install the CLI or a host plugin instead of depending on the
10
+ core package directly.
11
+
12
+ ## Use When
13
+
14
+ Use `@nuzo/memory-core` when you are:
15
+
16
+ - building a library-level integration with Nuzo;
17
+ - contributing to Nuzo itself;
18
+ - writing a host wrapper that cannot use the MCP server directly.
19
+
20
+ Use `@nuzo/memory-cli` for local command-line workflows.
21
+ Use `@nuzo/mcp-server` for Codex, Claude Code, and other MCP-compatible hosts.
22
+
23
+ ## Product Boundary
24
+
25
+ Nuzo is intentionally local-first. SQLite is part of the product boundary, not
26
+ a placeholder for a required cloud database.
27
+
28
+ By default, Nuzo should not:
29
+
30
+ - send memories to a remote service;
31
+ - call embedding APIs;
32
+ - enable telemetry;
33
+ - hide inferred memory writes from the user.
9
34
 
10
35
  Documentation: https://nuzo.com.br/
11
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuzo/memory-core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Core memory lifecycle, ports, and domain contracts for Nuzo.",
5
5
  "keywords": [
6
6
  "ai-agents",