# Headless runs

Use `foxora run` for a one-shot request that prints its reply to stdout and exits.

## Run with the default crew

```bash
foxora run "summarize this repository"
```

## Select a crew tier

Pass `fast`, `pro`, or `max` immediately after `run`:

```bash
foxora run fast -n "fix the failing test"
foxora run pro -n "review this architecture"
foxora run max -n "analyze the hardest unresolved issue"
```

The prompt can be supplied as the remaining quoted argument or explicitly with `-n` / `--prompt`.

## Shell usage

Headless output is plain text, so it can be redirected or captured with normal shell tools:

```bash
foxora run fast -n "review this diff" > review.txt
```

Use the process exit code to detect failure. Foxora CLI v5.0.3 does not expose a `--json` option.
