Agent Logstream
MemPalace is a memory system first — but agents sharing one palace also need to coordinate: delegate work to each other, wait for replies, and hand off patches without a human relaying messages between machines. The logstream is that coordination layer (RFC 003).
It is a small append-only event log served by the same MemPalace hub that serves memory, stored next to the palace as logstream.sqlite3. It follows the same promises as everything else in MemPalace:
- Local-first — lives inside your palace directory, reachable over loopback, LAN, or tailnet exactly like the rest of the hub. No cloud queue, no Redis, no SaaS.
- Exact payloads — event bodies and artifacts are stored verbatim, byte-for-byte, with a SHA-256 for verification.
- Append-only — events are immutable. Corrections and acknowledgements are new events that reference prior ones.
- Durable before realtime — everything is recoverable after a reconnect; nothing exists only in a socket.
Events
An event is a structured coordination message with routing metadata and an optional verbatim body:
{
"id": "evt_20260702T032443_02ce0c31acdb",
"type": "patch.ready",
"stream": "project/mempalace",
"room": "patches",
"from_agent": "windows-codex",
"to_agent": "mac-codex",
"correlation_id": "task_123",
"branch": "feat/my-feature",
"base_commit": "2668053",
"status": "ready",
"artifact_ids": ["art_20260702T032443_e5cb86f7aba8"],
"body": "Search ranking patch is ready. Tests passed on Windows.",
"created_at": "2026-07-02T03:24:43Z"
}streamis the broad channel —project/<name>for per-project work, or a shared channel likeshared_agent_brain.roomis the sub-channel:delegation,patches,reviews,status.correlation_idties a request to its replies and acks. Generate one per task and carry it through the whole exchange.to_agenttargets one agent, or*to broadcast. Filters onto_agentalso match broadcasts.statusis one ofopen,claimed,ready,applied,blocked,failed,superseded.seq(returned on every event) is the append-order cursor. Pass the last seen event's id assince_event_idto resume exactly where you left off.
Artifacts
An artifact is exact content attached to an event: a unified diff, a generated file, a test log, a JSON report. Artifacts are stored verbatim with sha256 and size_bytes, so the receiving agent can verify integrity before applying anything. v1 artifacts are UTF-8 text, up to 4 MiB.
The delegation loop
The canonical two-agent exchange:
Requester (agent A):
mempalace_event_append—type=task.request,to_agent=agent-b,correlation_id=task_123, body describing the work.mempalace_event_wait—correlation_id=task_123,type=patch.ready,timeout_ms=300000.mempalace_artifact_get— fetch the patch, verify thesha256.- Apply the patch locally, run tests. Patch application is always an explicit local decision — the logstream never applies anything for you.
mempalace_event_ack—status=applied(orfailedwith notes).
Worker (agent B):
mempalace_event_wait—to_agent=agent-b,type=task.request.- Do the work.
mempalace_patch_submit— stores the artifact and appends thepatch.readyevent in one call.
If an agent can't produce a patch, it still replies: task.reply or a blocked/failed status with verbatim notes. Silence is the only failure mode the logstream can't help with.
mempalace_event_wait is a long-poll: it blocks up to 5 minutes and returns { "timed_out": true, "events": [] } on timeout rather than erroring. Loop on it for longer waits, passing since_event_id to avoid reprocessing.
Tools and CLI
Seven MCP tools serve the logstream: mempalace_event_append, mempalace_event_list, mempalace_event_wait, mempalace_event_ack, mempalace_artifact_put, mempalace_artifact_get, and mempalace_patch_submit — see the MCP tools reference for schemas.
The same operations are available from the shell:
mempalace logstream append --type task.request --stream project/myapp \
--room delegation --from-agent mac --to-agent windows \
--correlation-id task_123 --body "Please fix the flaky test."
mempalace logstream wait --correlation-id task_123 --type patch.ready \
--timeout-ms 300000 --json
mempalace artifact get art_... | git apply --3way--json makes every command scriptable; wait exits 2 on timeout so shell loops can retry.
For push-based consumers (dashboards, live viewers), the hub also serves the stream over Server-Sent Events at GET /logstream/stream — same filters, same JSON envelope, since_event_id resume — see Shared Brain.
Monitoring
Reading the stream efficiently is its own skill, and getting it wrong is the usual reason a coordinated task stalls: the event was written correctly, but nobody was listening.
Cursors
Events are returned in append order (ORDER BY rowid), not timestamp order. That distinction matters as soon as a second replica exists — a peer's event created at 09:10:48Z is appended locally whenever it syncs, which can be after a local event created at 09:13:21Z.
So there are two different parameters, and only one of them is a cursor:
since_event_id— strictly after that event in append order, whatever the timestamps say. This is the resume cursor. A watcher's entire state is the id of the last event it processed.since_created_at— a time window (>=, inclusive; dedup byid). Good for "what happened today", wrong for resumption: a late-arriving peer event is already older than your high-water mark, so you skip it silently and permanently.
Choosing a mode
| Mode | Best for | Mechanism |
|---|---|---|
| Inbox sweep | Session start, pre-task checks | mempalace_event_list + to_agent + since_event_id, preview=true |
| Background watcher | Being woken while you work | mempalace logstream watch, run as a background process |
| Long-poll | Waiting on one correlation, in-turn | mempalace_event_wait — 60s default, 300s max, returns timed_out rather than erroring |
| Server-Sent Events | Daemons, dashboards, live viewers | GET /logstream/stream, same filters and since_event_id resume |
| Declared-idle | Turn-based agents with no background loop | Publish your cursor and say you need a ping |
logstream watch exists because wait is a primitive, not a watcher: it caps at five minutes and reports a timeout, so every caller ends up writing the same re-arm loop and each one has to remember to carry the cursor forward. watch owns both, adds the filters a watcher needs, and exits on a match so a harness can treat process exit as "you have mail":
mempalace logstream watch \
--agent mac-claude \
--type task.request --type patch.ready \
--state-file ~/.mempalace/watch/mac-claude.json --json--agent is shorthand for --to-agent <id> --exclude-from-agent <id>. That exclusion matters more than it looks: to_agent=<you> also matches * broadcasts, and your own broadcasts are broadcasts, so a watcher without it wakes itself on every status it posts. Repeating a filter means "or", which is how you narrow to the events that genuinely require you and stop being woken by routine traffic. Exit is 0 on a match and 2 on --idle-exit-ms, matching wait's timeout convention; --follow keeps the process alive past the first match for daemons. A cursorless first run starts at the tip, like the SSE live-tail, and says so on stderr — replaying a long fleet log would wake a new watcher holding weeks of history it cannot tell is stale. --from-start opts into the replay.
mempalace_event_wait backs off internally (0.25s → 1s), so a tight retry loop around it buys nothing. Filter server-side — to_agent, type, status and correlation_id are all indexed, and to_agent=<you> matches * broadcasts without a second query. Use preview=true when scanning a busy stream: bodies come back truncated with body_truncated and body_length set, so you spend tokens only on the event you actually want.
Make the watch visible
A watcher nobody can see is nearly as bad as no watcher. The convention is to post a status event to to_agent=* when you begin monitoring a correlation, naming four things: the filter you are watching, the cursor you have reached, the work that must not be duplicated, and — implicitly — the fact that someone is home. Agents deciding whether to delegate can then check instead of guessing.
The inverse is equally important. If your harness is turn-based and stops existing between prompts, declare that rather than staying quiet: publish your last-seen event id and say a ping is needed. Never advertise a watch you do not have — a requester who believes an agent is listening stops looking for a human to nudge.
For the full protocol, see the coordination protocol.
Coordination vs. memory
The logstream complements the palace; it does not replace it:
| Palace (drawers) | Logstream (events) | |
|---|---|---|
| Purpose | Long-term recall | Active coordination |
| Access | Semantic search | Structured filters + long-poll |
| Lifetime | Forever | Forever (append-only) |
| Content | Anything worth remembering | Work packets, replies, patches |
Durable outcomes still belong in the palace: when a delegated task concludes, file the decision and outcome as a drawer so it is searchable later. The event trail records how the work moved between agents; the drawer records what was learned.
The logstream is deliberately independent of the vector index — it opens no Chroma handles, so coordination keeps working even while the palace index is being mined, repaired, or rebuilt.
