---
title: Product
description: The app you actually use. Three tiers of surface, from starting a task to watching it run to managing everything an organization accumulates.
sidebar:
  label: The app at a glance
  order: 1
---

Everything in [Concepts](/concepts) and [Architecture](/architecture) exists to
power a product with real screens. Those screens fall into three tiers.

<CardGroup cols={3}>
  <Card title="Start a task" icon="square-pen">
    The composer at `/agent/new`. Pick an engine, model, memory scope, and
    repositories, attach files, and start a run or a direct conversation.
  </Card>
  <Card title="Watch it run" icon="activity">
    The session view at `/session/:id`. A live timeline plus a side rail of
    surfaces: browser, terminal, files, diff, agents, editor, and workspace.
  </Card>
  <Card title="Manage everything" icon="library">
    Hubs for skills, playbooks, knowledge, wiki, memory, artifacts, automations,
    secrets, and settings.
  </Card>
</CardGroup>

## Route map

| Route | What it is |
| --- | --- |
| `/agent/new` | The task composer. Start a run or a direct conversation. |
| `/session/:id` | The thread view for a live or settled run. |
| `/dashboard` | The workspace hub: recent runs, activity, fleet lanes, usage limits. |
| `/agent/runs` | Recent runs with status filter tabs, kept current by polling and the org-change stream. |
| `/agent/automations` | Recurring and triggered runs, with history and fire-now. |
| `/skills`, `/playbooks` | The reusable-procedure catalog. |
| `/knowledge`, `/wiki` | Reference material and published documents. |
| `/memory` | The team memory hub: browse, capture log, recall ledger. |
| `/learnings` | The review queue for proposed knowledge and skill revisions. |
| `/artifacts` | Files and outputs produced by runs, with workpiece editors. |
| `/secrets` | The encrypted organization secrets manager. |
| `/settings` | Workspace configuration, provider connections, and usage. |
| `/review` | A GitHub pull-request review workspace. |
| `/apps`, `/agent/plugins` | Integrations and the connections available to agents. |
| `/foundation`, `/lab` | The foundation smoke page and the component lab. |

`/` redirects to `/agent/new`, and the old `/agent/schedules` route redirects to
`/agent/automations`.

## The shell around every page

Every surface lives inside one app shell: a floating sidebar panel inset from
the viewport edge, plus the scrollable workspace. There is no top navigation
bar. The sidebar adapts to the page (a thread list on run pages, a section
index on library pages), collapses to a compact icon rail, and auto-collapses
when a run starts working so the timeline gets the width.

- **Command palette.** A search pill inside the sidebar (and on the compact
  rail when collapsed) opens a command menu with live results and shortcuts.
  `Cmd K` opens it from anywhere.
- **Theme picker.** At the sidebar bottom, next to the user menu. Four
  palettes, in picker order: Light, Midnight (the default), Aura, and Harbor.
  See [Themes and design](/product/themes-and-design).
- **User menu.** Account and workspace controls, plus a Dark-mode switch that
  flips the theme with a View Transition reveal.

:::note
The product owns its own rendering layer. It does not embed an engine's web UI in
an iframe; it renders the canonical event log through native React components.
That is what lets the timeline, the panes, and the artifact viewers stay
consistent across every engine.
:::
