@cerefox/memory 0.8.0 → 0.8.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 +410 -147
- package/docs/guides/connect-agents.md +20 -0
- package/docs/guides/quickstart.md +6 -2
- package/package.json +1 -1
|
@@ -133,6 +133,26 @@ change.
|
|
|
133
133
|
> make authenticated POST calls to the Edge Functions. The built-in local server is
|
|
134
134
|
> the correct solution.
|
|
135
135
|
|
|
136
|
+
### Fastest setup: `cerefox configure-agent`
|
|
137
|
+
|
|
138
|
+
You don't have to hand-edit the per-client config files below. `cerefox configure-agent
|
|
139
|
+
--tool <client>` writes the correct local-stdio entry (`npx -y --package=@cerefox/memory
|
|
140
|
+
cerefox mcp`) into the right config file for you. Supported clients:
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
cerefox configure-agent --tool claude-code # ~/.claude.json (via `claude mcp add`)
|
|
144
|
+
cerefox configure-agent --tool claude-desktop # Claude Desktop config
|
|
145
|
+
cerefox configure-agent --tool cursor # ~/.cursor/mcp.json
|
|
146
|
+
cerefox configure-agent --tool codex # ~/.codex/config.toml
|
|
147
|
+
cerefox configure-agent --tool gemini # ~/.gemini/settings.json
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Useful flags: `--dry-run` (print the planned write without touching any file), `--json`
|
|
151
|
+
(machine-readable result), `--config-path <path>` (override the target file), `--no-backup`
|
|
152
|
+
(skip the `.pre-cerefox.bak` backup). The command is idempotent and backs up any existing
|
|
153
|
+
config before writing. The per-client sections below document the same entries for anyone
|
|
154
|
+
who prefers to edit by hand or needs the remote (`Path A-Remote`) HTTP transport instead.
|
|
155
|
+
|
|
136
156
|
### Path A MCP tools
|
|
137
157
|
|
|
138
158
|
Once configured, every Path A client has these tools:
|
|
@@ -49,14 +49,18 @@ Cerefox usage guidance.
|
|
|
49
49
|
# Run the commands that apply to your setup:
|
|
50
50
|
cerefox configure-agent --tool claude-code # Claude Code (~/.claude.json)
|
|
51
51
|
cerefox configure-agent --tool claude-desktop # Claude Desktop config
|
|
52
|
+
cerefox configure-agent --tool cursor # Cursor (~/.cursor/mcp.json)
|
|
53
|
+
cerefox configure-agent --tool codex # OpenAI Codex CLI (~/.codex/config.toml)
|
|
54
|
+
cerefox configure-agent --tool gemini # Gemini CLI (~/.gemini/settings.json)
|
|
52
55
|
```
|
|
53
56
|
|
|
54
57
|
Then restart your client:
|
|
55
58
|
- **Claude Code**: start a fresh session — running sessions cache the MCP tool list.
|
|
56
59
|
- **Claude Desktop**: Cmd+Q to fully quit, then relaunch.
|
|
60
|
+
- **Cursor / Codex CLI / Gemini CLI**: reload or restart the client/session.
|
|
57
61
|
|
|
58
|
-
|
|
59
|
-
|
|
62
|
+
All five writers configure the local stdio server. For the remote (Edge Function)
|
|
63
|
+
HTTP transport, or to edit configs by hand, see [`connect-agents.md`](connect-agents.md).
|
|
60
64
|
|
|
61
65
|
## 4. Try it
|
|
62
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cerefox/memory",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
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",
|