> ## 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.

# grill-me

> Stress-test a vague idea with agent-led questions.

`grill-me` runs an interview loop. The agent asks questions using `.smithers/scripts/ask-user.ts`, records answers, and keeps iterating until the request is clear enough to act on. Answers accumulate in the run context and are available to subsequent tasks in the same run, or can be passed as input to `tickets-create`.

```bash theme={null}
bunx smithers-orchestrator workflow run grill-me --prompt "I want to improve onboarding"
```

## Inputs

| Input           | Type   | Default                                       |
| --------------- | ------ | --------------------------------------------- |
| `prompt`        | string | `"Describe what you want to get grilled on."` |
| `maxIterations` | number | `30`                                          |

## Use it when

* Requirements are vague and you want an agent to interrogate them before work starts.
* You want answers captured in the run for [`plan`](/workflows/plan) or [`tickets-create`](/workflows/tickets-create) to consume.

## Use something else when

* Requirements are already clear: go straight to [`plan`](/workflows/plan) or [`implement`](/workflows/implement).

## Resume & retry

`grill-me` loops up to `maxIterations` (default 30), asking questions through `.smithers/scripts/ask-user.ts`; answers accumulate in the run context. Runs are durable and resume with `up --resume`.
