@cerefox/memory 1.0.1 → 1.0.2
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/dist/bin/cerefox.js +42 -42
- package/dist/frontend/assets/{index-D9FTvsV4.js → index-CLD16BC4.js} +25 -25
- package/dist/frontend/assets/index-CLD16BC4.js.map +1 -0
- package/dist/frontend/index.html +1 -1
- package/dist/server-assets/_shared/ef-meta/index.ts +1 -1
- package/docs/guides/cli.md +2 -2
- package/docs/guides/migration-1.0.md +1 -1
- package/docs/guides/operational-cost.md +1 -0
- package/package.json +4 -4
- package/dist/frontend/assets/index-D9FTvsV4.js.map +0 -1
package/dist/frontend/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap"
|
|
16
16
|
/>
|
|
17
17
|
<title>Cerefox</title>
|
|
18
|
-
<script type="module" crossorigin src="/app/assets/index-
|
|
18
|
+
<script type="module" crossorigin src="/app/assets/index-CLD16BC4.js"></script>
|
|
19
19
|
<link rel="stylesheet" crossorigin href="/app/assets/index-Asx5wD7g.css">
|
|
20
20
|
</head>
|
|
21
21
|
<body>
|
package/docs/guides/cli.md
CHANGED
|
@@ -20,7 +20,7 @@ This section is for the **cloud / Supabase** backend. Every command reads config
|
|
|
20
20
|
|
|
21
21
|
The CLI is the TypeScript `@cerefox/memory` package. Invoke any command as plain `cerefox <subcommand>` (installed via the installer or `npm install -g @cerefox/memory` — see [`quickstart.md`](quickstart.md#1-install)).
|
|
22
22
|
|
|
23
|
-
> **v0.9 verb rename**: commands now follow a `resource verb` shape (e.g. `cerefox document get`, `cerefox project list`). The old flat verbs (`get-doc`, `list-docs`, `ingest`, `list-versions`, `config-get`, `deploy-server`, `docs`, …) survive as hidden husks — they
|
|
23
|
+
> **v0.9 verb rename**: commands now follow a `resource verb` shape (e.g. `cerefox document get`, `cerefox project list`). The old flat verbs (`get-doc`, `list-docs`, `ingest`, `list-versions`, `config-get`, `deploy-server`, `docs`, …) survive as hidden husks — they don't run; they print a pointer to the new form and exit non-zero. These pointers are kept indefinitely. Use the new forms below.
|
|
24
24
|
|
|
25
25
|
## Commands
|
|
26
26
|
|
|
@@ -738,7 +738,7 @@ surface).
|
|
|
738
738
|
|
|
739
739
|
## Known issues
|
|
740
740
|
|
|
741
|
-
None outstanding as of
|
|
741
|
+
None outstanding as of v1.0.1. When new bugs surface, they are tracked in the GitHub issues list; check there before relying on a behaviour the docs imply.
|
|
742
742
|
|
|
743
743
|
## Common recipes
|
|
744
744
|
|
|
@@ -87,7 +87,7 @@ unaffected — they are not Python and remain the source of truth for the schema
|
|
|
87
87
|
```bash
|
|
88
88
|
cerefox self-update # or: npm install -g @cerefox/memory@latest
|
|
89
89
|
cerefox token generate # change #1: mint + set the access token
|
|
90
|
-
cerefox server deploy # changes #1 + #2: token-gated EFs + schema 0.8.1
|
|
90
|
+
cerefox server deploy # changes #1 + #2: token-gated EFs + schema 0.8.1 (0.8.2 as of v1.0.1)
|
|
91
91
|
cerefox doctor # verify (edge-functions green; content-format ℹ)
|
|
92
92
|
# then: update GPT Actions / remote MCP clients to the token; revoke the anon key
|
|
93
93
|
```
|
|
@@ -126,6 +126,7 @@ Your machine
|
|
|
126
126
|
└── Docker container (free)
|
|
127
127
|
└── Postgres + pgvector + cerefox web/MCP
|
|
128
128
|
Embeddings via OpenAI API (pay-per-use)
|
|
129
|
+
— or the in-container local embedder ($0, no API key)
|
|
129
130
|
```
|
|
130
131
|
|
|
131
132
|
**Typical cost for personal use**: just the **OpenAI embedding spend** (the same pay-per-use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cerefox/memory",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Cerefox — 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",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"CHANGELOG.md"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hono/node-server": "^2.0.
|
|
43
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
42
|
+
"@hono/node-server": "^2.0.12",
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
44
44
|
"@supabase/supabase-js": "^2.45.0",
|
|
45
45
|
"cli-progress": "^3.12.0",
|
|
46
46
|
"commander": "^12.1.0",
|
|
47
|
-
"hono": "^4.12.
|
|
47
|
+
"hono": "^4.12.34",
|
|
48
48
|
"mammoth": "^1.9.0",
|
|
49
49
|
"ora": "^9.4.0",
|
|
50
50
|
"picocolors": "^1.0.0",
|