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

# repr stories

> Manage your generated stories

Commands for listing, viewing, and managing the stories you have generated.

## Usage

```bash theme={null}
repr stories [OPTIONS]
repr story <action> <id>
```

## Subcommands

### `list` (default)

Lists all stories.

**Options:**

* `--repo <name>`: Filter by repository name.
* `--needs-review`: Show only stories marked for review.
* `--json`: Output raw JSON.

### `view`

Display the full content of a story.

```bash theme={null}
repr story view 01ARYZ...
```

### `edit`

Open the story in your default `$EDITOR`.

```bash theme={null}
repr story edit 01ARYZ...
```

### `delete`

Permanently remove a story.

```bash theme={null}
repr story delete 01ARYZ...
```

### `hide` / `feature`

Toggle visibility flags for your profile.

```bash theme={null}
repr story hide 01ARYZ...    # Don't show on profile
repr story feature 01ARYZ... # Pin to top of profile
```

### `review`

Interactive mode to review newly generated stories.

```bash theme={null}
repr review
```
