@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.
- package/README.md +30 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
# @nuzo/memory-core
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
portable import/export behavior for Nuzo.
|
|
3
|
+
The host-neutral memory engine for Nuzo.
|
|
5
4
|
|
|
6
|
-
This package
|
|
7
|
-
|
|
8
|
-
|
|
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
|
|