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

# Captain View

> Your research command center, a unified dashboard showing experiments, agents, tasks, papers, and compute at a glance.

# Captain View

The **Captain View** is the main dashboard of Hubify Labs. It gives you a bird's-eye view of your entire research operation: what is running, what is blocked, what completed, and what is next.

## Layout

The Captain View is split into panels that you can resize and rearrange:

| Panel                | Shows                                                               |
| -------------------- | ------------------------------------------------------------------- |
| **Status Bar**       | Active pod count, running experiments, agent health, monthly cost   |
| **Experiment Queue** | Ordered list of queued, running, and recently completed experiments |
| **Agent Activity**   | Real-time feed of agent actions, reviews, and communications        |
| **Paper Progress**   | Readiness percentage for each paper in the lab                      |
| **Compute Usage**    | GPU utilization, cost burn rate, estimated time to budget cap       |
| **Priority Queue**   | The next 10 tasks ranked by urgency and impact                      |

## Real-Time Updates

Everything in Captain View updates in real time via WebSocket. When an experiment finishes, a QC gate passes, or an agent completes a review, you see it immediately without refreshing.

## Quick Actions

From the Captain View, you can:

* **Start an experiment**, Click "New Experiment" or type a natural-language request
* **Chat with the orchestrator**, The chat panel is always accessible
* **View any experiment**, Click an experiment ID to open its detail view
* **SSH into a pod**, One click to open a terminal on any running pod
* **Trigger a standup**, Get a summary of what happened since you last checked

## Stat Cards

The top row shows key metrics:

<CardGroup cols={4}>
  <Card title="Active Experiments" icon="flask">
    Currently running experiments with progress bars.
  </Card>

  <Card title="Agent Health" icon="heart-pulse">
    Green/yellow/red status for each agent. Flags idle or failing agents.
  </Card>

  <Card title="GPU Utilization" icon="microchip">
    Current GPU usage across all pods. Alerts on idle pods.
  </Card>

  <Card title="Monthly Cost" icon="dollar-sign">
    Running compute cost with projection to end of month.
  </Card>
</CardGroup>

## Activity Feed

The activity feed is a chronological, color-coded stream:

* **Green**, Positive results, completed experiments, passed QC
* **Blue**, Active work, running experiments, agent communications
* **Yellow**, Warnings, approaching budget limits, QC issues
* **Red**, Failures, blocked tasks, agent errors

Each entry is clickable and opens the relevant detail view.

## Keyboard Shortcuts

| Shortcut      | Action                            |
| ------------- | --------------------------------- |
| `Cmd+K`       | Command palette (search anything) |
| `Cmd+E`       | New experiment                    |
| `Cmd+/`       | Focus orchestrator chat           |
| `Cmd+J`       | Toggle activity feed              |
| `Cmd+Shift+S` | Trigger standup                   |

## CLI Equivalent

```bash theme={null}
# Get a status overview (equivalent to Captain View)
hubify status

# Watch real-time activity
hubify logs --follow --all

# View priority queue
hubify task list --priority
```
