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

# issue:create

> Create a YAML skeleton file for a new issue.

Create a YAML skeleton file for a new issue inside a module's `issues` directory. A unique issue ID is generated automatically and used as the file name. With `--interactive`, the title, state, priority, labels, and description are prompted for.

## Usage

```bash theme={null}
ooneex issue:create [options]
```

## Examples

```bash theme={null}
ooneex issue:create --interactive
```

```bash theme={null}
ooneex issue:create --title="Fix login redirect" --priority=High --module=auth
```

## Options

| Option          | Description                                                                                    | Default  |
| --------------- | ---------------------------------------------------------------------------------------------- | -------- |
| `--title`       | Issue title.                                                                                   | —        |
| `--state`       | Issue state: `Backlog`, `Todo`, `Planned`, `In Progress`, `In Review`, `Done`, or `Cancelled`. | —        |
| `--priority`    | Issue priority: `Low`, `Medium`, `High`, or `Urgent`.                                          | —        |
| `--description` | Issue description.                                                                             | —        |
| `--labels`      | Issue labels.                                                                                  | —        |
| `--module`      | Module the issue is created in.                                                                | `shared` |
| `--interactive` | Prompt for title, state, priority, labels, and description.                                    | `false`  |
