-
Notifications
You must be signed in to change notification settings - Fork 0
SessionReplay
Session Replay lets you export any ClawDE session to a portable file, share it with teammates, and replay it at any speed in the desktop app.
A session export captures the full conversation — messages, tool calls, and code changes — into a single compressed file. Anyone with a ClawDE desktop app can import that file and watch the session play back.
Useful for:
- Reviewing how a complex feature was built
- Onboarding new teammates to a codebase
- Debugging a session that went wrong
- Sharing AI-assisted work across teams
From the desktop app: open a session and tap the export button (download icon) in the toolbar. The file is saved to your Downloads folder as clawd-session-<id>.clawd.
From the CLI:
clawd session export <session-id>
clawd session export <session-id> --out my-session.clawdFrom the CLI:
clawd session import my-session.clawdThis creates a replay session — a read-only copy of the original session. Open the desktop app to watch it replay.
The Session Replay screen in the desktop app shows:
- Play / Pause button
- Speed selector: 0.5x, 1x, 2x, 5x
- Progress indicator (current message / total messages)
- Re-export button to save the bundle to a new file
Session bundles are gzip-compressed JSON, base64-encoded. The .clawd extension is used by convention. The file is human-readable after decompressing:
{
"version": 1,
"originalSessionId": "...",
"exportedAt": "2026-02-26T12:00:00Z",
"session": { ... },
"messages": [ ... ]
}| Method | Description |
|---|---|
session.export |
Export a session to a bundle |
session.import |
Import a bundle and create a replay session |
session.replay |
Start replaying a session at a given speed |
clawd session export <session-id> [--out <file>]
clawd session import <file>
SessionBundle, ImportResult, and ReplaySession are available in clawd_proto.
ClawDE · GitHub · MIT License
ClawDE
Getting started
Reference
- Architecture
- Daemon-Reference
- Folder-Structure
- Providers
- Multi-Account
- Security
- Features
- Features/Daemon
- Features/Session-Manager
- Features/Mode-System
- Features/Repo-Intelligence
- Features/Projects
- Features/Remote-Access
- Features/Desktop-App
- Features/Provider-Knowledge
- Features/Coding-Standards
- Roadmap
Branding
Contributing