-
Notifications
You must be signed in to change notification settings - Fork 1
Replay Export
Every slipstream session is already captured as an append-only event log under .claude/slipstream/dashboard/<sessionId>.jsonl, alongside the observation store. The slipstream export command bundles a session into a portable archive you can replay, share or attach to a bug report.
node dist/cli/index.js export <sessionId>
# or, after the plugin is installed
slipstream export <sessionId>
Options:
-
--out <path>write to a specific file. Default:./slipstream-export-<sessionId>.zip. -
--include-memoryinclude the observations and any lessons cited by this session. -
--redactapply the configured redaction rules from.claude/slipstream/redact.jsonbefore writing (on by default for shared exports).
The session id is whatever the dashboard picker shows for the session, also visible in the statusline log.
The archive is a zip containing:
manifest.json
events.jsonl the raw event stream (post-tool, hook, savings, budget)
map.json the project map as it was at session end
budget.json targetTokens, warnPct, compactPct, actualTokens
observations/*.md only the observations referenced by this session
lessons/*.md only the lessons cited in those observations
manifest.json carries the metadata:
{
"sessionId": "cursor-abc123",
"createdAt": "2026-06-04T15:22:11.004Z",
"client": "cursor",
"slipstreamVersion": "0.6.0",
"events": 1284,
"tokensSaved": 184302,
"redacted": true,
"includeMemory": true
}- Debugging. Reproduce a bad turn against a fixed map and event stream, without needing the user's whole repo.
-
Sharing a flow. Send a teammate the exact sequence of
sp_*calls that led to a fix, with the dashboard timeline reconstructable from the JSONL. - Filing a slipstream issue. Attach a redacted export and the maintainer can replay it locally.
- Auditing. Keep a per-release snapshot of what the agent did, with the same redaction policy you apply to logs.
The replay viewer at slipstream replay <archive> loads the archive into the local dashboard and steps through it; the live SSE stream is replaced by the recorded events at their original timestamps.
SarmaLinux . sarmalinux.com . Repository
Start here
Install paths
v0.6.0 features
- Map watcher
- Token forecast
- Replay export
- Configurable redaction
- Drift detection
- Per-skill opt %
- CI mode
- Lessons
Headline features
- MCP tools
- Observation memory & search
- Cross-IDE support
- Lossless compaction
- Memory recall
- Live agent dashboard
- Statusline
- Output style
- Subagents
Token efficiency
Skills
Internals
- Architecture
- Memory system
- Hooks
- Mind map and status
- Configuration and tuning
- Data formats
- Performance and benchmarks
- Design decisions
- Security model
- Testing strategy
Reference
SarmaLinux . sarmalinux.com