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

# Board & Views

> Visual layouts for managing your tasks

Claude Board offers multiple views to manage your tasks. Switch between them using the view toggle in the top toolbar.

## Views

<Tabs>
  <Tab title="Kanban Board">
    The default view. Tasks are organized into columns by status:

    | Column          | Description                          |
    | --------------- | ------------------------------------ |
    | **Backlog**     | Queued tasks waiting to start        |
    | **In Progress** | Claude is actively working           |
    | **Testing**     | Completed, awaiting your review      |
    | **Done**        | Approved and finished                |
    | **Failed**      | Permanently failed after all retries |

    **Drag and Drop** — Move tasks between columns by dragging. Dropping into **In Progress** spawns a Claude agent automatically. Hold **Alt** while dragging to create a [dependency](/features/dependencies) between two tasks.
  </Tab>

  <Tab title="List View">
    A compact table showing all tasks with sortable columns: title, status, priority, model, type, cost, duration, and creation date. Best for large projects with many tasks.
  </Tab>

  <Tab title="Summary View">
    A dashboard-style overview with:

    * **Status breakdown** — task counts per column
    * **Priority distribution** — low, medium, high, urgent
    * **Recent activity** — latest task updates
    * **Agent utilization** — active vs idle agent slots
  </Tab>

  <Tab title="Orchestration">
    The command center for multi-agent execution. Three sub-views:

    * **Graph** — Interactive dependency DAG with draggable nodes
    * **Timeline** — Gantt-style execution view with NOW marker
    * **Live** — Real-time tool call feed with file conflict detection

    See [Orchestration View](/features/orchestration) for details.
  </Tab>
</Tabs>

## Real-time Updates

<Info>All views update in real-time via WebSocket. Task status changes, terminal output, token usage, and dependency updates are pushed instantly — you never need to refresh the page.</Info>

## Toolbar

The board toolbar provides quick access to:

| Feature          | Description                                              |
| ---------------- | -------------------------------------------------------- |
| **View toggle**  | Switch between Kanban, List, Summary, and Orchestration  |
| **Model filter** | Show only tasks for a specific model (Opus/Sonnet/Haiku) |
| **New Task**     | Create a new task with the quick-create modal            |
| **Search**       | Filter tasks by title or description                     |

## Mobile Experience

Claude Board is fully responsive. On smaller screens:

* The Kanban board scrolls horizontally
* Quick-move buttons replace drag-and-drop
* The terminal opens as a bottom sheet
* Task creation uses a full-screen modal

<Columns cols={2}>
  <Card title="Task Lifecycle" icon="arrows-rotate" href="/concepts/tasks">
    Learn how tasks flow through each status.
  </Card>

  <Card title="Orchestration" icon="sitemap" href="/features/orchestration">
    Explore the dependency graph and timeline views.
  </Card>
</Columns>
