@cerefox/memory 0.9.7 → 0.9.9

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.
@@ -15,8 +15,8 @@
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-D2tSVOss.js"></script>
19
- <link rel="stylesheet" crossorigin href="/app/assets/index-CTOQrOUn.css">
18
+ <script type="module" crossorigin src="/app/assets/index-h6ttxlbC.js"></script>
19
+ <link rel="stylesheet" crossorigin href="/app/assets/index-Asx5wD7g.css">
20
20
  </head>
21
21
  <body>
22
22
  <div id="root"></div>
@@ -198,9 +198,10 @@ cerefox document list [OPTIONS]
198
198
  |---|---|---|---|
199
199
  | `--project <name>` (`-p`) | str | _none_ | Filter by project name. |
200
200
  | `--limit <n>` (`-l`) | int | `100` | Max rows. |
201
+ | `--deleted` | flag | off | List soft-deleted (trashed) documents instead of active ones, newest-deleted first. Pair the ids with `cerefox document restore` / `cerefox document delete`. |
201
202
  | `--json` | flag | off | Machine-readable JSON output. |
202
203
 
203
- **Output**: tabular `id | chunk_count | total_chars | title` listing. CLI-only — there is no MCP equivalent.
204
+ **Output**: tabular `id | title | source | status | updated_at` listing (or `deleted_at` with `--deleted`). CLI-only — there is no MCP equivalent.
204
205
 
205
206
  ---
206
207
 
@@ -1,7 +1,9 @@
1
- # Quickstart -- Zero to First Document in 5 Minutes
1
+ # Quickstart -- Zero to First Document
2
2
 
3
3
  Get Cerefox running on your machine via the npm install path. **No source
4
- clone, no Python required.**
4
+ clone, no Python required.** Once you have a Supabase project (the one
5
+ prerequisite — provisioning a free one takes a few minutes), the Cerefox
6
+ install and setup below is about 5 minutes.
5
7
 
6
8
  > **Upgrading from an earlier version?** See [`upgrading.md`](upgrading.md)
7
9
  > for migration steps instead.
@@ -16,6 +18,21 @@ clone, no Python required.**
16
18
 
17
19
  ---
18
20
 
21
+ ## 0. Create a Supabase project
22
+
23
+ Cerefox stores everything in your own Supabase (Postgres + pgvector), so create
24
+ a free project first — provisioning takes a few minutes:
25
+
26
+ 1. Sign up / log in at [supabase.com](https://supabase.com) and create a new project.
27
+ 2. Keep its **Project URL**, **API keys**, and **database password** handy —
28
+ `cerefox init` (Step 2) prompts for these.
29
+
30
+ A fresh, empty project is all you need; `cerefox init` / `cerefox server deploy`
31
+ deploy the schema, RPCs, and Edge Functions for you. Full walkthrough (keys,
32
+ where to find them, what each is for): [`setup-supabase.md`](setup-supabase.md).
33
+
34
+ ---
35
+
19
36
  ## 1. Install
20
37
 
21
38
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerefox/memory",
3
- "version": "0.9.7",
3
+ "version": "0.9.9",
4
4
  "description": "Cerefox — user-owned shared memory for AI agents. The local TypeScript runtime: stdio MCP server in v0.4; CLI binary added in v0.5; in-process web server in v0.6; ingestion pipeline in v0.7.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/fstamatelopoulos/cerefox",