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

# Session Dashboard and Statistics

> The Claude Scope dashboard shows session stats, recent recordings, and quick links to start recording, browse sessions, or change settings.

The Dashboard is the first thing you see when you open your Claude Scope workspace. It gives you a snapshot of all your recording activity and provides shortcuts to the most common actions — starting a new recording, browsing your sessions, or adjusting settings.

## Stats cards

Four cards at the top of the Dashboard summarize your workspace at a glance.

| Card               | What it shows                                                                            |
| ------------------ | ---------------------------------------------------------------------------------------- |
| **Total Sessions** | The total number of sessions ever created in your workspace, regardless of status.       |
| **Completed**      | Sessions that have finished processing and have a ready-to-use prompt.                   |
| **Avg Processing** | The mean time (in seconds) Claude Scope took to process a session across your workspace. |
| **Total Duration** | The combined recording length of all your sessions.                                      |

<Note>
  Stats are fetched once when the Dashboard loads. Refresh the page to see updated counts if a session is currently being processed.
</Note>

## Quick action cards

Below the stats, three cards let you jump to common tasks without navigating the sidebar.

<CardGroup cols={3}>
  <Card title="Record" icon="circle-dot" href="/recording/new-recording">
    Opens the new recording flow. Use this to start capturing a browser tab immediately.
  </Card>

  <Card title="Sessions" icon="folder-open" href="/sessions/managing-sessions">
    Takes you to the full sessions list where you can search, filter, and open any past recording.
  </Card>

  <Card title="Settings" icon="gear" href="/configuration/output-settings">
    Opens workspace settings where you can configure your default agent target, API key, and output options.
  </Card>
</CardGroup>

## Recent sessions list

Directly below the quick actions, the Dashboard shows your five most recent sessions. Each row displays:

* **Title** — the name you gave the recording (or the auto-generated title)
* **Duration** — how long the recording ran
* **Frame count** — the number of extracted UI state frames
* **Timestamp** — when the session was created
* **Status badge** — the current processing state of the session

Click any row to open the session detail page for that recording.

## Session statuses

Every session carries one of three statuses, shown as a badge on the row.

| Status       | Meaning                                                                                         |
| ------------ | ----------------------------------------------------------------------------------------------- |
| `processing` | Analysis is still running. The vision and Playwright lanes are working in the background.       |
| `complete`   | Processing finished and your prompt is ready to copy.                                           |
| `error`      | Something went wrong during processing. See [Troubleshooting](/troubleshooting) for next steps. |

<Note>
  The Dashboard does not poll for status changes automatically. If a session shows `processing`, refresh the page or open the session detail page — the detail view polls the `/api/sessions/:id/status` endpoint to reflect real-time progress.
</Note>
