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

# ticket-create

> Turn a request into one structured implementation ticket.

`ticket-create` is an archived example, not installed by `init`: copy it from `examples/init-pack/` with its dependency closure, or ask `create-workflow` to build an equivalent. It turns a prompt into a single ticket with title, description, and acceptance criteria.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
bunx smthrs workflow run ticket-create --prompt "Add a settings page for API keys"
```

<Frame caption="The ticket-create UI shows a single request turned into one structured ticket with a title, description, and acceptance criteria.">
  <img src="https://mintcdn.com/smithers/py7ertgBTLCgQQDl/images/workflow-ui/ticket-create.png?fit=max&auto=format&n=py7ertgBTLCgQQDl&q=85&s=292d37d3b715e2812a3af980ae951dc4" alt="ticket-create workflow UI showing a single structured ticket" width="1280" height="832" data-path="images/workflow-ui/ticket-create.png" />
</Frame>

## Inputs

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

## Use it when

* The request is already narrow enough to be one implementable unit.

## Use something else when

* The request is broad: use [`tickets-create`](/workflows/tickets-create) to split it into many tickets.

## Resume & retry

`ticket-create` returns a single ticket in the run output without writing files. Runs are durable and resume with `up --resume`.
