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

# Watch and Steer Your Runs

> See what your agent set running, follow it live, inspect what each step produced, and steer it, all by talking to your agent.

You can watch everything your agent set running. Nothing is a black box.

You started the run by asking, and you watch it by asking: "What's running?" "Show me what step 3 produced." Your agent runs the read commands under the hood and reports back. Every run is durable, so its state is on disk to inspect, even after a crash, even hours later.

## The observe loop

Three moves: list what's active, follow one live, inspect what a step produced.

| You ask your agent                   | Smithers runs under the hood                                                                                   | You get back                                                 |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ |
| "What's running, and which need me?" | `bunx smithers-orchestrator ps`                                                                                | Every active, paused, and recently finished run, with status |
| "Follow the implement run."          | `bunx smithers-orchestrator chat --follow` / `bunx smithers-orchestrator inspect --watch`                      | Live agent output and step-by-step progress, streaming       |
| "Show me what step 3 produced."      | `bunx smithers-orchestrator inspect` / `bunx smithers-orchestrator output` / `bunx smithers-orchestrator diff` | The structured output, the diff, the exact tool calls        |

You never memorize the commands; you drive it through your agent. Anything `waiting-approval` is flagged as a run paused at a gate.

<Frame caption="Run state streams in live as each step transitions, proof that a long agent run is observable end to end, not a spinner you wait on blind.">
  <img src="https://mintcdn.com/smithers/xegNOoNr9NbWn5pb/images/why/runs-live.gif?s=6b2a6a4b05e07f2fe4bd7e87c9148898" alt="A Smithers run streaming live step transitions into a tree as each task starts and finishes" width="1100" height="688" data-path="images/why/runs-live.gif" />
</Frame>

## Visual workflow views

The default watch path is still the agent-driven CLI loop above, not a GUI you click through. When you want one live page over *every* run (grouped run list, execution tree, event stream, and an approvals inbox), ask your agent to open the Smithers Monitor with `bunx smithers-orchestrator monitor`. It needs zero setup and only observes: opening it launches nothing. When a workflow ships a purpose-built browser view, ask your agent to open it with `bunx smithers-orchestrator ui`.

<Frame caption="The Monitor's home view: every run in the workspace, grouped by what needs attention, live.">
  <img src="https://mintcdn.com/smithers/aNx9Cql5G3fWXnYI/images/monitor/runs.png?fit=max&auto=format&n=aNx9Cql5G3fWXnYI&q=85&s=b65fcf917913a113f75b1b04aa2f8be7" alt="The Smithers Monitor listing sixteen runs grouped into needs attention, active, completed, failed, and cancelled, each with status, workflow, and duration" width="1600" height="1000" data-path="images/monitor/runs.png" />
</Frame>

<Frame caption="Drill into one run: progress, the execution tree with per-node status, and the structured event stream underneath.">
  <img src="https://mintcdn.com/smithers/aNx9Cql5G3fWXnYI/images/monitor/run-detail.png?fit=max&auto=format&n=aNx9Cql5G3fWXnYI&q=85&s=cd095f7bb45d228af35dc9815ad9e543" alt="A finished run in the Smithers Monitor showing a completed seven-task execution tree and the live event log with agent traces and token usage" width="1600" height="1000" data-path="images/monitor/run-detail.png" />
</Frame>

The Smithers workflow UI surface renders the browser UI that lives with that workflow, such as a kanban board, approval dashboard, or review surface. It is for the run you are steering, not a separate product console you must learn before Smithers is useful.

Your agent builds these views for you, and it does not hand-roll them: every workflow UI is composed from the Smithers component library, which ports [shadcn/ui](https://ui.shadcn.com) anatomy and adds agent-native components built specifically for Smithers (reasoning traces, tool calls, plans, approvals, live run trees). That is why every view your agent ships looks consistent, works in light and dark, and stays accessible. The [UI Docs by Type](/reference/ui/overview) page maps the whole surface if you want to see what your agent is working with.

<Note>
  The CLI watch loop (`ps`, `chat --follow`, `inspect --watch`) remains the always-available path, and works on any machine, with any agent, no GUI required.
</Note>

## Browser and remote access

You do not have to be at the machine that started the run. Ask your agent to serve the run or open its workflow UI, and you get an HTTP control plane you can reach from a browser: your laptop watching a run on a remote box, or a teammate following along.

For programmatic and multi-user access (bots, dashboards, schedulers authenticating once and streaming events), the [Gateway](/integrations/gateway) is the headless control plane behind the same run data.

## Steering from here

Watching is half of it; steering is the other half, and it's the same loop. You see something, you tell your agent what to do about it.

| You see                          | You ask your agent                                           | Smithers does                                           |
| -------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------- |
| A run paused at an approval gate | "Approve the deploy step." / "Deny it, the tests are stale." | Resolves the gate and the run continues or stops        |
| A run heading the wrong way      | "Cancel the implement run."                                  | Safely halts the agents and terminates that run         |
| Everything needs to stop         | "Cancel everything that's running."                          | Tears down every active run, like `docker compose down` |
| A step that went wrong           | "Redo the reviewer step on the last run."                    | Retries that task and resumes the workflow from there   |

Because every run is durable (render → execute → persist), steering is never lossy: approve a gate, cancel a run, or redirect a step without losing the work already on disk.

## Read next

<CardGroup cols={2}>
  <Card title="Talk to your agent" icon="comments" href="/guide/talk-to-your-agent">
    **How-to:** the phrasing that starts every run, and how asking your agent kicks off durable work.
  </Card>

  <Card title="What you can do" icon="list-check" href="/guide/what-you-can-do">
    **Reference:** the full catalog of outcomes, including the runs you start and walk away from.
  </Card>

  <Card title="The few concepts you need" icon="lightbulb" href="/guide/concepts">
    **Explanation:** why a paused run costs nothing and a crashed run resumes without losing work.
  </Card>

  <Card title="CLI and Gateway" icon="terminal" href="/cli/overview">
    **Under the hood:** every read and steer command, plus the headless control plane for remote and multi-user access.
  </Card>
</CardGroup>
