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

# dashboard

# `fased dashboard`

Open the browser UI with the current gateway auth context, or print the URL
without launching a browser.

The command opens the configured Control UI base URL with the current gateway
token in the URL fragment. The UI strips that token and exchanges it for a
Control UI session when possible. The compact Dashboard is available at `/dash`
inside that UI. Normal setup starts in **Agents** after you select an Agent.
Operator diagnostics live in **Logs**, **Usage**, and **Advanced** (`Config`,
`Debug`, `Nodes`).

The command also prints the URL and copies it to the clipboard when clipboard
access is available. With `--no-open`, it still prints/copies the URL but does
not launch a browser. When the Gateway is bound to LAN, the command opens the
local loopback URL for the browser because that is the safer same-machine
control path.

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fased dashboard
fased dashboard --no-open
```

From a source checkout, contributors can use the same command through
`fased.mjs` after the repo has been built:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
node fased.mjs dashboard --no-open
```

Use `--no-open` when you want the auth-ready URL printed in the terminal. It
does not run onboarding. It reads the current Gateway auth config and prints a
URL like `http://localhost:18789/#token=...`.

To print only the raw Gateway token:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fased config get gateway.auth.token
```

From a source checkout after the repo has been built:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
node fased.mjs config get gateway.auth.token
```

If the Gateway does not have a token yet, generate one:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fased doctor --generate-gateway-token
```

Related:

* [Dashboard](/web/dashboard)
* [Control UI layout](/web/control-ui)
* [Diagnostics](/diagnostics/index)
