user-research-analysis▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Effective research analysis transforms raw data into actionable insights that guide product development and design.
User Research Analysis
Table of Contents
Overview
Effective research analysis transforms raw data into actionable insights that guide product development and design.
When to Use
- Synthesis of user interviews and surveys
- Identifying patterns and themes
- Validating design assumptions
- Prioritizing user needs
- Communicating insights to stakeholders
- Informing design decisions
Quick Start
Minimal working example:
# Analyze qualitative and quantitative data
class ResearchAnalysis:
def synthesize_interviews(self, interviews):
"""Extract themes and insights from interviews"""
return {
'interviews_analyzed': len(interviews),
'methodology': 'Thematic coding and affinity mapping',
'themes': self.identify_themes(interviews),
'quotes': self.extract_key_quotes(interviews),
'pain_points': self.identify_pain_points(interviews),
'opportunities': self.identify_opportunities(interviews)
}
def identify_themes(self, interviews):
"""Find recurring patterns across interviews"""
themes = {}
theme_frequency = {}
for interview in interviews:
for statement in interview['statements']:
theme = self.categorize_statement(statement)
theme_frequency[theme] = theme_frequency.get(theme, 0) + 1
# Sort by frequency
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Research Synthesis Methods | Research Synthesis Methods |
| Affinity Mapping | Affinity Mapping |
| Insight Documentation | Insight Documentation |
| Research Validation Matrix | Research Validation Matrix |
Best Practices
✅ DO
- Use multiple research methods
- Triangulate findings across sources
- Document quotes and evidence
- Look for patterns and frequency
- Separate findings from interpretation
- Validate findings with users
- Share insights across team
- Connect to design decisions
- Document methodology
- Iterate research approach based on learnings
❌ DON'T
- Over-interpret small samples
- Ignore conflicting data
- Base decisions on single data point
- Skip documentation
- Cherry-pick quotes that support assumptions
- Present without supporting evidence
- Forget to note limitations
- Analyze without involving participants
- Create insights without actionable recommendations
- Let research sit unused
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★61 reviews- ★★★★★Kiara Jackson· Dec 28, 2024
Keeps context tight: user-research-analysis is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Nia Liu· Dec 28, 2024
We added user-research-analysis from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Xiao Park· Dec 24, 2024
I recommend user-research-analysis for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Hiroshi Ndlovu· Dec 16, 2024
user-research-analysis has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Xiao Abbas· Dec 12, 2024
Solid pick for teams standardizing on skills: user-research-analysis is focused, and the summary matches what you get after install.
- ★★★★★William Jackson· Dec 8, 2024
user-research-analysis is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Shikha Mishra· Dec 4, 2024
Keeps context tight: user-research-analysis is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kiara White· Nov 27, 2024
user-research-analysis reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Yash Thakker· Nov 23, 2024
Registry listing for user-research-analysis matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Evelyn Taylor· Nov 19, 2024
Registry listing for user-research-analysis matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 61