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

# pome demo

> Run a scored demo with no signup and no API keys.

`pome demo` is the shortest path to a scored run. It boots a local GitHub twin,
runs the bundled demo agent for five isolated trials, and prints each trial's
verdict. Model calls go through Pome's anonymous demo gateway, so you need no
account and no API keys.

The run ends with a preview link you can open without logging in.

## Usage

```bash theme={"dark"}
pome demo [options]
```

## Options

| Flag                    | Default               | Description                       |
| ----------------------- | --------------------- | --------------------------------- |
| `--trials <n>`          | `5`                   | Number of isolated trials to run. |
| `--artifacts-dir <dir>` | `runs`                | Where to write per-run artifacts. |
| `--api-url <url>`       | `https://api.pome.sh` | Control-plane base URL.           |

## Why five trials

One trial tells you whether the agent can do the task. Five tell you whether it
does the task reliably, which is the question the demo exists to answer. The
verdicts print per trial rather than averaged.

## Examples

```bash theme={"dark"}
# The whole thing
pome demo

# One trial, when you only want to see the shape
pome demo --trials 1
```

## See also

* [`pome init`](./init) — scaffold a project once the demo has made the point.
* [`pome run`](./run) — run your own task against a twin.
