Skip to main content
ClaudeWave
Skill17k repo starsupdated 6d ago

interview-script

The interview-script skill generates a structured customer interview guide built on "The Mom Test" principles, featuring warm-up questions to establish rapport, core exploration sections using Jobs to Be Done methodology to uncover past behaviors and pain points, and wrap-up sections to clarify next steps. Use this skill when preparing for user research sessions, validating product assumptions, or creating discovery interview guides that prioritize learning actual user behaviors over gathering opinions.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/phuryn/pm-skills /tmp/interview-script && cp -r /tmp/interview-script/pm-product-discovery/skills/interview-script ~/.claude/skills/interview-script
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

## Customer Interview Script

Create a structured interview script that surfaces real insights, not just opinions. Follows "The Mom Test" principles — ask about their life, not your idea.

### Domain Context

Customer interviews are one source in **Stage 1 (Explore)** of continuous discovery. Other sources: stakeholder interviews, usage analytics, data analytics, surveys, market trends, SEO/SEM analysis. The PM needs direct access to users, stakeholders, engineers, and designers — "without proxies." The **Product Trio** (PM + Designer + Engineer — Teresa Torres) should work together on discovery, not just the PM alone.

### Context

You are preparing a customer interview script for research on **$ARGUMENTS**.

If the user provides files (personas, hypothesis lists, product briefs, or previous interview notes), read them first.

### Instructions

1. **Clarify research objectives**:
   - What specific questions does the team need answered?
   - What decisions will this research inform?
   - What assumptions need validation?

2. **Create the interview script** with these sections:

   ### Opening (2-3 min)
   - Introduce yourself and the purpose (learning, not selling)
   - Set expectations: "There are no right or wrong answers. We're here to learn from your experience."
   - Ask permission to record (if applicable)
   - Confirm time available

   ### Warm-Up: Context & Background (5 min)
   - "Tell me about your role and what a typical day/week looks like."
   - "How long have you been doing [activity related to the product area]?"
   - Goal: Build rapport and understand their context

   ### Core Exploration: Jobs to Be Done (15-20 min)

   **Current situation and behavior** (past tense, specific instances):
   - "Walk me through the last time you [did the thing we're exploring]. What happened?"
   - "What tools or methods did you use?"
   - "How long did it take? Who else was involved?"

   **Pain points and frustrations** (observe, don't lead):
   - "What was the hardest part about that?"
   - "If you could wave a magic wand, what would change?"
   - "What have you tried to solve this? What happened?"

   **Desired outcomes** (their words, not yours):
   - "What does 'good' look like for you in this area?"
   - "How would you know if this was working well?"

   **Willingness to pay / priority** (skin in the game):
   - "How much time/money do you currently spend on this?"
   - "Have you looked for a better solution? What did you find?"
   - "What would you give up to have this solved?"

   ### Probing Techniques
   Use these when you hit an interesting thread:
   - **"Tell me more about that"** — opens up any topic
   - **"Why?"** (asked gently, 2-3 times) — gets to root causes
   - **"Can you give me a specific example?"** — moves from opinions to facts
   - **"What happened next?"** — follows the story
   - **"How did that make you feel?"** — captures emotional intensity

   ### The Mom Test Rules
   - Ask about **their life**, not your idea
   - Ask about **the past**, not the future ("Would you use X?" is useless)
   - **Talk less, listen more** — aim for 80/20 split
   - **Never pitch** during the interview
   - Look for **strong emotions** — they signal real pain or delight
   - **Compliments are noise** — "That sounds cool!" tells you nothing

   ### Wrap-Up (3-5 min)
   - "Is there anything I didn't ask that you think is important?"
   - "Who else should I talk to about this?"
   - Thank them for their time
   - Share next steps (if any)

3. **Customize the script**: Adapt questions to the specific product area, persona, and research objectives. Add or remove sections based on the interview length available.

4. **Include a note-taking template**:
   ```
   Participant: [Name / ID]
   Date: [Date]
   Key Jobs: [What they're trying to accomplish]
   Current Solution: [What they use today]
   Biggest Pain: [Their #1 frustration]
   Desired Outcome: [What success looks like]
   Willingness to Pay: [How much they invest / would invest]
   Surprise Finding: [Something unexpected]
   Follow-up: [Next steps]
   ```

Save as markdown. Include both the script and the note-taking template.

---

### Further Reading

- [User Interviews: The Ultimate Guide to Research Interviews](https://www.productcompass.pm/p/interviewing-customers-the-ultimate)
- [Continuous Product Discovery Masterclass (CPDM)](https://www.productcompass.pm/p/cpdm) (video course)
intended-vs-implementedSkill

The method for finding the gap between what a system is supposed to do and what the code actually does — the class of bug generic scanners miss because they have no model of intent. Defines what counts as documented intent, what counts as implementation evidence, which mismatches matter, and how to avoid hand-wavy findings. Use when auditing AI-built code, reviewing access control against documented permissions, or checking whether a codebase matches its own documentation.

shipping-artifactsSkill

The durable documentation set that makes an AI-built (vibe-coded) app reviewable before shipping. A small core every app needs — architecture, user/permission flows, permissions, variables/secrets, and a test-coverage map — plus conditional docs added only when they apply: emails, scheduled work, SEO, and embedded agents/automation. Defines what each doc must capture and how a reviewer or auditor uses it. Use when documenting a codebase for handoff, mapping user journeys and trust-boundary crossings, planning test coverage, or preparing for a security or performance audit.

ab-test-analysisSkill

Analyze A/B test results with statistical significance, sample size validation, confidence intervals, and ship/extend/stop recommendations. Use when evaluating experiment results, checking if a test reached significance, interpreting split test data, or deciding whether to ship a variant.

cohort-analysisSkill

Perform cohort analysis on user engagement data — retention curves, feature adoption trends, and segment-level insights. Use when analyzing user retention by cohort, studying feature adoption over time, investigating churn patterns, or identifying engagement trends.

sql-queriesSkill

Generate SQL queries from natural language descriptions. Supports BigQuery, PostgreSQL, MySQL, and other dialects. Reads database schemas from uploaded diagrams or documentation. Use when writing SQL, building data reports, exploring databases, or translating business questions into queries.

brainstorm-okrsSkill

Brainstorm team-level OKRs aligned with company objectives — qualitative objectives with measurable key results. Use when setting quarterly OKRs, aligning team goals with company strategy, drafting objectives, or learning how to write effective OKRs.

create-prdSkill

Create a Product Requirements Document using a comprehensive 8-section template covering problem, objectives, segments, value propositions, solution, and release planning. Use when writing a PRD, documenting product requirements, preparing a feature spec, or reviewing an existing PRD.

dummy-datasetSkill

Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Use when creating test data, building mock datasets, or generating sample data for development and demos.