@cerefox/memory 0.9.7 → 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.
- package/dist/bin/cerefox.js +17 -11
- package/dist/frontend/assets/index-D5nl8fwi.js +125 -0
- package/dist/frontend/assets/index-D5nl8fwi.js.map +1 -0
- package/dist/frontend/assets/{index-CTOQrOUn.css → index-gXiCjcrG.css} +1 -1
- package/dist/frontend/index.html +2 -2
- package/docs/guides/cli.md +2 -1
- package/package.json +1 -1
- package/dist/frontend/assets/index-D2tSVOss.js +0 -125
- package/dist/frontend/assets/index-D2tSVOss.js.map +0 -1
package/dist/frontend/index.html
CHANGED
|
@@ -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-
|
|
19
|
-
<link rel="stylesheet" crossorigin href="/app/assets/index-
|
|
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>
|
package/docs/guides/cli.md
CHANGED
|
@@ -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 |
|
|
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.
|
|
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",
|