/dev-deep-interview
Socratic questioning to crystallize vague requirements into a testable spec. Use when input is ambiguous, when the user asks for "deep interview", or before dev-autopilot if the brief is too broad. Pairs with @echo-analyst.
$ npx -y skills add evolution-foundation/evo-nexus --skill dev-deep-interview --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/dev-deep-interview
Context preview
The summary Claude sees to decide when to auto-load this skill.
Socratic questioning to crystallize vague requirements into a testable spec. Use when input is ambiguous, when the user asks for "deep interview", or before dev-autopilot if the brief is too broad. Pairs with @echo-analyst.
SKILL.md
dev-deep-interview.SKILL.mdname: dev-deep-interview
description: Socratic questioning to crystallize vague requirements into a testable spec. Use when input is ambiguous, when the user asks for "deep interview", or before dev-autopilot if the brief is too broad. Pairs with @echo-analyst.
Dev Deep Interview
Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.
Deep Interview transforms vague ideas into concrete, testable specifications through Socratic questioning. It is the front gate of any high-stakes work — refusing to proceed until ambiguity is below an acceptable threshold.
Use When
- User has a vague idea ("build me something cool", "improve performance", "fix the UX")
- Before `dev-autopilot` when input lacks file paths, function names, or concrete anchors
- User explicitly asks for "deep interview", "interview me", "ask me questions first"
- High-stakes work where the cost of misunderstanding is high (auth, billing, migrations)
Do Not Use When
- User has already provided a detailed spec or plan
- Task is trivially clear (typo fix, single-line change)
- User says "just do it" or "skip the questions"
Goal
Drive ambiguity below 20% before any code or plan is generated. Output a spec that an executor agent can implement without further clarification.
Workflow
Phase 1 — Initial Assessment
Read the user's input. Score it on these dimensions (1-5 each, 5 = clear):
- **Domain clarity**: do you understand WHAT this is about?
- **Scope**: do you know what is in/out of scope?
- **Success criteria**: do you know what "done" looks like?
- **Constraints**: do you know technical/business limits?
- **Stakeholders**: do you know who cares and what they want?
If average ≥ 4: skip interview, proceed. If average < 4: enter interview loop.
Phase 2 — Socratic Loop
Ask **one question at a time** using AskUserQuestion (with 2-4 multiple-choice options when possible). Each question must:
- Target the lowest-scoring dimension
- Be answerable in under a sentence (or by clicking an option)
- Eliminate at least one ambiguity
Common question types:
- **Scope**: "Should X be included or out of scope?"
- **Trade-off**: "Optimize for speed or simplicity?"
- **Stakeholder**: "Who is the primary user — admin, customer, internal?"
- **Constraint**: "Any budget/time/tech constraints?"
- **Success**: "How will we know this worked?"
Stop the loop when all dimensions ≥ 4 OR after 8 questions (whichever first — long interviews lose user patience).
Phase 3 — Spec Output
Write the spec to `workspace/projects/specs/[C]deep-interview-{name}.md` with this structure:
# Deep Interview Spec — {topic}
**Date:** {iso}
**Ambiguity score:** {avg}/5
## Context
[1-2 sentences on the problem and why it matters]
## In Scope
- [item 1]
- [item 2]
## Out of Scope
- [explicit non-goals]
## Success Criteria
- [testable criterion 1]
- [testable criterion 2]
## Constraints
- [tech / business / time]
## Open Questions
- [items where ambiguity remains, with risk level]
## Suggested Next Step
- `dev-autopilot` (if all dimensions ≥ 4)
- `dev-plan` (if some dimensions still < 4 but you want to start scoping)
- Manual implementation (if the spec is small enough)Rules
- **One question at a time.** Never batch.
- **Use clickable options** (AskUserQuestion) whenever possible.
- **Don't ask codebase facts** — spawn `@scout-explorer` to look them up.
- **Stop at 8 questions.** Longer kills user patience.
- **Always output a spec file**, even if interview was short.
Pairs With
- `@echo-analyst` — for deeper requirements gap analysis after the interview
- `dev-autopilot` — natural next step once spec is ready
- `dev-plan` — if you want to scope further before execution
Failure Modes To Avoid
- **Interrogation**: 15 questions in a row. Stop at 8.
- **Codebase questions**: "What framework do you use?" → look it up yourself.
- **Vague answers accepted**: "I want it fast" → push: "Faster than what — the current 2s, or the user-perceived 200ms?"
- **No spec output**: interview without persistence is wasted.
Read more
name: dev-deep-interview description: Socratic questioning to crystallize vague requirements into a testable spec. Use when input is ambiguous, when the user asks for "deep interview", or before dev-autopilot if the brief is too broad. Pairs with @echo-analyst.
Dev Deep Interview
Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.
Deep Interview transforms vague ideas into concrete, testable specifications through Socratic questioning. It is the front gate of any high-stakes work — refusing to proceed until ambiguity is below an acceptable threshold.
Use When
- User has a vague idea ("build me something cool", "improve performance", "fix the UX")
- Before `dev-autopilot` when input lacks file paths, function names, or concrete anchors
- User explicitly asks for "deep interview", "interview me", "ask me questions first"
- High-stakes work where the cost of misunderstanding is high (auth, billing, migrations)
Do Not Use When
- User has already provided a detailed spec or plan
- Task is trivially clear (typo fix, single-line change)
- User says "just do it" or "skip the questions"
Goal
Drive ambiguity below 20% before any code or plan is generated. Output a spec that an executor agent can implement without further clarification.
Workflow
Phase 1 — Initial Assessment
Read the user's input. Score it on these dimensions (1-5 each, 5 = clear):
- **Domain clarity**: do you understand WHAT this is about?
- **Scope**: do you know what is in/out of scope?
- **Success criteria**: do you know what "done" looks like?
- **Constraints**: do you know technical/business limits?
- **Stakeholders**: do you know who cares and what they want?
If average ≥ 4: skip interview, proceed. If average < 4: enter interview loop.
Phase 2 — Socratic Loop
Ask **one question at a time** using AskUserQuestion (with 2-4 multiple-choice options when possible). Each question must:
- Target the lowest-scoring dimension
- Be answerable in under a sentence (or by clicking an option)
- Eliminate at least one ambiguity
Common question types:
- **Scope**: "Should X be included or out of scope?"
- **Trade-off**: "Optimize for speed or simplicity?"
- **Stakeholder**: "Who is the primary user — admin, customer, internal?"
- **Constraint**: "Any budget/time/tech constraints?"
- **Success**: "How will we know this worked?"
Stop the loop when all dimensions ≥ 4 OR after 8 questions (whichever first — long interviews lose user patience).
Phase 3 — Spec Output
Write the spec to `workspace/projects/specs/[C]deep-interview-{name}.md` with this structure:
# Deep Interview Spec — {topic}
**Date:** {iso}
**Ambiguity score:** {avg}/5
## Context
[1-2 sentences on the problem and why it matters]
## In Scope
- [item 1]
- [item 2]
## Out of Scope
- [explicit non-goals]
## Success Criteria
- [testable criterion 1]
- [testable criterion 2]
## Constraints
- [tech / business / time]
## Open Questions
- [items where ambiguity remains, with risk level]
## Suggested Next Step
- `dev-autopilot` (if all dimensions ≥ 4)
- `dev-plan` (if some dimensions still < 4 but you want to start scoping)
- Manual implementation (if the spec is small enough)Rules
- **One question at a time.** Never batch.
- **Use clickable options** (AskUserQuestion) whenever possible.
- **Don't ask codebase facts** — spawn `@scout-explorer` to look them up.
- **Stop at 8 questions.** Longer kills user patience.
- **Always output a spec file**, even if interview was short.
Pairs With
- `@echo-analyst` — for deeper requirements gap analysis after the interview
- `dev-autopilot` — natural next step once spec is ready
- `dev-plan` — if you want to scope further before execution
Failure Modes To Avoid
- **Interrogation**: 15 questions in a row. Stop at 8.
- **Codebase questions**: "What framework do you use?" → look it up yourself.
- **Vague answers accepted**: "I want it fast" → push: "Faster than what — the current 2s, or the user-perceived 200ms?"
- **No spec output**: interview without persistence is wasted.
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

