Control UI
Use OpenClaw's typed UI tools for state and layout. Use browser automation only to inspect or interact with rendered pixels.
Mental model
- A sidebar item is a session, not a dashboard page.
- Each session owns one board. The board contains tabs and widgets.
- Pinning a session keeps it in the sidebar. Sessions with a stored board appear
in the
/dashboardsgallery. screenchanges connected Control UI layout and navigation. It does not read the page or take screenshots.sessions_listfinds sessions.sessionsrenames, groups, pins, or archives them. It does not edit board content.dashboardreads and arranges the current session's board and registered plugin widgets.show_widgetauthors or updates custom HTML/SVG widgets.
Do not replace these operations with shell calls or raw Gateway RPC when the typed tool exists.
Start safely
- Identify the target session and whether the Control UI is local/direct or
published through Tailscale or another HTTPS proxy.
- If the user wants a dedicated sidebar dashboard, choose or create its visible session before authoring any widget. A tab is only a partition inside one session's board; it never creates a sidebar row.
- If the current turn is running in a temporary or parent session, hand the dashboard task to the intended visible session first. Board widgets are keyed by session and cannot be moved to another session afterward.
- Read current state before changing it:
- use
sessions_listto resolve the session; - use
dashboardwithaction: "read"for the current session; - inspect existing tabs, stable widget names, owners, sizes, and panel layout.
- use
- If the task targets another session's board, move the work into that session. Dashboard tools intentionally operate on the current session.
Read hosting.md before opening or repairing a remote Control UI. Read dashboards.md before creating or restructuring a board.
Navigate and arrange the UI
Use screen for deterministic client commands:
navigateto open a session bysessionKey;sidebar_show/sidebar_hidefor the session sidebar;split_right/split_down,focus, andclose_panefor panes;terminal_show/terminal_hideandbrowser_show/browser_hidefor docked panels.
screen broadcasts to every connected Control UI that advertises UI commands;
it cannot select one browser tab. Confirm the blast radius when several clients
may be open. If it reports no capable client, ask the user to open the Control
UI and retry.
Use the in-app browser or an available browser-control tool when the task needs DOM inspection, clicking, typing, or screenshots. Reuse the existing signed-in Control UI tab when possible.
Build a session dashboard
- Call
dashboard read. Reuse suitable tabs and widget names. - Create or rename tabs with
tab_create/tab_update; use short lowercase slug IDs. - Add content with the correct owner:
- self-contained custom HTML/SVG or registered-source content:
show_widgetwithpin: true; - trusted plugin widgets:
dashboard widget_putwith an advertisedpluginKind. Do not embed Grafana or another external application in an<iframe>insideshow_widget; widget sandboxes reject child-frame URLs and navigation. Use an ordinary user-clicked link to open the application, fetch an exact HTTPS API through declaredcapabilities.netOrigins, use a Gateway data binding, or install/use a trusted plugin widget instead.
- self-contained custom HTML/SVG or registered-source content:
- Use a stable
namewhen callingshow_widget. Reusing the same name with newwidget_codeupdates the widget in place. - Arrange with
widget_move,widget_resize, and tab reordering. Prefer size presets and board order over pixel placement. - Pin the current session with
sessions patchwhen it should stay prominent. - Call
dashboard focus_tabto show the intended tab in the dashboard side panel. If no Control UI is connected, the command returns unavailable; have the user open the session and retry. - Choose the presentation after focusing the tab.
set_presentationwithpresentation: "expanded"expands the dashboard;"split"shows it beside chat in the current panel layout. The human can use Expand side panel for a full-width dashboard, Collapse to bring chat back, or close the panel for chat alone.
Never create a fake top-level page for a dashboard. For a dedicated dashboard, use a dedicated session, pin that session, and build its board from inside it.
Update without breaking the board
- Read first and mutate the smallest unit.
- Keep stable tab IDs and widget names unless replacement is intentional.
- Do not change a widget's content owner in place. Remove it, then recreate it with the new owner or registered kind.
- Capability grants are bound to exact widget bytes and revision. Changed content may require approval again.
- Resetting a conversation preserves its board. Deleting the session deletes the board.
Verify the result
Use two layers of proof:
- State:
dashboard readshows the expected tabs, widgets, names, owners, order, and sizes;sessions_listshows the expected session metadata. - Rendered UI: open the actual Control UI, confirm the correct session and dashboard panel, then inspect or screenshot the widget frame. Exercise any important controls.
An HTTP 200 for the shell or widget route is transport proof, not visual proof.
Do not claim the dashboard works until the sandboxed frame renders.
For widgets that fetch live data, exercise that fetch from the rendered frame.
A host-side curl does not prove the browser received the required capability
grant or accepted the endpoint's CORS and mixed-content policy.
If no browser-control or connected-client inspection is available, report the
dashboard as published but visually unverified instead of claiming success.
Recovery order
When a widget is blank or stale:
- confirm the expected session, tab, widget name, and revision with
dashboard read; - classify the hosting path using hosting.md;
- verify the Control UI origin, the separate widget sandbox origin, and the protocol used on every reverse-proxy hop;
- if widget JavaScript reports
Failed to fetch, verify its exact HTTPS origin is declared and granted incapabilities.netOrigins, then check browser CORS and mixed-content errors; - after a Gateway restart or routing change, republish/update the widget so the browser receives a fresh ticketed frame URL;
- reload the Control UI and verify the rendered frame, not only route status.