Interview
Run a focused discovery interview before creating a PRD, writing a plan, shaping
UX, or starting implementation. Ground in the repo first, then run grilling for
the decisions that cannot be inferred.
This skill does not write code, create issues, or produce a final PRD by default.
It produces an interview brief. Recommend the next skill; do not invoke another
user-invoked skill.
Contract
Inputs:
- Rough feature idea, issue number, product decision, bug class, or architecture
question.
- Optional docs, links, transcripts, screenshots, or existing tracker context.
Outputs:
- Concise context scan summary.
- Settled decisions from
grilling.
- Final interview brief ready for
prd-writer, feature-intake, shape,
spec-first, or direct implementation.
Creates/Modifies:
- None by default.
- May write tracker comments, PRD bodies, or memory files only when explicitly
requested after the interview.
External Side Effects:
- None by default.
- Reads local repo context and, when needed, tracker or linked documentation.
- Writes external systems only after explicit approval.
Confirmation Required:
- Before creating or editing GitHub issues, PRDs, comments, memory files, or
other durable artifacts.
Delegates To:
grilling for the design-tree interview (frontier rounds, recommended answers).
domain-modeling when a term crystallizes or conflicts with CONTEXT.md.
Recommend next (do not invoke): prd-writer, feature-intake, shape,
spec-first, prd-quality-gate.
When To Use
- A user asks for
/interview, "grill me", "grill me with docs", or equivalent.
- A feature idea is too vague to turn directly into a PRD.
- Existing repo docs probably answer part of the question, but missing decisions
still need the user.
Skip this skill when:
- The user already provided a complete PRD or issue with acceptance criteria.
- The request is a small, obvious edit and the user said to implement directly.
- The only missing context is discoverable from the repo with no user decision.
Workflow
1. Ground In Repo Context
Read repo context before asking questions:
- Start with
.agents/README.md when present.
- Read relevant
.agents/memory/ files, especially .agents/memory/memory.md,
.agents/memory/context.md, and any task-relevant .agents/memory/system/
docs.
- Read
CONTEXT.md / CONTEXT-MAP.md and docs/agents/domain.md when present.
- Check recent
.agents/sessions/ entries only when they are relevant to the
topic.
- Read the applicable
AGENTS.override.md / AGENTS.md chain for routing and
repo rules. Read CLAUDE.md when the active workflow is Claude-specific.
- Search docs, README files, source code, and issues for the topic before
asking the user to repeat known context.
Do not look for a local plans directory under .agents; plans live on GitHub
issues and PR comments.
When the user provides external docs or says "with docs", read only the relevant
sections and keep a short source list for the final brief.
2. State What Is Known
Before asking questions, summarize the context scan in three compact bullets:
- What the repo already says.
- What is still ambiguous.
- Which downstream artifact this interview is likely feeding.
If the repo gives enough context, ask for confirmation instead of running a long
interview.
3. Run grilling
Run the grilling skill on the remaining decisions. It owns the design tree,
the frontier, recommended answers, and the facts-vs-decisions split.
When a term is resolved or conflicts with CONTEXT.md, run domain-modeling
inline.
4. Stop At The Right Time
Stop when one of these is true:
- The grilling frontier is empty and the brief can feed the next skill.
- Remaining questions are implementation details for the planner or executor.
- The user says "enough", "write it", "make the PRD", or equivalent.
- A blocker requires a separate research pass, stakeholder decision, or external
access.
Final Interview Brief
End with this structure:
## Interview Brief: <topic>
### Context Read
- <files, issues, docs, or links used>
### Problem And User
<who has the problem, where it appears, and why it matters>
### Desired Outcome
<what must be true after the work ships>
### Version-One Scope
- <included behavior or decision>
### Non-Goals
- <explicitly excluded behavior or decision>
### Constraints And Dependencies
- <technical, business, timing, data, security, or UX constraints>
### Acceptance Signals
- <reviewable or testable completion signal>
### Risks And Open Questions
- <unresolved item, or "None">
### Recommended Next Step
<prd-writer | feature-intake | shape | spec-first | direct implementation>
Keep the brief concise enough to paste into a tracker issue or hand to a PRD
writer. Include inference notes when a fact came from repo context rather than
direct user confirmation.
Tell the user to run the recommended next skill. Do not fire it.
Anti-Patterns
- Dump a long questionnaire before reading repo context.
- Turn the interview into a PRD unless the user asks.
- Ask questions whose answers are already in
.agents/memory/, root
agent files, docs, code, or tracker context.
- Save plans in local agent plan files.
- Start implementation during the interview.
- Invoke another user-invoked skill from this one.
1---2name: interview3description: Repo-grounded discovery interview that produces a handoff brief for PRD writing, feature intake, or planning.4---5
6# Interview
7
8Run a focused discovery interview before creating a PRD, writing a plan, shaping
9UX, or starting implementation. Ground in the repo first, then run `grilling` for
10the decisions that cannot be inferred.
11
12This skill does not write code, create issues, or produce a final PRD by default.
13It produces an interview brief. Recommend the next skill; do not invoke another
14user-invoked skill.
15
16## Contract
17
18Inputs:
19
20- Rough feature idea, issue number, product decision, bug class, or architecture
21 question.
22- Optional docs, links, transcripts, screenshots, or existing tracker context.
23
24Outputs:
25
26- Concise context scan summary.
27- Settled decisions from `grilling`.
28- Final interview brief ready for `prd-writer`, `feature-intake`, `shape`,
29 `spec-first`, or direct implementation.
30
31Creates/Modifies:
32
33- None by default.
34- May write tracker comments, PRD bodies, or memory files only when explicitly
35 requested after the interview.
36
37External Side Effects:
38
39- None by default.
40- Reads local repo context and, when needed, tracker or linked documentation.
41- Writes external systems only after explicit approval.
42
43Confirmation Required:
44
45- Before creating or editing GitHub issues, PRDs, comments, memory files, or
46 other durable artifacts.
47
48Delegates To:
49
50- `grilling` for the design-tree interview (frontier rounds, recommended answers).
51- `domain-modeling` when a term crystallizes or conflicts with `CONTEXT.md`.
52
53Recommend next (do not invoke): `prd-writer`, `feature-intake`, `shape`,
54`spec-first`, `prd-quality-gate`.
55
56## When To Use
57
58- A user asks for `/interview`, "grill me", "grill me with docs", or equivalent.
59- A feature idea is too vague to turn directly into a PRD.
60- Existing repo docs probably answer part of the question, but missing decisions
61 still need the user.
62
63Skip this skill when:
64
65- The user already provided a complete PRD or issue with acceptance criteria.
66- The request is a small, obvious edit and the user said to implement directly.
67- The only missing context is discoverable from the repo with no user decision.
68
69## Workflow
70
71### 1. Ground In Repo Context
72
73Read repo context before asking questions:
74
75- Start with `.agents/README.md` when present.
76- Read relevant `.agents/memory/` files, especially `.agents/memory/memory.md`,
77 `.agents/memory/context.md`, and any task-relevant `.agents/memory/system/`
78 docs.
79- Read `CONTEXT.md` / `CONTEXT-MAP.md` and `docs/agents/domain.md` when present.
80- Check recent `.agents/sessions/` entries only when they are relevant to the
81 topic.
82- Read the applicable `AGENTS.override.md` / `AGENTS.md` chain for routing and
83 repo rules. Read `CLAUDE.md` when the active workflow is Claude-specific.
84- Search docs, README files, source code, and issues for the topic before
85 asking the user to repeat known context.
86
87Do not look for a local plans directory under `.agents`; plans live on GitHub
88issues and PR comments.
89
90When the user provides external docs or says "with docs", read only the relevant
91sections and keep a short source list for the final brief.
92
93### 2. State What Is Known
94
95Before asking questions, summarize the context scan in three compact bullets:
96
97- What the repo already says.
98- What is still ambiguous.
99- Which downstream artifact this interview is likely feeding.
100
101If the repo gives enough context, ask for confirmation instead of running a long
102interview.
103
104### 3. Run grilling
105
106Run the `grilling` skill on the remaining decisions. It owns the design tree,
107the **frontier**, recommended answers, and the facts-vs-decisions split.
108
109When a term is resolved or conflicts with `CONTEXT.md`, run `domain-modeling`
110inline.
111
112### 4. Stop At The Right Time
113
114Stop when one of these is true:
115
116- The grilling **frontier is empty** and the brief can feed the next skill.
117- Remaining questions are implementation details for the planner or executor.
118- The user says "enough", "write it", "make the PRD", or equivalent.
119- A blocker requires a separate research pass, stakeholder decision, or external
120 access.
121
122## Final Interview Brief
123
124End with this structure:
125
126```markdown
127## Interview Brief: <topic>
128
129### Context Read
130- <files, issues, docs, or links used>
131
132### Problem And User
133<who has the problem, where it appears, and why it matters>
134
135### Desired Outcome
136<what must be true after the work ships>
137
138### Version-One Scope
139- <included behavior or decision>
140
141### Non-Goals
142- <explicitly excluded behavior or decision>
143
144### Constraints And Dependencies
145- <technical, business, timing, data, security, or UX constraints>
146
147### Acceptance Signals
148- <reviewable or testable completion signal>
149
150### Risks And Open Questions
151- <unresolved item, or "None">
152
153### Recommended Next Step
154<prd-writer | feature-intake | shape | spec-first | direct implementation>
155```
156
157Keep the brief concise enough to paste into a tracker issue or hand to a PRD
158writer. Include inference notes when a fact came from repo context rather than
159direct user confirmation.
160
161Tell the user to run the recommended next skill. Do not fire it.
162
163## Anti-Patterns
164
165- Dump a long questionnaire before reading repo context.
166- Turn the interview into a PRD unless the user asks.
167- Ask questions whose answers are already in `.agents/memory/`, root
168 agent files, docs, code, or tracker context.
169- Save plans in local agent plan files.
170- Start implementation during the interview.
171- Invoke another user-invoked skill from this one.