> ## 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.

# Browse, View, and Delete Your Sessions

> Search and filter your session list, inspect session details and extracted frames, rename sessions, and permanently delete recordings.

The Sessions page is your full library of every recording you have made in Claude Scope. From here you can search and filter sessions, open individual recordings to review their extracted frames and generated prompt, rename a session, or delete recordings you no longer need.

## Navigating to Sessions

Open **Sessions** in your workspace sidebar, or click the **Sessions** quick-action card on the Dashboard. The page loads the complete list of your recordings, newest first.

You can narrow the list using the search box (filters by title) and the **Filter** panel, which lets you filter by status (`complete`, `processing`, `error`) and by date range (last 7 days, last 30 days, or any date).

## Session list columns

Each row in the list shows the following information.

| Column          | Description                                                     |
| --------------- | --------------------------------------------------------------- |
| **Title**       | The name of the recording.                                      |
| **Status**      | Current processing state: `complete`, `processing`, or `error`. |
| **Duration**    | How long the recording ran.                                     |
| **Frame count** | Number of extracted UI state frames.                            |
| **Created**     | Date and time the session was created.                          |

## Viewing a session

<Steps>
  <Step title="Open the Sessions page">
    Click **Sessions** in the workspace sidebar or on the Dashboard quick-action card.
  </Step>

  <Step title="Find the session">
    Scroll the list, or type in the search box to filter by title. Use **Filter** to narrow by status or date if you have many recordings.
  </Step>

  <Step title="Click the session row">
    Click anywhere on the row to open the session detail page.
  </Step>

  <Step title="Review the session">
    The detail page shows the generated prompt (with tabs for Claude Code, Codex, Cursor, and Raw), a filmstrip of extracted frames, and the session metadata panel.
  </Step>
</Steps>

## Session detail fields

The metadata panel on the session detail page exposes the following fields.

| Field            | Description                                                                            |
| ---------------- | -------------------------------------------------------------------------------------- |
| `title`          | The session name. Click it to rename inline.                                           |
| `status`         | Current status: `processing`, `complete`, or `error`.                                  |
| `duration`       | Total recording length, in seconds.                                                    |
| `frameCount`     | Number of frames extracted from the recording.                                         |
| `urls`           | The list of URLs inspected during analysis.                                            |
| `urlCount`       | The count of inspected URLs.                                                           |
| `agentTarget`    | The AI agent the prompt was formatted for: `CLAUDE_CODE`, `CODEX`, `CURSOR`, or `RAW`. |
| `processingTime` | Time taken to process the session, in seconds.                                         |
| `createdAt`      | ISO timestamp of when the session was created.                                         |

## Renaming a session

Click the session title on the detail page to edit it inline. Press **Enter** or click away to save. Claude Scope sends a `PATCH /api/sessions/:id` request with the updated title. If the save fails, the title reverts to its previous value and an error toast appears.

## Deleting a session

<Warning>
  Deletion is permanent and cannot be undone. Claude Scope does not keep backups of deleted sessions, their frames, or their generated prompts.
</Warning>

To delete a single session, open the session detail page and click **Delete session** in the top-right corner. Confirm the dialog to proceed. Claude Scope calls `DELETE /api/sessions/:id` and then returns you to the Sessions list.

You can also delete programmatically:

```bash theme={null}
curl -X DELETE https://api.claudescope.ai/api/sessions/<id> \
  -H "Authorization: Bearer <token>"
```

## Bulk deletion

To remove all sessions at once, go to **Settings → Danger Zone** and use the **Delete all sessions** option. This action is also permanent and removes every session, frame, and prompt in your workspace.

<Warning>
  "Delete all sessions" cannot be undone. Export any prompts you want to keep before using this option.
</Warning>
