@cerefox/memory 1.15.0-beta.1 → 1.15.0-beta.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.
|
@@ -36,7 +36,7 @@ export const EF_VERSION = "1.14.5";
|
|
|
36
36
|
* is imported by the Deno Edge Functions, which cannot reach into the npm
|
|
37
37
|
* package.
|
|
38
38
|
*/
|
|
39
|
-
export const CEREFOX_VERSION = "1.15.0-beta.
|
|
39
|
+
export const CEREFOX_VERSION = "1.15.0-beta.3";
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
42
|
* The most recent version whose EF-side SOURCE actually changed (#127).
|
|
@@ -85,7 +85,7 @@ in the container.
|
|
|
85
85
|
- Some content ingested (`cerefox document ingest my-notes.md`)
|
|
86
86
|
|
|
87
87
|
**For Path A-Local only:**
|
|
88
|
-
- [Node.js ≥
|
|
88
|
+
- [Node.js ≥24](https://nodejs.org) (for `npx --package=@cerefox/memory cerefox mcp`, or a
|
|
89
89
|
global `npm install -g @cerefox/memory`)
|
|
90
90
|
+ `.env` file in the working directory the client launches the server from (see "env block"
|
|
91
91
|
in the per-client configs below if your client can't see the file)
|
|
@@ -1259,7 +1259,7 @@ When Path A is still better:
|
|
|
1259
1259
|
|
|
1260
1260
|
Same as **Path A-Local**:
|
|
1261
1261
|
|
|
1262
|
-
- [Node.js ≥
|
|
1262
|
+
- [Node.js ≥24](https://nodejs.org) + the CLI installed: `npm install -g @cerefox/memory`
|
|
1263
1263
|
- `.env` configured (resolved from the working directory) with `CEREFOX_SUPABASE_URL`, `CEREFOX_SUPABASE_KEY` (service-role / new secret key), and your embedding API key (`OPENAI_API_KEY`)
|
|
1264
1264
|
|
|
1265
1265
|
Quick sanity check before pointing an agent at it:
|
|
@@ -17,7 +17,7 @@ the Cerefox install and setup below takes ~15 minutes.
|
|
|
17
17
|
|
|
18
18
|
## Prerequisites
|
|
19
19
|
|
|
20
|
-
- **Node.js
|
|
20
|
+
- **Node.js 24+** (`node --version`) or **Bun 1.0+** (`bun --version`)
|
|
21
21
|
- A **Supabase account** -- [supabase.com](https://supabase.com) (free tier works). A fresh project is fine — `cerefox server deploy` (Step 2) deploys the schema for you.
|
|
22
22
|
- An **OpenAI API key** -- [platform.openai.com/api-keys](https://platform.openai.com/api-keys)
|
|
23
23
|
|
|
@@ -9,7 +9,7 @@ This guide walks you from a blank Supabase project to a fully deployed Cerefox s
|
|
|
9
9
|
## Prerequisites
|
|
10
10
|
|
|
11
11
|
- The Cerefox CLI installed (`cerefox --version`) — see [`quickstart.md`](quickstart.md#1-install). End users do **not** need a source clone or Python.
|
|
12
|
-
- **Node.js
|
|
12
|
+
- **Node.js 24+** or **Bun 1.0+** (the CLI runtime; also used for `npx supabase`).
|
|
13
13
|
- A Supabase account (free tier is enough): [supabase.com](https://supabase.com)
|
|
14
14
|
|
|
15
15
|
> Contributors with a repo clone use `bun scripts/db_deploy.ts` / `bun scripts/db_migrate.ts` for the low-level schema path. (The former `python scripts/db_*.py` equivalents were removed at v1.0.0.)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cerefox/memory",
|
|
3
|
-
"version": "1.15.0-beta.
|
|
3
|
+
"version": "1.15.0-beta.3",
|
|
4
4
|
"description": "Cerefox \u2014 user-owned shared memory for AI agents. CLI + stdio MCP server + web UI + ingestion for a knowledge base on your own Supabase project (or fully self-hosted with Cerefox Local).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/fstamatelopoulos/cerefox",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"postgres": "^3.4.9",
|
|
52
52
|
"prompts": "^2.4.2",
|
|
53
53
|
"smol-toml": "^1.6.1",
|
|
54
|
-
"zod": "^
|
|
54
|
+
"zod": "^4.6.5"
|
|
55
55
|
},
|
|
56
56
|
"optionalDependencies": {
|
|
57
57
|
"@huggingface/transformers": "^4.2.0",
|