@@ -33,27 +33,76 @@ Get your key from: https://requesthunt.com/dashboard
3333Default output is TOON (Token-Oriented Object Notation) — structured and token-efficient.
3434Use ` --json ` for raw JSON or ` --human ` for table/key-value display.
3535
36+ ## Platform Selection Guide
37+
38+ Each platform captures different types of user feedback. Choose platforms based on the product category to maximize signal quality.
39+
40+ ### Platform Strengths
41+
42+ | Platform | Best For | Signal Type | Typical Yield |
43+ | ----------| ----------| -------------| ---------------|
44+ | ** YouTube** | Consumer products, hardware, lifestyle apps | Specific feature asks from review/tutorial comments | High (10-29 per topic) |
45+ | ** Reddit** | Developer tools, creator economy, niche communities | Deep technical discussions, long-tail needs | High for dev topics (up to 176) |
46+ | ** LinkedIn** | B2B software, healthcare, enterprise tools | Professional/industry opinions, market context | Low volume but high engagement |
47+ | ** X** | Trending topics, quick sentiment signals | Fragmented feedback, emotional reactions | Low-medium (1-6 per topic) |
48+ | ** GitHub** | Open-source tools, developer infrastructure | Concrete bugs and feature requests from issues | High for OSS, zero for non-tech |
49+
50+ ### Recommended Platforms by Category
51+
52+ | Category | Primary | Secondary | Notes |
53+ | ----------| ---------| -----------| -------|
54+ | ** Automotive / Hardware** | YouTube | Reddit | Video review comments are the richest source (dashcams: 29, EVs: 19) |
55+ | ** Gaming / Entertainment** | YouTube | Reddit | Game streams and reviews generate natural feedback |
56+ | ** Travel / Transportation** | YouTube | LinkedIn | Travel vlogs + LinkedIn for business travel needs |
57+ | ** Social / Communication** | YouTube | Reddit | App review videos + community discussions |
58+ | ** Food / Dining** | YouTube | Reddit | Recipe and delivery app review comments |
59+ | ** Real Estate / Home** | YouTube | X | Interior design and renovation videos dominate |
60+ | ** Education / Learning** | YouTube | — | Tutorial video comments are the only reliable source |
61+ | ** Health / Medical** | LinkedIn | X | Rare LinkedIn-dominant category (professional healthcare) |
62+ | ** Creator Economy** | Reddit | GitHub | Reddit communities overwhelmingly active (Newsletter: 176 requests) |
63+ | ** Developer Tools** | Reddit | GitHub | Technical communities + open-source issue trackers |
64+ | ** AI / SaaS Products** | Reddit | LinkedIn | Reddit for user complaints, LinkedIn for industry analysis |
65+
66+ ### Quick Selection Rules
67+
68+ - ** Consumer / hardware / lifestyle** → YouTube first, Reddit second
69+ - ** Developer / creator tools** → Reddit first, GitHub second
70+ - ** B2B / enterprise / medical** → LinkedIn first, X second
71+ - ** Has open-source projects** → add GitHub
72+ - ** Everything** → add X as a supplementary source
73+
3674## Research Workflow
3775
3876### Step 1: Define Scope
3977
4078Before collecting data, clarify with the user:
41- 1 . ** Research Goal** : What domain/area to investigate? (e.g., AI coding assistants, project management tools)
42- 2 . ** Specific Products** : Any products/competitors to focus on? (e.g., Cursor, GitHub Copilot)
43- 3 . ** Platform Preference ** : Which platforms to prioritize? (reddit, x, github, youtube, linkedin)
79+ 1 . ** Research Goal** : What domain/area to investigate?
80+ 2 . ** Specific Products** : Any products/competitors to focus on?
81+ 3 . ** Platform Selection ** : Use the guide above to pick 2-3 best platforms for the category
44824 . ** Time Range** : How recent should the feedback be?
45835 . ** Report Purpose** : Product planning / competitive analysis / market research?
4684
4785### Step 2: Collect Data
4886
87+ Choose platforms strategically based on the category:
88+
4989``` bash
50- # 1. Trigger realtime scrape for the topic
51- requesthunt scrape start " ai-coding-assistant" --platforms reddit,x,github,youtube,linkedin --depth 2
90+ # Consumer hardware — YouTube-first strategy
91+ requesthunt scrape start " smart home devices" --platforms youtube,reddit --depth 2
92+
93+ # Developer tools — Reddit-first strategy
94+ requesthunt scrape start " code editors" --platforms reddit,github --depth 2
5295
53- # 2. Search with expansion for more data
54- requesthunt search " code completion " --expand --limit 50
96+ # B2B / enterprise — LinkedIn-first strategy
97+ requesthunt scrape start " electronic health records " --platforms linkedin,x --depth 2
5598
56- # 3. List requests filtered by topic
99+ # Broad research — all platforms
100+ requesthunt scrape start " AI coding assistants" --platforms reddit,x,github,youtube,linkedin --depth 2
101+
102+ # Search with expansion for more data
103+ requesthunt search " dark mode" --expand --limit 50
104+
105+ # List requests filtered by topic
57106requesthunt list --topic " ai-tools" --limit 100
58107```
59108
@@ -66,26 +115,34 @@ Analyze collected data and generate a structured Markdown report:
66115
67116## Overview
68117- Scope: ...
69- - Data Sources: Reddit (X), X (Y), GitHub (Z), YouTube (W), LinkedIn (V)
118+ - Data Sources: Reddit (N), X (N), GitHub (N), YouTube (N), LinkedIn (N)
119+ - Platform Strategy: [ why these platforms were chosen for this category]
70120- Time Range: ...
71121
72122## Key Findings
73123
74124### 1. Top Feature Requests
75- | Rank | Request | Sources | Representative Quote |
76- | ------| ---------| ---------| ---------------------|
125+ | Rank | Request | Platform | Votes | Representative Quote |
126+ | ------| ---------| ---------- | ------- | ---------------------|
77127
78128### 2. Pain Points Analysis
79129- ** Pain Point A** : ...
130+ - Sources: [ which platforms surfaced this]
131+
132+ ### 3. Platform Signal Comparison
133+ | Insight | Reddit | YouTube | LinkedIn | X | GitHub |
134+ | ---------| --------| ---------| ----------| ---| --------|
135+ | Volume | ... | ... | ... | ... | ... |
136+ | Signal type | Technical | UX/Feature | Strategic | Sentiment | Bug/FR |
80137
81- ### 3 . Competitive Comparison (if specified)
138+ ### 4 . Competitive Comparison (if specified)
82139| Feature | Product A | Product B | User Expectations |
83140
84- ### 4 . Opportunities
141+ ### 5 . Opportunities
85142- ...
86143
87144## Methodology
88- Based on N real user feedbacks collected via RequestHunt...
145+ Based on N real user feedbacks collected via RequestHunt from [ platforms ] ...
89146```
90147
91148## Commands
@@ -101,7 +158,7 @@ requesthunt search "API rate limit" --expand --platforms reddit,x,youtube
101158``` bash
102159requesthunt list --limit 20 # Recent requests
103160requesthunt list --topic " ai-tools" --limit 10 # By topic
104- requesthunt list --platforms reddit,github,youtube # By platform
161+ requesthunt list --platforms reddit,github,youtube # By platform
105162requesthunt list --category " Developer Tools" # By category
106163requesthunt list --sort top --limit 20 # Top voted
107164```
0 commit comments