Interview me

Extracts what the user actually wants instead of what they think they should want.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/interview-me-2.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit addyosmani/agent-skills/skills/interview-me#main ~/.claude/skills/interview-me-2

For one project only, change the path to .claude/skills/interview-me-2.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Interview me

Show the full text236 lines
namedescription
interview-meExtracts what the user actually wants instead of what they think they should want. Achieves this through one-question-at-a-time interview until ~95% confidence about the underlying intent. Use when an ask is underspecified ("build me X" without "for whom" or "why now"), when the user explicitly invokes ("interview me", "grill me", "are we sure?", "stress-test my thinking"), or when you catch yourself silently filling in ambiguous requirements before any plan, spec, or code exists.

Interview Me

Overview

What people ask for and what they actually want are different things. They ask for "a dashboard" because that's what one asks for, not because a dashboard solves their problem. They say "make it faster" without a number to hit.

The cheapest moment to find this gap is before any plan, spec, or code exists. Once you've started building, switching costs are real, and the user will rationalize the wrong thing into a "good enough" thing. The misfit gets locked in.

This skill closes the gap before it costs anything. The other Define-phase skills assume you already know roughly what you want: idea-refine generates variations from an idea, spec-driven-development writes the requirements down, doubt-driven-development stress-tests a plan after you've drafted one. Interview-me is the part before all of those, where you ask one question at a time, with your best guess attached, until you can predict what the user is going to say before they say it.

When to Use

Apply this skill when:

  • The ask is missing at least one of: who the user is, why they want it, what success looks like, what the binding constraint is
  • The request is conventional rather than specific ("build me X", "make it faster") and you can't unpack the convention without guessing
  • You're tempted to start with assumptions you haven't surfaced
  • The user hasn't said which value they're optimizing for when two reasonable ones are in tension (simplicity vs. flexibility, cost vs. speed)
  • The user explicitly invokes: "interview me", "grill me", "before we start, are we sure?", "stress-test my thinking"

When NOT to use:

  • The ask is unambiguous and self-contained ("rename this variable", "fix this typo")
  • The user has explicitly asked for speed over verification
  • Pure information requests ("how does X work?", "what does this code do?")
  • Mechanical operations (renames, formats, file moves)
  • You already have ≥95% confidence; re-read the stop condition below before assuming you don't

Loading Constraints

This skill needs a live, responsive user. Do not invoke in non-interactive contexts like CI pipelines, scheduled runs, /loop, or autonomous-loop. If you're in one of those and the ask is underspecified, flag that as a blocker for the user instead of guessing.

The Process

Step 1: Hypothesize, with a confidence number

Before asking anything, write down your current best read of what the user wants in one sentence, plus an honest confidence number (0–100%):

HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" was the convention that came to mind.
CONFIDENCE: ~30% — missing: who it's for, what "metrics" means in context, and what success looks like

The number forces honesty. If you wrote down a high number but can't actually predict the user's reactions to the next three questions you'd ask, the number is wrong. Start at the confidence level you can defend.

When confidence is below ~70%, append a brief reason on the same line — what's still unresolved or missing. This tells the user exactly what the interview needs to surface, and prevents the number from being a vague signal.

Step 2: Ask one question at a time, each with a guess attached

Format:

Q: <one focused question>
GUESS: <your hypothesis for the answer, with the reasoning that produced it>

Wait for the user to react before asking the next question.

Why one at a time, not a batch:

  • The user can't react to your hypotheses if you bury them in a list
  • Batches encourage skim-reading and surface answers
  • The third question often depends on the answer to the first; asking them all at once locks in the wrong framing
  • The user's energy for thinking carefully is finite; spend it one question at a time

Why attach a guess:

  • The user reacts faster to a wrong guess than they generate an answer from scratch
  • It commits you to a hypothesis you can be visibly wrong about, which keeps you honest
  • It surfaces your assumptions, which is what the interview is meant to expose

The risk here is a polite user agreeing with your guess to be agreeable. Mitigate by being visibly willing to be wrong, and occasionally guess in a direction you expect the user to push back on.

Step 3: Listen for "want vs. should want"

The most dangerous answers are the ones where the user says what a thoughtful answer sounds like rather than what they actually want. Watch for:

  • Answers that pattern-match best-practice talk ("I want it to be scalable", "clean architecture") without specifics
  • Answers that defer to convention ("the way most apps do it", "the standard approach")
  • Phrases like "I should probably…", "I think I'm supposed to…", "good engineering practice says…"
  • Buzzwords as goals — when "modern", "scalable", "robust" are the answer instead of a specific outcome

When you hear these, the question to ask is:

"If you didn't have to justify this to anyone, what would you actually want?"

That single question often does more work than the previous five.

Step 4: Restate intent in the user's own words

When your confidence is high, write back what you now think the user wants. Keep it tight (5–8 lines), use their language where possible, and structure it so the user can confirm or correct line by line:

Here's what I now think you want:

- Outcome:      <one line>
- User:         <one line — who benefits>
- Why now:      <one line — what changed>
- Success:      <one line — how we know it worked>
- Constraint:   <one line — the binding limit>
- Out of scope: <one line — what we're explicitly not doing>

Yes / no / refine?

Including "Out of scope" is non-negotiable. Half of misalignment is silent disagreement about what is not being built.

Step 5: Confirm — explicit yes, not "whatever you think"

The gate is an explicit "yes." The following are not yes:

  • "Whatever you think is best." → The user is delegating, which means they don't have 95% confidence either. Re-ask with two concrete options framed as a choice.
  • "Sounds good." → Ambiguous. Ask: "Anything you'd refine?" Silence isn't confirmation.
  • "Sure, let's go." → Often a polite exit, not an endorsement. Same follow-up.
  • Silence followed by "okay let's start." → The user has given up on the interview, not converged. Stop and ask whether you've missed something.

If they correct you, fold the correction in and restate. Loop until you get an explicit yes.

Step 6: Terminal Turn & Stop Rule (CRITICAL)

When the user confirms the statement of intent with an explicit "yes":

  1. Deliver the confirmed Statement of Intent.
  2. Offer downstream paths (offer to save it to docs/intent/[topic].md, draft a spec with spec-driven-development, or move to task planning after the spec).
  3. STOP YOUR TURN IMMEDIATELY. Do NOT invoke tools or start downstream work in this turn. Hand control back to the user to choose the next step.
The 95% Confidence Stop

You're done when you can answer yes to this:

Can I predict the user's reaction to the next three questions I would ask?

If yes, you have shared understanding. Stop interviewing and produce the restate. If no, you're not done; ask the next question.

This is a checkable test, not a vibe. It also has a floor: if you've gone several rounds and still can't predict, that's information about the ask, not a reason to keep grinding. Stop and tell the user: "I've asked X questions and I still can't predict your reactions. Something foundational is missing. Want to step back?"

Output

The output of this skill is a confirmed statement of intent: the restate from Step 4, with an explicit yes from Step 5. That's the deliverable. Specs, plans, and task lists are downstream; they consume the intent this skill produces.

If the user wants the intent to persist (a multi-session project, a handoff to another collaborator), offer to save it to docs/intent/[topic].md. Only save if they confirm.

Example

A short before-and-after.

Without interview-me:

User:  build me a dashboard for our metrics
Agent: <starts proposing chart libraries and layouts>

The agent has assumed: who it's for, what metrics, what "for our team" means, what success looks like. None of these are stated. Every assumption is a place the user can later say "that's not what I meant."

With interview-me:

User: build me a dashboard for our metrics

Agent:
HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" came to mind because that's the conventional answer.
CONFIDENCE: ~30% — missing: who it's for, what "metrics" are, and what success looks like

Q:     When you say "how are we doing?", who's asking — you alone, the engineering team in standup, or up the chain (e.g., your manager, an exec, a board)?
GUESS: engineering team in standup, because "we" usually scopes that way and standups are where this question gets asked. If it's for execs the metrics and the framing change a lot.

User: It's actually for me. I keep losing track of which experiments are running and what their early signal looks like.

Agent:
Updated read: not a team dashboard at all. It's a personal experiment tracker. Confidence: ~60% — still missing: what "early signal" means and what done looks like.

Q:     Is the gap that you don't know which experiments exist, or that you can't see their results in one place?
GUESS: the second one. You have a list of experiments somewhere, but their results live in five different tools, and reconciling them by hand is what you're tired of.

User: First one actually. I literally don't have a list. They're spread across different docs.

Agent: <continues>

Two questions in, the agent has discovered the actual ask isn't "a dashboard." It's "a list." Different artifact, different scope, different work. The dashboard would have been wrong.

Interaction with Other Skills

  • idea-refine: downstream. If the confirmed intent is "I want X but I don't know how to scope it," hand off to idea-refine to generate variations against the now-explicit intent.
  • spec-driven-development: downstream. If the confirmed intent is concrete ("I want X for Y users with Z success criteria"), hand off to spec-driven-development to write it down.
  • planning-and-task-breakdown: two hops downstream of this skill (after the spec).
  • doubt-driven-development: opposite end of the timeline. Interview-me is pre-decision intent extraction; doubt-driven is post-decision artifact review. Both catch divergence, but at different moments.
  • source-driven-development: orthogonal. Interview-me clarifies what the user wants; SDD verifies framework facts. They don't compete.

Common Rationalizations

Rationalization Reality
"The ask is clear enough" If you can't write the user's desired outcome in one sentence right now, the ask isn't clear. Run Step 1 before deciding.
"Asking too many questions wastes their time" Time wasted by 4–6 targeted questions is small. Time wasted by building the wrong thing is enormous, and the user is the one bearing that cost.
"I'll figure it out as I build" Switching costs after code exists are 10x what they are now. Discovery during implementation is rework.
"They said 'whatever you think,' so I should just decide" "Whatever you think" is delegation, not decision. Re-ask with two concrete options as a choice.
"I should give them several options to pick from" Options work when the user knows what they want and is choosing between trade-offs. They don't know what they want yet. Listing options widens the search; asking narrows it.
"If I attach my guess, I'm leading them" Leading is the point. Reacting is faster than generating from scratch. The risk is sycophancy, not leading; mitigate by being visibly willing to be wrong.
"We've talked enough, I get it" Test it: can you predict their reaction to the next three questions? If not, you don't get it yet.
"The user said yes, we're done" If the yes followed a vague restate or an open-ended "sounds good," the yes is hollow. Restate concretely and re-confirm.

Red Flags

  • Three or more questions in a single message: that's batching, not interviewing
  • A question without your hypothesis attached: that's surveying, not committing
  • Accepting "whatever you think is best" as a terminal answer
  • Producing a spec, plan, or task list before the user has explicitly confirmed your restate
  • Invoking tools or starting downstream work immediately upon intent confirmation instead of stopping the turn
  • Questions framed as "what would be best practice?" instead of "what do you actually want?"
  • The user gives a sophistication-signaling answer ("scalable", "clean", "modern") and you accept it without probing whether it's what they actually want
  • Three or more rounds without your confidence visibly rising: you're asking the wrong questions, step back and reframe
  • A confidence number below ~70% with no reason attached: the user can't help close the gap if they don't know what's missing
  • Saving the intent doc before the user has confirmed (the doc itself implies a yes the user didn't give)
  • Skipping the "Out of scope" line in the restate (silent disagreement about non-goals is half of misalignment)

Verification

After applying interview-me:

  • An explicit hypothesis with a confidence number was stated in the first turn
  • Every confidence number below ~70% was accompanied by a one-line reason (what's still unresolved or missing)
  • Questions were asked one at a time, each with the agent's guess attached
  • At least one "what would you actually want if you didn't have to justify it?" probe ran when the user gave a sophistication-signaling or convention-signaling answer
  • A concrete restate (Outcome / User / Why now / Success / Constraint / Out of scope) was written back to the user
  • The user confirmed the restate with an explicit yes (not "whatever you think," not "sounds good," not silence)
  • At the stop point, the agent could predict reactions to the next three questions it would ask
  • Upon receiving explicit confirmation, stopped the turn immediately without invoking tools or starting downstream work
  • Any handoff to a downstream skill (idea-refine, spec-driven-development) was framed in terms of the confirmed intent, not the original underspecified ask
1---
2name: interview-me
3description: Extracts what the user actually wants instead of what they think they should want. Achieves this through one-question-at-a-time interview until ~95% confidence about the underlying intent. Use when an ask is underspecified ("build me X" without "for whom" or "why now"), when the user explicitly invokes ("interview me", "grill me", "are we sure?", "stress-test my thinking"), or when you catch yourself silently filling in ambiguous requirements before any plan, spec, or code exists.
4---
5 
6# Interview Me
7 
8## Overview
9 
10What people ask for and what they actually want are different things. They ask for "a dashboard" because that's what one asks for, not because a dashboard solves their problem. They say "make it faster" without a number to hit.
11 
12The cheapest moment to find this gap is before any plan, spec, or code exists. Once you've started building, switching costs are real, and the user will rationalize the wrong thing into a "good enough" thing. The misfit gets locked in.
13 
14This skill closes the gap before it costs anything. The other Define-phase skills assume you already know roughly what you want: `idea-refine` generates variations from an idea, `spec-driven-development` writes the requirements down, `doubt-driven-development` stress-tests a plan after you've drafted one. Interview-me is the part before all of those, where you ask one question at a time, with your best guess attached, until you can predict what the user is going to say before they say it.
15 
16## When to Use
17 
18Apply this skill when:
19 
20- The ask is missing at least one of: **who** the user is, **why** they want it, what **success** looks like, what the binding **constraint** is
21- The request is conventional rather than specific ("build me X", "make it faster") and you can't unpack the convention without guessing
22- You're tempted to start with assumptions you haven't surfaced
23- The user hasn't said which value they're optimizing for when two reasonable ones are in tension (simplicity vs. flexibility, cost vs. speed)
24- The user explicitly invokes: "interview me", "grill me", "before we start, are we sure?", "stress-test my thinking"
25 
26**When NOT to use:**
27 
28- The ask is unambiguous and self-contained ("rename this variable", "fix this typo")
29- The user has explicitly asked for speed over verification
30- Pure information requests ("how does X work?", "what does this code do?")
31- Mechanical operations (renames, formats, file moves)
32- You already have ≥95% confidence; re-read the stop condition below before assuming you don't
33 
34## Loading Constraints
35 
36This skill needs a live, responsive user. **Do not invoke in non-interactive contexts** like CI pipelines, scheduled runs, `/loop`, or autonomous-loop. If you're in one of those and the ask is underspecified, flag that as a blocker for the user instead of guessing.
37 
38## The Process
39 
40### Step 1: Hypothesize, with a confidence number
41 
42Before asking anything, write down your current best read of what the user wants in **one sentence**, plus an honest confidence number (0–100%):
43 
44```
45HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" was the convention that came to mind.
46CONFIDENCE: ~30% — missing: who it's for, what "metrics" means in context, and what success looks like
47```
48 
49The number forces honesty. If you wrote down a high number but can't actually predict the user's reactions to the next three questions you'd ask, the number is wrong. Start at the confidence level you can defend.
50 
51When confidence is below ~70%, append a brief reason on the same line — what's still unresolved or missing. This tells the user exactly what the interview needs to surface, and prevents the number from being a vague signal.
52 
53### Step 2: Ask one question at a time, each with a guess attached
54 
55Format:
56 
57```
58Q: <one focused question>
59GUESS: <your hypothesis for the answer, with the reasoning that produced it>
60```
61 
62Wait for the user to react before asking the next question.
63 
64**Why one at a time, not a batch:**
65 
66- The user can't react to your hypotheses if you bury them in a list
67- Batches encourage skim-reading and surface answers
68- The third question often depends on the answer to the first; asking them all at once locks in the wrong framing
69- The user's energy for thinking carefully is finite; spend it one question at a time
70 
71**Why attach a guess:**
72 
73- The user reacts faster to a wrong guess than they generate an answer from scratch
74- It commits you to a hypothesis you can be visibly wrong about, which keeps you honest
75- It surfaces *your* assumptions, which is what the interview is meant to expose
76 
77The risk here is a polite user agreeing with your guess to be agreeable. Mitigate by being visibly willing to be wrong, and occasionally guess in a direction you expect the user to push back on.
78 
79### Step 3: Listen for "want vs. should want"
80 
81The most dangerous answers are the ones where the user says what a thoughtful answer *sounds like* rather than what they actually want. Watch for:
82 
83- Answers that pattern-match best-practice talk ("I want it to be scalable", "clean architecture") without specifics
84- Answers that defer to convention ("the way most apps do it", "the standard approach")
85- Phrases like "I should probably…", "I think I'm supposed to…", "good engineering practice says…"
86- Buzzwords as goals — when "modern", "scalable", "robust" are the answer instead of a specific outcome
87 
88When you hear these, the question to ask is:
89 
90> *"If you didn't have to justify this to anyone, what would you actually want?"*
91 
92That single question often does more work than the previous five.
93 
94### Step 4: Restate intent in the user's own words
95 
96When your confidence is high, write back what you now think the user wants. Keep it tight (5–8 lines), use their language where possible, and structure it so the user can confirm or correct line by line:
97 
98```
99Here's what I now think you want:
100 
101- Outcome: <one line>
102- User: <one line — who benefits>
103- Why now: <one line — what changed>
104- Success: <one line — how we know it worked>
105- Constraint: <one line — the binding limit>
106- Out of scope: <one line — what we're explicitly not doing>
107 
108Yes / no / refine?
109```
110 
111Including "Out of scope" is non-negotiable. Half of misalignment is silent disagreement about what is *not* being built.
112 
113### Step 5: Confirm — explicit yes, not "whatever you think"
114 
115The gate is an explicit "yes." The following are **not** yes:
116 
117- "Whatever you think is best." → The user is delegating, which means they don't have 95% confidence either. Re-ask with two concrete options framed as a choice.
118- "Sounds good." → Ambiguous. Ask: "Anything you'd refine?" Silence isn't confirmation.
119- "Sure, let's go." → Often a polite exit, not an endorsement. Same follow-up.
120- Silence followed by "okay let's start." → The user has given up on the interview, not converged. Stop and ask whether you've missed something.
121 
122If they correct you, fold the correction in and restate. Loop until you get an explicit yes.
123 
124### Step 6: Terminal Turn & Stop Rule (CRITICAL)
125 
126When the user confirms the statement of intent with an explicit "yes":
127 
1281. **Deliver the confirmed Statement of Intent.**
1292. **Offer downstream paths** (offer to save it to `docs/intent/[topic].md`, draft a spec with `spec-driven-development`, or move to task planning after the spec).
1303. **STOP YOUR TURN IMMEDIATELY.** Do NOT invoke tools or start downstream work in this turn. Hand control back to the user to choose the next step.
131 
132### The 95% Confidence Stop
133 
134You're done when you can answer yes to this:
135 
136> *Can I predict the user's reaction to the next three questions I would ask?*
137 
138If yes, you have shared understanding. Stop interviewing and produce the restate. If no, you're not done; ask the next question.
139 
140This is a checkable test, not a vibe. It also has a floor: if you've gone several rounds and still can't predict, that's information about the ask, not a reason to keep grinding. Stop and tell the user: "I've asked X questions and I still can't predict your reactions. Something foundational is missing. Want to step back?"
141 
142## Output
143 
144The output of this skill is a **confirmed statement of intent**: the restate from Step 4, with an explicit yes from Step 5. That's the deliverable. Specs, plans, and task lists are downstream; they consume the intent this skill produces.
145 
146If the user wants the intent to persist (a multi-session project, a handoff to another collaborator), offer to save it to `docs/intent/[topic].md`. Only save if they confirm.
147 
148## Example
149 
150A short before-and-after.
151 
152**Without `interview-me`:**
153 
154```
155User: build me a dashboard for our metrics
156Agent: <starts proposing chart libraries and layouts>
157```
158 
159The agent has assumed: who it's for, what metrics, what "for our team" means, what success looks like. None of these are stated. Every assumption is a place the user can later say "that's not what I meant."
160 
161**With `interview-me`:**
162 
163```
164User: build me a dashboard for our metrics
165 
166Agent:
167HYPOTHESIS: You want a way to answer "how are we doing?" in standup, and "dashboard" came to mind because that's the conventional answer.
168CONFIDENCE: ~30% — missing: who it's for, what "metrics" are, and what success looks like
169 
170Q: When you say "how are we doing?", who's asking — you alone, the engineering team in standup, or up the chain (e.g., your manager, an exec, a board)?
171GUESS: engineering team in standup, because "we" usually scopes that way and standups are where this question gets asked. If it's for execs the metrics and the framing change a lot.
172 
173User: It's actually for me. I keep losing track of which experiments are running and what their early signal looks like.
174 
175Agent:
176Updated read: not a team dashboard at all. It's a personal experiment tracker. Confidence: ~60% — still missing: what "early signal" means and what done looks like.
177 
178Q: Is the gap that you don't know which experiments exist, or that you can't see their results in one place?
179GUESS: the second one. You have a list of experiments somewhere, but their results live in five different tools, and reconciling them by hand is what you're tired of.
180 
181User: First one actually. I literally don't have a list. They're spread across different docs.
182 
183Agent: <continues>
184```
185 
186Two questions in, the agent has discovered the actual ask isn't "a dashboard." It's "a list." Different artifact, different scope, different work. The dashboard would have been wrong.
187 
188## Interaction with Other Skills
189 
190- **`idea-refine`**: downstream. If the confirmed intent is "I want X but I don't know how to scope it," hand off to `idea-refine` to generate variations against the now-explicit intent.
191- **`spec-driven-development`**: downstream. If the confirmed intent is concrete ("I want X for Y users with Z success criteria"), hand off to `spec-driven-development` to write it down.
192- **`planning-and-task-breakdown`**: two hops downstream of this skill (after the spec).
193- **`doubt-driven-development`**: opposite end of the timeline. Interview-me is pre-decision intent extraction; doubt-driven is post-decision artifact review. Both catch divergence, but at different moments.
194- **`source-driven-development`**: orthogonal. Interview-me clarifies what the user wants; SDD verifies framework facts. They don't compete.
195 
196## Common Rationalizations
197 
198| Rationalization | Reality |
199|---|---|
200| "The ask is clear enough" | If you can't write the user's desired outcome in one sentence right now, the ask isn't clear. Run Step 1 before deciding. |
201| "Asking too many questions wastes their time" | Time wasted by 4–6 targeted questions is small. Time wasted by building the wrong thing is enormous, and the user is the one bearing that cost. |
202| "I'll figure it out as I build" | Switching costs after code exists are 10x what they are now. Discovery during implementation is rework. |
203| "They said 'whatever you think,' so I should just decide" | "Whatever you think" is delegation, not decision. Re-ask with two concrete options as a choice. |
204| "I should give them several options to pick from" | Options work when the user knows what they want and is choosing between trade-offs. They don't know what they want yet. Listing options widens the search; asking narrows it. |
205| "If I attach my guess, I'm leading them" | Leading is the point. Reacting is faster than generating from scratch. The risk is sycophancy, not leading; mitigate by being visibly willing to be wrong. |
206| "We've talked enough, I get it" | Test it: can you predict their reaction to the next three questions? If not, you don't get it yet. |
207| "The user said yes, we're done" | If the yes followed a vague restate or an open-ended "sounds good," the yes is hollow. Restate concretely and re-confirm. |
208 
209## Red Flags
210 
211- Three or more questions in a single message: that's batching, not interviewing
212- A question without your hypothesis attached: that's surveying, not committing
213- Accepting "whatever you think is best" as a terminal answer
214- Producing a spec, plan, or task list before the user has explicitly confirmed your restate
215- Invoking tools or starting downstream work immediately upon intent confirmation instead of stopping the turn
216- Questions framed as "what would be best practice?" instead of "what do you actually want?"
217- The user gives a sophistication-signaling answer ("scalable", "clean", "modern") and you accept it without probing whether it's what they actually want
218- Three or more rounds without your confidence visibly rising: you're asking the wrong questions, step back and reframe
219- A confidence number below ~70% with no reason attached: the user can't help close the gap if they don't know what's missing
220- Saving the intent doc before the user has confirmed (the doc itself implies a yes the user didn't give)
221- Skipping the "Out of scope" line in the restate (silent disagreement about non-goals is half of misalignment)
222 
223## Verification
224 
225After applying interview-me:
226 
227- [ ] An explicit hypothesis with a confidence number was stated in the first turn
228- [ ] Every confidence number below ~70% was accompanied by a one-line reason (what's still unresolved or missing)
229- [ ] Questions were asked one at a time, each with the agent's guess attached
230- [ ] At least one "what would you actually want if you didn't have to justify it?" probe ran when the user gave a sophistication-signaling or convention-signaling answer
231- [ ] A concrete restate (Outcome / User / Why now / Success / Constraint / Out of scope) was written back to the user
232- [ ] The user confirmed the restate with an explicit yes (not "whatever you think," not "sounds good," not silence)
233- [ ] At the stop point, the agent could predict reactions to the next three questions it would ask
234- [ ] Upon receiving explicit confirmation, stopped the turn immediately without invoking tools or starting downstream work
235- [ ] Any handoff to a downstream skill (`idea-refine`, `spec-driven-development`) was framed in terms of the confirmed intent, not the original underspecified ask
236 

Discussion

Alternatives

Also in User researchSee all 277 in Product →