Files
deepseek-harness/docs/adr/0003-event-sourced-sessions.md
T
Tianyi Cui 066f94c7e0 docs: unwrap hard-wrapped Markdown to one line per paragraph
Hard line breaks mid-paragraph make docs harder to edit and diff — a
one-word change reflows and re-diffs the whole paragraph. Reflow all
tracked non-vendor Markdown (plus vendor/AGENTS.md) so each prose
paragraph is a single line; soft-wrapping is the editor's job. Fenced
code, tables, and list structure are preserved (wrapped list items fold
to one line per bullet). Documents the convention in AGENTS.md.
2026-06-13 20:27:04 +08:00

1.7 KiB

ADR 0003: Event-sourced sessions with derived message history

Status: accepted (2026-06-11)

Context

The MVP requires strict event-based tracing with fully replayable sessions (严格的基于事件的trace、logging系统,session完全可回放). Two models were considered: a mutable message array with events fired as notifications (simpler, but state and log can diverge), or event-sourcing where the log IS the state.

Decision

A Session is an append-only log of typed SessionEvents — the single source of truth. The LLM message history is derived from the log (deriveMessages()); raw stream chunks are logged for token-level replay fidelity while the assembled assistant/message event is authoritative for derivation. Replay/fork = seed a new session with an existing log.

Appends are synchronous (the hot path never blocks on I/O); session/event is a sync notification; persistence plugins buffer write-behind and drain at the awaited session/flush checkpoint fired at every turn end.

Ordering contract: the loop appends to the session before emitting the corresponding Cordis event, and the agent/step-result waterfall runs before the assistant/message append so the log records what tool dispatch actually used (post-review fix; regression-tested).

Consequences

  • Replay, trace, and telemetry are structurally guaranteed, not bolted on.
  • Persistence stays a plugin concern; the in-memory store ships in dsh-session.
  • The event vocabulary is merge-extensible (plugins add e.g. compaction events); it carries a TODO(review) marker until the first persistence plugin and real adapter exercise it.
  • Derivation cost grows with log length — compaction (future plugin) is the intended mitigation, not log mutation.