Premia
Runs & observability

The run detail view

Everything about a single run — steps, plan, and logs.

Opening a run shows its journey and three tabs.

A run's detail page — pipeline tracker across the top, Overview tab with duration, tokens, cost, and the per-task journey belowA run's detail page — pipeline tracker across the top, Overview tab with duration, tokens, cost, and the per-task journey below

The journey

A pipeline tracker across the top shows each step's status as the run advances (Planner → Developer → Reviewer → QA → Requirements → Merger), plus links to the Linear issue and the PR.

Tabs

  • Overview — status, timing, and per-task breakdown. For a ticket that fanned out to several repos, each sub-task (with its own PR and status) is listed here.
  • Plan — the implementation plan the Planner produced, per repo, rendered as a document. Use Expand for a full-screen, distraction-free read.
  • Logs — structured, streaming logs for the run and its child steps, filterable by level, with token counts and cost.
The Logs tab — timestamped, level-filtered log lines showing each agent's actions and model calls, with a live toggle and downloadThe Logs tab — timestamped, level-filtered log lines showing each agent's actions and model calls, with a live toggle and download

Cost & tokens

Logs record input/output/cached tokens and latency per LLM call. This rolls up into the per-run cost you see here and the org-wide analytics.

From the CLI

premia runs view <id>            # steps + child tasks
premia runs logs <id> --follow   # tail live logs until the run finishes
premia runs cancel <id>

On this page