Agent skill · AI & Agents

always-use-askquestion

Forces the agent to always use the AskQuestion tool for user prompts instead of conversational questions. Apply this whenever asking the user anything - questions, confirmations, choices, or clarifications. Never ask conversational questions when structured options are possible.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill always-use-askquestion --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Path: skills/agent/always-use-askquestion/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Always Use AskQuestion **CRITICAL RULE**: Whenever you need input from the user, **ALWAYS use the AskQuestion tool**. Never ask conversational questions when you can present structured options. ## When to Use AskQuestion Use AskQuestion for **ALL** of these situations: - **Yes/No questions**: "Should I proceed?" "Does this look good?" - **Multiple choice**: "Which option would you like?" "Select a file" - **Confirmations**: "Ready to commit?" "Create PR now?" - **Selections**: "Which branch?" "Pick a component" - **Preferences**: "How should I handle this?" "What format?" ## ⚠️ COMMON MISTAKE: Don't Batch Multiple Questions Into One String The most common error is cramming multiple distinct questions into a single prompt string: ❌ **WRONG**: ``` prompt: "I need several things: 1. What should I build? 2. Should I search the codebase? 3. Should I search online?" ``` ✅ **CORRECT** - Use separate AskQuestion calls or separate question objects: ``` Questions: - id: "requirements", prompt: "Ready to provide requirements?", options: [...] - id: "search_codebase", prompt: "Should I search the codebase?", options: [...] - id: "search_online", prompt: "Should I search online?", options: [.

What's inside
Steps it walks through
  1. When to Use AskQuestion
  2. ⚠️ COMMON MISTAKE: Don't Batch Multiple Questions Into One String
  3. Never Use Conversational Questions
  4. AskQuestion Structure
  5. When to Use Multiple Questions vs Separate Calls
  6. CRITICAL: Each Question Must Be Its Own Object
  7. Common Patterns
  8. Yes/No Question
  9. Multiple Choice
  10. With Context in Question
  11. Multiple Questions in One Call
  12. Multi-Select
  13. Converting Conversational to AskQuestion
  14. Example 1: Simple Confirmation
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the always-use-askquestion skill do?

Forces the agent to always use the AskQuestion tool for user prompts instead of conversational questions. Apply this whenever asking the user anything - questions, confirmations, choices, or clarifications. Never ask conversational questions when structured options are possible.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill always-use-askquestion --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going