How this skill is triggered — by the user, by Claude, or both
Slash command
/ouroboros:interviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Socratic interview to crystallize vague requirements into clear specifications.
Socratic interview to crystallize vague requirements into clear specifications.
ooo interview [topic]
/ouroboros:interview [topic]
Trigger keywords: "interview me", "clarify requirements"
When the user invokes this skill:
Before starting the interview, check if a newer version is available:
# Fetch latest release tag from GitHub (timeout 3s to avoid blocking)
curl -s --max-time 3 https://api.github.com/repos/Q00/ouroboros/releases/latest | grep -o '"tag_name": "[^"]*"' | head -1
Compare the result with the current version in .claude-plugin/plugin.json.
AskUserQuestion:
{
"questions": [{
"question": "Ouroboros <latest> is available (current: <local>). Update before starting?",
"header": "Update",
"options": [
{"label": "Update now", "description": "Update plugin to latest version (restart required to apply)"},
{"label": "Skip, start interview", "description": "Continue with current version"}
],
"multiSelect": false
}]
}
claude plugin update ouroboros via Bash (update plugin/skills). If this fails, inform the user and stop — do NOT proceed to step 2.ouroboros-ai by running these in order:
uv tool list 2>/dev/null | grep "^ouroboros-ai " → if found, use uv tool upgrade ouroboros-aipipx list 2>/dev/null | grep "^ ouroboros-ai " → if found, use pipx upgrade ouroboros-aipip install --upgrade ouroboros-ai" (do NOT run pip automatically)ooo interview again."Then choose the execution path:
If the ouroboros_interview MCP tool is available, use it for persistent, structured interviews:
Start a new interview:
Tool: ouroboros_interview
Arguments:
initial_context: <user's topic or idea>
cwd: <current working directory>
The tool auto-detects brownfield projects from cwd and scans the codebase
before asking the first question. The first question will cite specific
files/patterns found in the project. Returns a session ID and question.
Present the question using AskUserQuestion:
After receiving a question from the tool, present it via AskUserQuestion with contextually relevant suggested answers:
{
"questions": [{
"question": "<question from MCP tool>",
"header": "Q<N>",
"options": [
{"label": "<option 1>", "description": "<brief explanation>"},
{"label": "<option 2>", "description": "<brief explanation>"}
],
"multiSelect": false
}]
}
Generating options — analyze the question and suggest 2-3 likely answers:
Relay the answer back:
Tool: ouroboros_interview
Arguments:
session_id: <session ID from step 1>
answer: <user's selected option or custom text>
The tool records the answer, generates the next question, and returns it.
Repeat steps 2-3 until the user says "done" or requirements are clear.
After completion, suggest the next step in 📍 Next: format:
📍 Next: ooo seed to crystallize these requirements into a specification
Advantages of MCP mode: State persists to disk (survives session restarts), ambiguity scoring, direct integration with ooo seed via session ID, structured input with AskUserQuestion.
If the MCP tool is NOT available, fall back to agent-based interview:
agents/socratic-interviewer.md and adopt that rolepyproject.toml, package.json, go.mod, etc.). If found, use Read/Grep to scan key files and incorporate findings into your questions as confirmation-style ("I see X. Should I assume Y?") rather than open-ended discovery ("Do you have X?")📍 Next: format:
📍 Next: ooo seed to crystallize these requirements into a specificationThe interviewer is ONLY a questioner:
User: ooo interview Build a REST API
Q1: What domain will this REST API serve?
User: It's for task management
Q2: What operations should tasks support?
User: Create, read, update, delete
Q3: Will tasks have relationships (e.g., subtasks, tags)?
User: Yes, tags for organizing
📍 Next: `ooo seed` to crystallize these requirements into a specification
User: ooo seed [Generate seed from interview]
After interview completion, use ooo seed to generate the Seed specification.
npx claudepluginhub d3vel0per/ouroborosCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
2plugins reuse this skill
First indexed Jul 13, 2026