asking-questions
Asking Questions
Purpose
Ask clarifying questions when the answer materially changes what you'll build. This skill helps identify when to ask, how to structure questions effectively, and when to proceed autonomously.
When to Use
Ask questions for:
- Ambiguous implementation choices - Multiple valid technical approaches (middleware vs wrapper functions, library selection, architectural patterns)
- Missing critical context - Specific information needed (database type, deployment platform, credential management)
- Potentially destructive actions - Requests that could be interpreted dangerously ("clean up files" = delete vs archive)
- Scope clarification - Vague terms like "refactor," "optimize," or "improve"
- Conflicting requirements - Goals that may work against each other ("make it faster" + "add extensive logging")
- Technical trade-offs - Solutions with different costs/benefits depending on priorities
When NOT to Use
Don't ask when:
- Request is clear and unambiguous - One obvious implementation path
- You can determine the answer from context - Codebase patterns, project structure, existing conventions
- Over-clarification - Questions that don't materially affect implementation
- Standard engineering practices - Established patterns already in the codebase
Question Structure
Template
[Context: What you found/analyzed]
[Present 2-5 specific options with brief trade-offs]
[Direct question asking for preference]
[Optional: Offer to make reasonable default choice]
Guidelines
-
Acknowledge understanding first - Show you've analyzed the situation
- "I found your API endpoints and see you're using Express..."
-
Present clear options - Offer 2-5 specific choices with brief context
I can implement this in several ways: 1. **Global middleware** - Catches all errors centrally (simplest) 2. **Wrapper functions** - More granular control per endpoint 3. **Custom error classes** - Typed errors with status codes -
Ask directly - Clear question that guides decision
- "Which approach fits your needs?"
-
Offer autonomy (optional) - For less critical decisions
- "I can implement option 2 as it's the safest, or let me know if you prefer something else."
Progressive Disclosure
Layer questions instead of asking everything upfront:
Good ✓
- First: "For real-time updates, should I use WebSockets, Server-Sent Events, or polling?"
- Then: "For WebSockets, do you want Socket.io (easier) or native (lighter)?"
Bad ✗
- "For real-time updates should I use WebSockets or SSE or polling and if WebSockets should I use Socket.io or native and should I implement reconnection and what about authentication and..."
Examples
Good ✓
"I see you're using JWT authentication. To add refresh tokens, I can:
- httpOnly cookies - More secure, harder to XSS
- localStorage - Simpler, works with mobile apps
- In-memory only - Most secure, lost on refresh
What works best for your use case?"
Bad ✗
"How should I implement the authentication refresh token storage mechanism considering security implications, XSS vulnerabilities, mobile compatibility, UX impacts, and compliance considerations?"
Too verbose, no clear options, asks everything at once
Good ✓
"You mentioned 'clean up migrations.' Do you want me to archive them to /old-migrations or delete them entirely? (Note: deletion can break databases that haven't run them yet)"
Bad ✗
"What do you mean by clean up?"
Too vague, doesn't guide the decision
After Receiving an Answer
- Acknowledge - Confirm you understood their choice
- Proceed immediately - Don't ask if they want you to continue
- Apply preferences - If they chose "security first" once, lean that direction for similar future choices
Key Principle
Ask only when the answer materially changes what you'll build. Avoid building the wrong thing, not asking questions for the sake of asking.
More from oaustegard/claude-skills
developing-preact
Specialized Preact development skill for standards-based web applications with native-first architecture and minimal dependency footprint. Use when building Preact projects, particularly those involving data visualization, interactive applications, single-page apps with HTM syntax, Web Components integration, CSV/JSON data parsing, WebGL shader visualizations, or zero-build solutions with vendored ESM imports.
104reviewing-ai-papers
Analyze AI/ML technical content (papers, articles, blog posts) and extract actionable insights filtered through enterprise AI engineering lens. Use when user provides URL/document for AI/ML content analysis, asks to "review this paper", or mentions technical content in domains like RAG, embeddings, fine-tuning, prompt engineering, LLM deployment.
79exploring-codebases
>-
62mapping-codebases
Generate navigable code maps for unfamiliar codebases. Extracts exports/imports via AST (tree-sitter) to create _MAP.md files per directory showing classes, functions, methods with signatures and line numbers. Use when exploring repositories, understanding project structure, analyzing unfamiliar code, or before modifications. Triggers on "map this codebase", "explore repo", "understand structure", "what does this project contain", or when starting work on an unfamiliar repository.
48accessing-github-repos
GitHub repository access in containerized environments using REST API and credential detection. Use when git clone fails, or when accessing private repos/writing files via API.
43remembering
Advanced memory operations reference. Basic patterns (profile loading, simple recall/remember) are in project instructions. Consult this skill for background writes, memory versioning, complex queries, edge cases, session scoping, retention management, type-safe results, proactive memory hints, GitHub access detection, autonomous curation, episodic scoring, and decision traces.
41