> For the complete documentation index, see [llms.txt](https://docs.sail.money/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sail.money/sailor/dashboard.md).

# Dashboard (local UI)

`sailor ui` runs a **local web dashboard** for your project — onboarding, wallet gas balances, mandate health, activity, and owner signing. It reads from the project's `.sail/` directory and talks to your RPC; there is **no hosted backend** and nothing is sent anywhere.

```bash
sailor ui start     # start the dashboard (prints its URL)
sailor ui status    # is it running, and where
sailor ui stop      # stop it
```

## What it shows

* **Onboarding** — a guided path for SMA deployment and first mandate, mirroring the CLI/skills flow.
* **Gas balances** — the native-token (gas) balance and top-up status of the **owner wallet** and the **agent wallet**, so you can keep them funded to sign and submit. The dashboard does **not** display the SMA's token holdings; a **View portfolio** link opens your SMA on [DeBank](https://debank.com) to review what it holds, and a **Manage SMA** link opens it in the Safe app.
* **Mandate health** — the permissions registered on the SMA and their configured bounds.
* **Activity** — the append-only `.sail/activity.jsonl` feed (dispatches, denials, collections).
* **Owner signing** — the browser **signing server**, where owner/permission-signer EIP-712 signatures happen in your wallet. Sailor never reads the owner key.

## Ports & exposure

Each project gets a **deterministic port in 3333–3999** derived from its path — read the URL `sailor ui start` prints, or `.sail/runtime/ui.json`; don't assume 3333. The signing server runs alongside it.

By default the dashboard binds to localhost only. To reach it from another device on your own network, `--expose tailscale` serves it over HTTPS on your tailnet — it is **never** exposed publicly:

```bash
sailor ui start --expose tailscale
```

{% hint style="info" %}
**Under Docker** the UI binds to a fixed **3334** inside the container (signing server **3141**); with `docker run -P` these map to random host ports — resolve them with `docker port agent 3334`. See [Docker → Dashboard access](/sailor/docker.md#dashboard-access).
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sail.money/sailor/dashboard.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
