@cerefox/memory 0.9.6 → 0.9.8

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-LidcEDZ3.js"></script>
19
- <link rel="stylesheet" crossorigin href="/app/assets/index-CTOQrOUn.css">
18
+ <script type="module" crossorigin src="/app/assets/index-D5nl8fwi.js"></script>
19
+ <link rel="stylesheet" crossorigin href="/app/assets/index-gXiCjcrG.css">
20
20
  </head>
21
21
  <body>
22
22
  <div id="root"></div>
@@ -1692,7 +1692,9 @@ STABLE
1692
1692
  SECURITY DEFINER
1693
1693
  SET search_path = public, pg_catalog
1694
1694
  AS $$
1695
- SELECT '0.3.1'::TEXT;
1695
+ -- Keep in lockstep with the `@version:` marker in schema.sql (cut_release.ts
1696
+ -- enforces it). Bump whenever schema.sql OR rpcs.sql changes.
1697
+ SELECT '0.4.0'::TEXT;
1696
1698
  $$;
1697
1699
 
1698
1700
 
@@ -5,12 +5,14 @@
5
5
  -- Requires extensions: vector (pgvector), uuid-ossp
6
6
  -- These are enabled at the top of db_deploy.py before this file is applied.
7
7
  --
8
- -- @version: 0.3.1
8
+ -- @version: 0.4.0
9
9
  -- The `@version` marker above is read by the schema-version-mismatch banner
10
- -- (see /api/v1/schema-version). Bump it whenever schema.sql or rpcs.sql
11
- -- changes in a way that requires `python scripts/db_deploy.py` to be re-run.
12
- -- The deployed value is exposed via the `cerefox_schema_version()` RPC at
13
- -- the bottom of rpcs.sql.
10
+ -- (see /api/v1/schema-version). Bump it whenever schema.sql OR rpcs.sql
11
+ -- changes in a way that requires `cerefox server deploy` to be re-run —
12
+ -- schema and RPCs deploy together, so this version covers both. You MUST
13
+ -- bump it in lockstep with the `cerefox_schema_version()` literal at the
14
+ -- bottom of rpcs.sql (the deployed value); `cut_release.ts` fails the cut if
15
+ -- `src/cerefox/db/` changed without this bump, or if the two disagree.
14
16
 
15
17
  -- ── Projects ──────────────────────────────────────────────────────────────────
16
18
  -- Lightweight user-defined categories. No predefined taxonomy.
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerefox/memory",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
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",