> ## Documentation Index
> Fetch the complete documentation index at: https://docs.claboard.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Session Replay

> Timeline-based replay of Claude's actions during task execution

Session Replay records every action Claude takes during a task and lets you play it back on a timeline. Useful for understanding what happened, debugging issues, or reviewing completed work.

## Accessing Session Replay

1. Click on any task to open the **Task Detail** modal
2. Click the **Session Replay** button in the top-right corner
3. The replay panel opens at the bottom of the modal

## Event Types

Each event is color-coded on the timeline:

| Event           | Color | Description                                          |
| --------------- | ----- | ---------------------------------------------------- |
| **Tool Call**   | Blue  | Claude invoked a tool (Read, Edit, Bash, Grep, etc.) |
| **Tool Result** | Green | Result returned from a tool execution, with duration |
| **Usage Final** | Amber | Final token/cost summary when task completes         |
| **System**      | Gray  | System messages (initialization, status changes)     |
| **Rate Limit**  | Red   | Rate limit events from the API                       |

## Timeline Controls

* **Play/Pause** — Automatically step through events at 300ms intervals
* **Click timeline bar** — Jump to any point in the session
* **Click event markers** — Select specific events on the timeline
* **Event list** — Scrollable list on the left, click to select and view details

## Event Details

Select any event to see its full data:

* **Tool calls**: Tool name, input parameters (file path, command, pattern)
* **Tool results**: Output preview, error status, execution duration in ms
* **Usage**: Input/output tokens, total cost, model used, number of turns

<Info>Events are recorded in real-time during task execution and stored in the `task_events` database table. The timeline shows elapsed time from the first event.</Info>
