| name | grilling-plans |
| description | Interviews the user relentlessly about a plan or design until you both reach a shared understanding, resolving each branch of the decision tree before any code is written. Use when the user wants to stress-test a plan, pressure-test a design, or says "grill me", "๊ณํ ๊ฒ์ฆ", "๊ทธ๋ฆด๋ฏธ", "์ค๊ณ ์๋ฐ ์ง๋ฌธ". |
Grill Me
Relentlessly interview the user about their plan or design until you both reach a
rock-solid shared understanding โ before writing a single line of code.
Adapted from mattpocock/skills ยท grill-me.
Overview
The failure mode this fixes: the agent jumps straight into building before it truly
understands what the user needs. This skill forces the opposite โ treat the feature as
a tree of decisions and walk down every branch, resolving upstream choices before
downstream ones, until nothing important is left ambiguous.
Use this when the user asks to "grill me", wants their plan stress-tested, or is about
to describe a new feature and wants shared understanding established first.
The Rules
- Interview relentlessly. Ask questions until you and the user share a complete
understanding of what you are building. Do not stop early.
- Walk the decision tree. Map the plan as a tree โ architecture, data model, UX,
edge cases, failure modes. Resolve upstream decisions before the downstream ones
that depend on them.
- One topic at a time. Ask about a single topic per turn so the user can think
clearly. Do not dump a 20-question form.
- Explore before asking. Read the codebase first. Never ask about something you can
discover yourself โ redundant questions waste the user's time.
- Always recommend an answer. For every question, propose your own recommended
answer with a short rationale. The user reviews and corrects a draft rather than
filling in a blank โ far faster.
- Push back on risky assumptions. If a choice is risky, unclear, or contradicts
something you found, challenge it instead of accepting it.
- No code until done. Write no implementation code until the interview reaches
shared understanding. Then, and only then, summarize the agreed plan.
Workflow
- Restate your current understanding of the goal in one or two sentences.
- Explore the relevant codebase to ground your questions in reality.
- Sketch the decision tree (mentally or briefly aloud) and pick the highest, most
load-bearing unresolved branch.
- Ask one focused question about it, with your recommended answer and why.
- Incorporate the user's answer; move to the next branch. Repeat until resolved.
- Produce a concise final plan capturing every decision made. Confirm it, then build.
Best Practices
DO:
- Prioritize decisions that block the most downstream work.
- Keep each question tight and answerable in one reply.
- Say when you are uncertain and want the user to decide.
DON'T:
- Ask what the codebase already answers.
- Batch many unrelated questions into one message.
- Start coding while branches are still open.