interviewed-team-feature
Conducts a short adaptive interview (2-6 questions) to understand intent, then launches /team-feature with a compiled brief. Use this skill when the user asks to 'interview before building', 'discuss feature before implementation', 'ask me questions first', 'let's talk about what to build', 'I have an idea but need to flesh it out', or when the user's feature request is vague or ambiguous and would benefit from clarification before launching a full agent team. Also use when the user explicitly wants to be involved in scoping before implementation begins.
What this skill does
# Interviewed Team Feature — Adaptive Interview Before Implementation
Conduct a short adaptive interview to understand the user's intent, then compile a brief and hand off to `/team-feature`.
## Core Principle: Ask Only What AI Cannot Infer
`/team-feature` is fully autonomous — it scans the codebase, determines tech stack, finds patterns, classifies complexity, identifies risks, and plans tasks. It does NOT need help with technical details.
The interview exists for ONE reason: to capture **intent and business context** that no amount of code scanning can reveal. Every question must pass this test: "Can the AI figure this out from the codebase?" If yes — don't ask.
**What AI can infer (DO NOT ASK):** tech stack, affected files, architecture, risks, complexity, testing strategy, implementation approach, existing patterns.
**What AI cannot infer (ASK):** what to build, why it matters, who it's for, what success looks like, what's out of scope.
## Protocol
- One question at a time via `AskUserQuestion`
- Buttons (predefined options) wherever possible — minimize typing
- Skip questions already answered in the user's initial message
- Conversational tone, no technical jargon
- Total interview: 2-6 questions, under 5 minutes
**HARD GATE:** No implementation until brief is compiled and approved by the user.
---
## Phase 0: Project Study (parallel, while greeting user)
Launch researchers to understand the project. Use findings to generate smart button options.
```
// Launch in parallel:
Task(subagent_type="agent-teams:codebase-researcher",
prompt="Quick scan: tech stack, project structure, existing features (brief list), conventions.")
Task(subagent_type="agent-teams:codebase-researcher",
prompt="Find user-facing features: pages/screens, user roles, key user flows, settings.")
Task(subagent_type="agent-teams:codebase-researcher",
prompt="Architecture layers: data sources, main modules/domains, most complex areas, tests.")
```
While waiting, greet the user:
> I'll ask a few quick questions to make sure I build exactly what you need. Takes 2-3 minutes.
When researchers return, show a brief project summary and use findings to populate button options in subsequent questions.
---
## Phase 1: Core Questions (2-4 questions, adaptive)
### Q1 — Intent (always ask, unless initial message is already detailed)
**"What will change when this works — and for whom?"**
```
AskUserQuestion(
questions=[{
"question": "What should change when this feature works? Who will notice the difference?",
"header": "Feature",
"options": [
// Generate 2-3 options from researcher findings if relevant, e.g.:
// {"label": "Improve [existing feature]", "description": "Make [X] work better for [users]"},
// {"label": "Add new [capability]", "description": "Users will be able to [Y]"},
],
"multiSelect": false
}]
)
```
This question combines WHAT, WHY, and WHO in one. Situational framing forces concrete thinking — "reporting system" becomes "clients can export last month's invoices as PDF."
**If the answer is vague** (< 15 words or abstract like "improve the dashboard"):
Apply Branch B — propose 2-3 hypotheses as buttons:
```
AskUserQuestion(
questions=[{
"question": "I want to make sure I understand. Which of these is closest?",
"header": "Clarify",
"options": [
{"label": "[Hypothesis A]", "description": "[What this would mean concretely]"},
{"label": "[Hypothesis B]", "description": "[What this would mean concretely]"},
{"label": "[Hypothesis C]", "description": "[What this would mean concretely]"}
],
"multiSelect": false
}]
)
```
Generate hypotheses from: the user's words + researcher findings about the project.
### Q2 — Audience (only if Q1 didn't reveal who it's for)
**"Who will use this most?"**
Build options from researcher findings (existing user roles, pages, flows):
```
AskUserQuestion(
questions=[{
"question": "Who will use this most?",
"header": "Audience",
"options": [
// Dynamic from researcher findings, e.g.:
{"label": "All users", "description": "Everyone who uses the product"},
{"label": "[Role from project]", "description": "[Description]"},
{"label": "[Role from project]", "description": "[Description]"}
],
"multiSelect": true
}]
)
```
### Q3 — Success criteria (only if Q1 was abstract)
**"How will you know it's working?"**
If Q1 was specific ("clients can export invoices as PDF"), success criteria are implicit — SKIP. If Q1 was abstract ("improve the dashboard"), this question is essential.
```
AskUserQuestion(
questions=[{
"question": "How will you know this feature is working? What's the clearest sign of success?",
"header": "Success",
"options": [
{"label": "Users can do [X]", "description": "A specific action becomes possible"},
{"label": "Something gets faster/easier", "description": "An existing process improves"},
{"label": "Complaints stop", "description": "A known pain point goes away"},
{"label": "I'll describe it", "description": "I have specific criteria in mind"}
],
"multiSelect": false
}]
)
```
### Q4 — Exclusions (optional, ask when scope seems broad)
**"Anything that must NOT be included?"**
Without explicit exclusions, `/team-feature` builds the maximum possible scope. Ask this when the feature description sounds broad or could be interpreted expansively.
```
AskUserQuestion(
questions=[{
"question": "Anything that must NOT be part of this? (Things someone might assume are included but shouldn't be)",
"header": "Exclude",
"options": [
{"label": "Nothing specific", "description": "Build what makes sense"},
{"label": "Don't touch [X]", "description": "Leave [existing area] as is"},
{"label": "I'll list exclusions", "description": "I have specific things to exclude"}
],
"multiSelect": true
}]
)
```
---
## Phase 2: AI-Generated Follow-ups (0-2 questions)
After core questions, analyze all answers collected so far. If gaps or ambiguities remain, generate additional questions dynamically. These are NOT from a fixed list — generate them based on context.
### When to generate a follow-up
Analyze answers and researcher findings. Ask a follow-up ONLY when:
- **Ambiguity detected:** The answer could mean two very different things for implementation
- **Contradiction found:** User said X but the project context suggests Y
- **Critical unknown:** Something specific to THIS feature that the AI cannot infer and hasn't been covered
- **User seems to have more context:** Answer hints at deeper knowledge not yet shared
### How to generate follow-ups
Frame every follow-up as a choice with buttons, not an open question. Use AskUserQuestion with 2-4 options that represent the concrete alternatives the AI is weighing.
```
AskUserQuestion(
questions=[{
"question": "[Generated question about the specific gap]",
"header": "[Short label]",
"options": [
{"label": "[Option A]", "description": "[What this means for the build]"},
{"label": "[Option B]", "description": "[What this means for the build]"},
{"label": "Your call", "description": "Let the team decide"}
],
"multiSelect": false
}]
)
```
### Examples of good AI-generated follow-ups
- "You mentioned 'admin panel' — should admins see all users' data, or only their team's?" (scope ambiguity)
- "Your project has email notifications for orders. Should this feature also send notifications, or is it display-only?" (context from researcher)
- "This would change how [existing feature] works. Is that intentional, or should the new feature be separate?" (contradiction with codebase)
### What NOT to ask
- Anything about tech stack, architecture, or implementation (agents determine this)
- Risks or complexity (agents assess and mitigate)
- Timeline or deadlines (doesn't affect agent behavior)
- Effort level or priority (agentsRelated in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.