Session Log
← Back to Plugin Center
Built-inSessionOfficial内置DeepSeek Harness
core/session
Append-only SessionEvent log with in-memory storage, making every run traceable.
core/session is the foundation of dsh's session system: it records everything the model sees — system prompts, chain-of-thought, tool calls and results, sub-agent dispatches, and every context injection — into an append-only session log.
It also provides in-memory storage so recovery, forking, retrieval, and replay all share the same event stream. What the model sees is what is recorded, and every reconstructable request can be rebuilt from this log.
Features
- Append-only design, naturally suited to audit and replay
- Unified SessionEvent types for the whole system to subscribe to
- In-memory storage out of the box, replaceable by other storage plugins
- Powers the Trajectory view to reconstruct runs by source