> ## Documentation Index
> Fetch the complete documentation index at: https://smithers-feat-claude-workflow-mirror.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# tickets-create

> Break a request into multiple implementable tickets.

`tickets-create` decomposes a broad request into a set of tickets. Each ticket includes title, description, and acceptance criteria.

```bash theme={null}
bunx smithers-orchestrator workflow run tickets-create --prompt "Build the billing admin workflow"
```

## Inputs

| Input    | Type   | Default                                    |
| -------- | ------ | ------------------------------------------ |
| `prompt` | string | `"Create tickets for the requested work."` |

## Typical Flow

1. Run `research` or `grill-me` for context.
2. Run `tickets-create` to split the work.
3. Copy the generated ticket Markdown into `.smithers/tickets/` before running `kanban`.
4. Run `kanban` to implement them in parallel worktrees.

## Use it when

* A request is broad enough to split into several implementable tickets.

## Use something else when

* The request is one narrow unit: use [`ticket-create`](/workflows/ticket-create).
* Requirements are still vague: run [`grill-me`](/workflows/grill-me) or [`research`](/workflows/research) first.

## Resume & retry

`tickets-create` returns ticket Markdown in the run output. Copy the tickets into `.smithers/tickets/` before running [`kanban`](/workflows/kanban). Runs are durable and resume with `up --resume`.
