> For the complete documentation index, see [llms.txt](https://docs.stoobly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stoobly.com/guides/how-to-record-requests/how-to-create-scenarios/creating-from-the-cli.md).

# Creating from the CLI

## Creating a Scenario

### Command

```bash
stoobly-agent scenario create --description "<DESCRIPTION>" "<NAME>"
```

### Options

To see more options for the command:

```sh
$ stoobly-agent scenario create --help
```

```
Usage: stoobly-agent scenario create [OPTIONS] NAME

  Create a scenario

Options:
  --description TEXT  Scenario description.
  --select TEXT       Select column(s) to display.
  --without-headers   Disable printing column headers.
  -h, --help          Show this message and exit.
```

This command has additional flags such as `--select COLUMN` and `--without-headers` to customize the stdout displayed after the command gets run. This is useful for programmatic usage such as in CI pipelines.
