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.
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
planortickets-createto consume.
Use something else when
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.