research-summarizer
User research synthesis and communication skill for PMs, researchers, and design leads. Takes raw research artifacts (interview transcripts, survey results, observations, support tickets, win/loss notes) and produces structured insights, themed findings, and decision-ready briefs. Use when synthesizing a batch of user interviews, building a findings brief, separating signal from anecdote, or communicating research to stakeholders who didn't participate.
What this skill does
# Research Summarizer
A skill focused on **synthesizing and communicating** research — the part
that comes after you've collected the data. Distinct from the research
collection skills which guide interview design, recruiting, and protocol.
This skill assumes you have raw inputs (transcripts, notes, survey
responses) and need to turn them into trustworthy insights that drive
product decisions.
## When to use this skill
- Synthesizing a batch of **user interviews** (typically 5-30)
- Pulling **themes from open-text survey responses**
- Synthesizing **support tickets** for product-truth analysis
- Building a **findings brief** for stakeholders
- Separating **signal from anecdote** in qualitative data
- Auditing existing **research summaries** for bias and reliability
- Preparing a **research readout** for execs / cross-functional teams
## Inputs the advisor expects
- Type of research artifacts (interviews, surveys, tickets, observations, sales notes)
- Volume and recency
- Research question(s) the synthesis is answering
- Audience for the output (PM team / exec / engineering)
- Decision the output should inform
## Workflows
### Workflow 1 — Organize and theme raw research
1. Capture raw research items (one per row) with source, date, segment.
2. Run `research_synthesis_organizer.py` to surface theme clusters
based on tagging, computed frequencies, and segment cross-cuts.
3. Refine themes manually; promote to insights.
```bash
python3 research-summarizer/scripts/research_synthesis_organizer.py \
--input research_items.json --format markdown
```
### Workflow 2 — Score insight quality
1. List proposed insights with supporting evidence count + segment coverage.
2. Run `insight_quality_scorer.py` to grade each insight on Confidence,
Specificity, Action-readiness, and Bias risk.
3. Keep High / Medium insights; demote Low to "questions for further research."
```bash
python3 research-summarizer/scripts/insight_quality_scorer.py \
--input insights.json --format markdown
```
### Workflow 3 — Generate a findings brief
1. Capture the question, top insights, supporting evidence, decisions.
2. Run `findings_brief_generator.py` to produce the structured brief.
```bash
python3 research-summarizer/scripts/findings_brief_generator.py \
--input findings.json --format markdown
```
## Decision frameworks
### Observation → Pattern → Insight → Recommendation
A clean synthesis ladder:
1. **Observation** — direct quote or behavior ("user X said Y")
2. **Pattern** — repeats across users ("4 of 7 users said Y")
3. **Insight** — interpreted explanation ("users avoid Y because Z")
4. **Recommendation** — action implied ("redesign Z to address Y avoidance")
Each level requires more confidence than the last. Don't skip from
observation directly to recommendation.
### Insight quality dimensions
- **Confidence:** how many independent sources support it
- **Specificity:** is the insight specific enough to action?
- **Bias risk:** is the sample / interpretation biased?
- **Decision impact:** does this insight change anything?
A high-quality insight scores well on all four. Most rough notes are
strong on confidence but weak on specificity (or vice versa).
### Sample size for qualitative research
A rough heuristic for how many interviews are enough:
| Goal | Suggested N |
|------|-------------|
| Discover the space (early product) | 5-8 |
| Validate hypotheses | 8-12 |
| Persona definition | 12-20 |
| Detect quantitative signal in qual | 20-30+ |
| Validate cross-segment | 5-8 per segment |
Diminishing returns after the patterns repeat 2-3 times. If you keep
hearing new things, you're not done.
### When qualitative data lies (common biases)
- **Confirmation bias** — interviewers pull the quotes they expected to hear
- **Acquiescence bias** — participants agree to be polite
- **Recall bias** — what users remember vs what they did
- **Selection bias** — who agreed to interview is not representative
- **Recency bias** — recent interviews carry disproportionate weight
- **Anchor bias** — first interview shapes interpretation of later ones
- **Demand characteristics** — participants guess what you want to hear
Counter: use a **second coder**, structure your guide, sample diversely,
and report negative evidence.
## Common engagements
### "Help me synthesize 12 user interviews"
1. Make sure you have transcripts (or detailed notes).
2. Tag each interview by demographic, journey stage, key behaviors.
3. Surface 5-10 themes from initial tagging.
4. For each theme, count: how many users? from which segments? evidence quality?
5. Promote 3-5 themes to insights; demote the rest to "questions for next round."
6. Add 1-2 unexpected findings (the "we didn't expect this" insight).
### "Translate the research into a one-pager for execs"
1. Lead with the question being asked.
2. Lead with the answer (1-2 sentences); details follow.
3. 3-5 insights with evidence; not more.
4. Decisions / recommendations that follow.
5. What you don't know yet (research limits + next-step questions).
6. Methodology one-liner (N, segments, dates).
### "Our research found contradictory things"
1. First: is one finding from a different segment? Often the contradiction is segment-based.
2. Second: was sample biased toward one side?
3. Third: maybe both are true and the system has tensions worth surfacing.
## Anti-patterns to avoid
- **Cherry-picked quotes.** Always provide the count + context.
- **Insight without evidence.** "Users want X" without supporting observations.
- **Anecdotal generalization.** One angry user doesn't define the population.
- **Reporting interview-by-interview.** Synthesis means seeing across users.
- **Hiding the negative evidence.** Disconfirming evidence is valuable.
- **Brief that's longer than needed.** Briefer = better-read.
- **Mixing facts and interpretations.** Be clear which is which.
- **Skipping methodology.** Readers need to evaluate the trust level.
## References
- `references/research-synthesis-frameworks.md` — affinity, thematic analysis, frameworks
- `references/insight-quality-and-bias.md` — quality dimensions, bias catalog, validation
- `references/communicating-research-findings.md` — brief formats, presentation patterns
## Related skills
- `product-team/ux-researcher-designer` — research design + collection
- `product-team/product-strategist` — strategic input from insights
- `product-team/product-analytics` — quant complement to qual
- `c-level-advisor/chief-customer-officer-advisor` — VoC program context
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.