Ask Questions If Underspecified
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
When to Use
Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear.
When NOT to Use
Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details.
Goal
Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or the user explicitly approves proceeding with stated assumptions).
Workflow
1) Decide whether the request is underspecified
Treat a request as underspecified if after exploring how to perform the work, some or all of the following are not clear:
- Define the objective (what should change vs stay the same)
- Define "done" (acceptance criteria, examples, edge cases)
- Define scope (which files/components/users are in/out)
- Define constraints (compatibility, performance, style, deps, time)
- Identify environment (language/runtime versions, OS, build/test runner)
- Clarify safety/reversibility (data migration, rollout/rollback, risk)
If multiple plausible interpretations exist, assume it is underspecified.
2) Ask must-have questions first (keep it small)
Ask 1-5 questions in the first pass. Prefer questions that eliminate whole branches of work.
Make questions easy to answer:
- Optimize for scannability (short, numbered questions; avoid paragraphs)
- Offer multiple-choice options when possible
- Suggest reasonable defaults when appropriate (mark them clearly as the default/recommended choice; bold the recommended choice in the list, or if you present options in a code block, put a bold "Recommended" line immediately above the block and also tag defaults inside the block)
- Include a fast-path response (e.g., reply
defaults to accept all recommended/default choices)
- Include a low-friction "not sure" option when helpful (e.g., "Not sure - use default")
- Separate "Need to know" from "Nice to know" if that reduces friction
- Structure options so the user can respond with compact decisions (e.g.,
1b 2a 3c); restate the chosen options in plain language to confirm
3) Pause before acting
Until must-have answers arrive:
- Do not run commands, edit files, or produce a detailed plan that depends on unknowns
- Do perform a clearly labeled, low-risk discovery step only if it does not commit you to a direction (e.g., inspect repo structure, read relevant config files)
If the user explicitly asks you to proceed without answers:
- State your assumptions as a short numbered list
- Ask for confirmation; proceed only after they confirm or correct them
4) Confirm interpretation, then proceed
Once you have answers, restate the requirements in 1-3 sentences (including key constraints and what success looks like), then start work.
Question templates
- "Before I start, I need: (1) ..., (2) ..., (3) .... If you don't care about (2), I will assume ...."
- "Which of these should it be? A) ... B) ... C) ... (pick one)"
- "What would you consider 'done'? For example: ..."
- "Any constraints I must follow (versions, performance, style, deps)? If none, I will target the existing project defaults."
- Use numbered questions with lettered options and a clear reply format
1) Scope?
a) Minimal change (default)
b) Refactor while touching the area
c) Not sure - use default
2) Compatibility target?
a) Current project defaults (default)
b) Also support older versions: <specify>
c) Not sure - use default
Reply with: defaults (or 1a 2a)
Anti-patterns
- Don't ask questions you can answer with a quick, low-risk discovery read (e.g., configs, existing patterns, docs).
- Don't ask open-ended questions if a tight multiple-choice or yes/no would eliminate ambiguity faster.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: ask-questions-if-underspecified3description: ALWAYS use this when the request matches ASK Questions IF Underspecified: Clarify requirements before implementing.4---56# Ask Questions If Underspecified78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718## When to Use19Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear.2021## When NOT to Use2223Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details.2425## Goal2627Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or the user explicitly approves proceeding with stated assumptions).2829## Workflow3031### 1) Decide whether the request is underspecified3233Treat a request as underspecified if after exploring how to perform the work, some or all of the following are not clear:34- Define the objective (what should change vs stay the same)35- Define "done" (acceptance criteria, examples, edge cases)36- Define scope (which files/components/users are in/out)37- Define constraints (compatibility, performance, style, deps, time)38- Identify environment (language/runtime versions, OS, build/test runner)39- Clarify safety/reversibility (data migration, rollout/rollback, risk)4041If multiple plausible interpretations exist, assume it is underspecified.4243### 2) Ask must-have questions first (keep it small)4445Ask 1-5 questions in the first pass. Prefer questions that eliminate whole branches of work.4647Make questions easy to answer:48- Optimize for scannability (short, numbered questions; avoid paragraphs)49- Offer multiple-choice options when possible50- Suggest reasonable defaults when appropriate (mark them clearly as the default/recommended choice; bold the recommended choice in the list, or if you present options in a code block, put a bold "Recommended" line immediately above the block and also tag defaults inside the block)51- Include a fast-path response (e.g., reply `defaults` to accept all recommended/default choices)52- Include a low-friction "not sure" option when helpful (e.g., "Not sure - use default")53- Separate "Need to know" from "Nice to know" if that reduces friction54- Structure options so the user can respond with compact decisions (e.g., `1b 2a 3c`); restate the chosen options in plain language to confirm5556### 3) Pause before acting5758Until must-have answers arrive:59- Do not run commands, edit files, or produce a detailed plan that depends on unknowns60- Do perform a clearly labeled, low-risk discovery step only if it does not commit you to a direction (e.g., inspect repo structure, read relevant config files)6162If the user explicitly asks you to proceed without answers:63- State your assumptions as a short numbered list64- Ask for confirmation; proceed only after they confirm or correct them6566### 4) Confirm interpretation, then proceed6768Once you have answers, restate the requirements in 1-3 sentences (including key constraints and what success looks like), then start work.6970## Question templates7172- "Before I start, I need: (1) ..., (2) ..., (3) .... If you don't care about (2), I will assume ...."73- "Which of these should it be? A) ... B) ... C) ... (pick one)"74- "What would you consider 'done'? For example: ..."75- "Any constraints I must follow (versions, performance, style, deps)? If none, I will target the existing project defaults."76- Use numbered questions with lettered options and a clear reply format7778```text791) Scope?80a) Minimal change (default)81b) Refactor while touching the area82c) Not sure - use default832) Compatibility target?84a) Current project defaults (default)85b) Also support older versions: <specify>86c) Not sure - use default8788Reply with: defaults (or 1a 2a)89```9091## Anti-patterns9293- Don't ask questions you can answer with a quick, low-risk discovery read (e.g., configs, existing patterns, docs).94- Don't ask open-ended questions if a tight multiple-choice or yes/no would eliminate ambiguity faster.9596## Limitations97- Use this skill only when the task clearly matches the scope described above.98- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.99- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.