/research
Deep research before PRD generation. Produces a structured research.md with competitive analysis, user pain points, SEO/ASO keywords, naming/domain options, and market sizing.
Live Context
- Branch: !
git branch --show-current 2>/dev/null
- Recent changes: !
git log --oneline -5 2>/dev/null
MCP Tools (use if available)
If MCP tools are available, prefer them over CLI:
kb_search(query, n_results) — search knowledge base for related docs
web_search(query, engines, include_raw_content) — web search with engine routing
web_extract(url, size, page) — one page as clean markdown, boilerplate removed
session_search(query, project) — find how similar research was done before
project_info(name) — check project details and stacks
codegraph_explain(project) — architecture overview of an existing project (stack, patterns, deps)
codegraph_query(query) — raw Cypher queries against code graph (find shared packages, dependencies)
project_code_search(query, project) — semantic search over project source code
MCP web_search supports engine override: engines="reddit", engines="youtube", etc.
For reading one page in full, prefer web_extract over include_raw_content: it runs
trafilatura, so navigation and footers are gone and tables survive. size="s|m|l" caps
at 5k/10k/25k chars, size="f" paginates the whole document and page=2 walks it.
If MCP tools are not available, use WebSearch/WebFetch as primary. If MCP web_search tool is available, use it for better results.
Reddit Search Best Practices
- Max 3 keywords in reddit queries — more keywords = fewer results
- Good:
"product hunt outreach launch" — Bad: "product hunt scraper maker profiles linkedin outreach launch strategy"
include_raw_content=true rarely works for Reddit — use fallback chain below
Reddit Content Access — Fallback Chain
When a search finds a relevant Reddit post, reading its full content requires a fallback chain:
1. MCP Playwright (old.reddit.com) ← BEST: bypasses CAPTCHA, full post + comments
2. PullPush API (api.pullpush.io) ← search by query/subreddit/author/score/date
3. MCP web_extract / web_search raw ← sometimes works, often truncated
4. WebFetch / WebSearch snippets ← last resort, partial data only
Method 1: MCP Playwright (recommended for full post content)
- Use
browser_navigate("https://old.reddit.com/r/...") — old.reddit.com loads without CAPTCHA
www.reddit.com shows CAPTCHA ("Prove your humanity"), always use old.reddit.com
- Snapshot contains full post text + comments in structured YAML
- Example:
old.reddit.com/r/indiehackers/comments/abc123/post_title/
Method 2: PullPush API (for search/discovery)
- Endpoint:
https://api.pullpush.io/reddit/submission/search
- Params:
q, subreddit, author, score (e.g. >10,<100), since/until (unix timestamps), size (max 100)
- Rate limits: soft 15 req/min, hard 30 req/min, 1000 req/hr. Sleep 4 sec between requests.
- Returns JSON with full
selftext, author, score, created_utc
- Comment search:
/reddit/comment/search (same params)
- Can use via curl:
curl -s "https://api.pullpush.io/reddit/submission/search?q=product+hunt+launch&subreddit=indiehackers&size=10"
Method 3: Reddit .json endpoint (often blocked)
- Append
.json to any Reddit URL: reddit.com/r/sub/comments/id.json
- Returns raw JSON with full post + comments
- Frequently blocked (403/429) — use as opportunistic fallback only
Method 4: PRAW (Reddit Official API, for live search/user profiles)
- praw-dev/praw — Python Reddit API Wrapper
- OAuth2 auth, built-in rate limiting, sync/async support
- Best for: live subreddit search, user profiles, comment trees
pip install praw / uv add praw
Search Strategy: Hybrid (MCP + WebSearch)
Use multiple search backends together. Each has strengths:
| Step |
Best backend |
Why |
| Competitors |
WebSearch + site:producthunt.com + site:g2.com |
Broad discovery + Product Hunt + B2B reviews |
| Reddit / Pain points |
MCP web_search with engines: reddit (max 3 keywords!) + MCP Playwright for full posts |
PullPush API, selftext in content |
| YouTube reviews |
MCP web_search with engines: youtube |
Video reviews (views = demand) |
| Market size |
WebSearch |
Synthesizes numbers from 10 sources |
| SEO / ASO |
WebSearch |
Broader coverage, trend data |
| Page scraping |
MCP web_extract (fallback: WebFetch) |
Clean markdown, size=f + page=n for long docs |
| Hacker News |
WebSearch site:news.ycombinator.com |
HN discussions and opinions |
| Funding / Companies |
WebSearch site:crunchbase.com |
Competitor funding, team size |
| Verified revenue |
WebFetch trustmrr.com/startup/<slug> |
Stripe-verified MRR, growth, tech stack, traffic |
Search Availability
Use WebSearch/WebFetch as primary. If MCP web_search tool is available, use it for better results (supports engine routing and raw content extraction).
Steps
Parse the idea from $ARGUMENTS. If empty, ask the user what idea they want to research.
Detect product type — infer from the idea description:
- Keywords like "app", "mobile", "iPhone", "Android" → mobile (ios/android)
- Keywords like "website", "SaaS", "dashboard", "web app" → web
- Keywords like "CLI", "terminal", "command line" → cli
- Keywords like "API", "backend", "service" → api
- Keywords like "extension", "plugin", "browser" → web (extension)
- Default if unclear → web
- Only ask via AskUserQuestion if truly ambiguous (e.g., "build a todo app" could be web or mobile)
- This determines which research sections apply (ASO for mobile, SEO for web, etc.)
Search knowledge base and past work:
- If MCP
kb_search available: kb_search(query="<idea keywords>", n_results=5)
- If MCP
session_search available: session_search(query="<idea keywords>") — check if this idea was researched before
- Otherwise: Grep for keywords in
.md files
- Check if
research.md or prd.md already exist for this idea.
Check existing portfolio (if MCP codegraph tools available):
codegraph_explain(project="<similar project>") — architecture overview of related projects in the portfolio
project_code_search(query="<relevant pattern>", project="<sibling>") — find reusable code, patterns, infrastructure
codegraph_query("MATCH (p:Project)-[:DEPENDS_ON]->(pkg:Package) WHERE pkg.name CONTAINS '<relevant tech>' RETURN p.name, pkg.name") — find projects using similar tech
- This helps assess: feasibility, reusable code, stack decisions, and time estimates
- If no MCP tools available, skip this step.
Competitive analysis — use WebSearch (primary) + MCP web_search (if available):
"<idea> competitors alternatives 2026" — broad discovery
"<idea> app review pricing" — pricing data
- WebFetch or MCP
include_raw_content=true: scrape competitor URLs for detailed pricing
- MCP
engines: reddit or WebSearch: "<idea> vs" — user opinions
"site:producthunt.com <idea>" — Product Hunt launches
"site:g2.com <idea>" or "site:capterra.com <idea>" — B2B reviews
"site:crunchbase.com <competitor>" — funding, team size
"site:trustmrr.com <idea>" or WebFetch trustmrr.com/startup/<slug> — Stripe-verified MRR, growth %, tech stack, traffic (24h/7d/30d)
- For each competitor extract: name, URL, pricing, key features, weaknesses, verified MRR (if on TrustMRR)
User pain points — use MCP web_search / WebSearch + YouTube:
- MCP
engines: reddit or WebSearch: "<problem>" — Reddit discussions (max 3 keywords!)
- If Reddit post found but content not available → open via MCP Playwright:
browser_navigate("https://old.reddit.com/r/...") — old.reddit.com bypasses CAPTCHA
- MCP
engines: youtube or WebSearch: "<problem> review" — video reviews
"site:news.ycombinator.com <problem>" — Hacker News opinions
- WebSearch:
"<problem> frustrating OR annoying" — broader sweep
- Synthesis: top 5 pain points with quotes and source URLs
SEO / ASO analysis (depends on product type from step 2):
For web apps:
"<competitor> SEO keywords ranking" — competitor keywords
"<problem domain> search volume trends 2026" — demand signals
- WebFetch or MCP
include_raw_content: scrape competitor pages for meta tags
- Result: keyword table (keyword, intent, competition, relevance)
For mobile apps:
"<category> App Store top apps keywords 2026" — category landscape
"site:reddit.com <competitor app> review" — user complaints
- Result: ASO keywords, competitor ratings, common complaints
Naming, domains, and company registration:
- Generate 7-10 name candidates (mix of descriptive + invented/brandable)
- Domain availability: triple verification (whois → dig → RDAP)
- Trademark + company name conflict checks
See references/domain-check.md (bundled with this skill) for TLD priority tiers, bash scripts, gotchas, and trademark check methods.
User Personas (2-3 quick personas from research data):
Based on pain points (step 6) and competitive gaps (step 5), generate 2-3 lightweight personas:
| Field |
Example |
| Name |
"Alex, freelance designer" |
| Segment |
Early-career freelancers, $3-8K/mo |
| JTBD |
"When I finish a project, I want to send a professional invoice in under 60 seconds so I can get paid faster" |
| Pain |
Top pain point from step 6 with source quote |
| Current solution |
What they use today (competitor or workaround) |
| Switching trigger |
What would make them try something new |
Keep personas grounded in evidence from steps 5-6. No fictional demographics — only what the data supports. These feed directly into /validate for ICP and PRD generation.
Interview Script (optional, if user plans customer interviews):
Generate a 7-question JTBD interview script based on the personas above:
- Context: "Tell me about the last time you [core action]..." (open-ended, past tense)
- Trigger: "What prompted you to look for a solution?" (switching moment)
- Current workflow: "Walk me through how you do this today, step by step"
- Pain: "What's the most frustrating part?" (don't lead — let them name it)
- Alternatives tried: "What else have you tried? What happened?"
- Outcome: "What would 'solved' look like for you?"
- Willingness to pay: "If something did exactly that, what would it be worth to you?"
Rules: past tense only (what they DID, not what they WOULD do), no leading questions, no feature pitching. Reference: JTBD interview methodology (Bob Moesta).
Write to docs/interview-script.md if generated.
- Market sizing (TAM/SAM/SOM) — use WebSearch (primary):
- WebSearch:
"<market> market size 2025 2026 report" — synthesizes numbers
- WebSearch:
"<market> growth rate CAGR billion" — growth projections
- Extrapolation: TAM → SAM → SOM (Year 1)
Write research.md — write to docs/research.md in the current project directory. Create the directory if needed.
Output summary:
- Key findings (3-5 bullets)
- Recommendation: GO / NO-GO / PIVOT with brief reasoning
- Path to generated research.md
- Suggested next step:
/validate <idea>
research.md Format
See references/research-template.md (bundled with this skill) for the full output template (frontmatter, 6 sections, tables).
Notes
- Always use kebab-case for project directory names
- If research.md already exists, ask before overwriting
- Run search queries in parallel when independent
Common Issues
MCP web_search not available
Cause: MCP server not running or not configured.
Fix: Use WebSearch/WebFetch as primary. For better results with engine routing (Reddit, GitHub, YouTube), set up SearXNG (private, self-hosted, free) and configure solograph MCP.
Domain check returns wrong results
Cause: .app/.dev whois shows TLD creation date for unregistered domains.
Fix: Use the triple verification method (whois -> dig -> RDAP). Check Name Server and Registrar fields, not creation date.
research.md already exists
Cause: Previous research run for this idea.
Fix: Skill asks before overwriting. Choose to merge new findings or start fresh.
Proactive Search Practices
Reddit Deep Dive
- MCP web_search or WebSearch — use for discovery (max 3 keywords for Reddit), get post URLs
- MCP Playwright — open
old.reddit.com URLs to read full post + comments (bypasses CAPTCHA)
- Extract quotes — copy key phrases with attribution (u/username, subreddit, date)
- Cross-post detection — same post in multiple subreddits = higher signal
Product Hunt Research
- producthunt.com/visit-streaks — streak leaderboard (scrapeable via Playwright)
- producthunt.com/@username — profile with social links, maker history, points
- PH API v2 is broken — redacts usernames/Twitter since Feb 2023, use scraping
- Apify actors — check for DEPRECATED status before relying on them (mass deprecation Sep 2025)
TrustMRR Revenue Validation
trustmrr.com/startup/<slug> — Stripe-verified MRR, growth %, subscriptions, traffic
- WebFetch works — no auth needed, returns full page with JSON-LD structured data
- Data fields: MRR, all-time revenue, last 30 days, active subs, tech stack, traffic (24h/7d/30d), category, founder X handle
- Use for: competitor revenue validation, market sizing with real data, tech stack discovery
- Search:
"site:trustmrr.com <category or idea>" to find similar startups with verified revenue
- Apify scrapers: TrustMRR Scraper for bulk extraction
GitHub Library Discovery
- MCP
engines: github — often returns empty, use WebSearch as primary
- github.com/topics/ — browse topic pages via Playwright or WebFetch
- Check stars, last update, open issues — avoid abandoned repos
Blocked Content Fallback Chain
MCP Playwright (best) → PullPush API (Reddit) → WebFetch → WebSearch snippets → MCP web_search include_raw_content
If a page returns 403/CAPTCHA via WebFetch:
- Reddit: MCP Playwright →
old.reddit.com (always works, no CAPTCHA)
- Reddit search: PullPush API
api.pullpush.io (structured JSON, full selftext)
- Product Hunt / other sites: MCP Playwright
browser_navigate (no captcha on most sites)
- General: WebSearch snippets + WebSearch synthesis
1---2name: solo-research3description: Use when "research this idea", "find competitors", "check the market", "domain availability", "market size", "analyze opportunity", or need evidence before validation. Do NOT use for idea scoring (/validate) or SEO auditing (/seo-audit).4license: MIT5---67# /research89Deep research before PRD generation. Produces a structured `research.md` with competitive analysis, user pain points, SEO/ASO keywords, naming/domain options, and market sizing.1011## Live Context12- Branch: !`git branch --show-current 2>/dev/null`13- Recent changes: !`git log --oneline -5 2>/dev/null`1415## MCP Tools (use if available)1617If MCP tools are available, prefer them over CLI:18- `kb_search(query, n_results)` — search knowledge base for related docs19- `web_search(query, engines, include_raw_content)` — web search with engine routing20- `web_extract(url, size, page)` — one page as clean markdown, boilerplate removed21- `session_search(query, project)` — find how similar research was done before22- `project_info(name)` — check project details and stacks23- `codegraph_explain(project)` — architecture overview of an existing project (stack, patterns, deps)24- `codegraph_query(query)` — raw Cypher queries against code graph (find shared packages, dependencies)25- `project_code_search(query, project)` — semantic search over project source code2627MCP `web_search` supports engine override: `engines="reddit"`, `engines="youtube"`, etc.28For reading one page in full, prefer `web_extract` over `include_raw_content`: it runs29trafilatura, so navigation and footers are gone and tables survive. `size="s|m|l"` caps30at 5k/10k/25k chars, `size="f"` paginates the whole document and `page=2` walks it.31If MCP tools are not available, use WebSearch/WebFetch as primary. If MCP web_search tool is available, use it for better results.3233### Reddit Search Best Practices3435- **Max 3 keywords** in reddit queries — more keywords = fewer results36- Good: `"product hunt outreach launch"` — Bad: `"product hunt scraper maker profiles linkedin outreach launch strategy"`37- `include_raw_content=true` rarely works for Reddit — use fallback chain below3839### Reddit Content Access — Fallback Chain4041When a search finds a relevant Reddit post, reading its full content requires a fallback chain:4243```441. MCP Playwright (old.reddit.com) ← BEST: bypasses CAPTCHA, full post + comments452. PullPush API (api.pullpush.io) ← search by query/subreddit/author/score/date463. MCP web_extract / web_search raw ← sometimes works, often truncated474. WebFetch / WebSearch snippets ← last resort, partial data only48```4950**Method 1: MCP Playwright** (recommended for full post content)51- Use `browser_navigate("https://old.reddit.com/r/...")` — old.reddit.com loads without CAPTCHA52- `www.reddit.com` shows CAPTCHA ("Prove your humanity"), always use `old.reddit.com`53- Snapshot contains full post text + comments in structured YAML54- Example: `old.reddit.com/r/indiehackers/comments/abc123/post_title/`5556**Method 2: PullPush API** (for search/discovery)57- Endpoint: `https://api.pullpush.io/reddit/submission/search`58- Params: `q`, `subreddit`, `author`, `score` (e.g. `>10,<100`), `since`/`until` (unix timestamps), `size` (max 100)59- Rate limits: soft 15 req/min, hard 30 req/min, 1000 req/hr. Sleep 4 sec between requests.60- Returns JSON with full `selftext`, author, score, created_utc61- Comment search: `/reddit/comment/search` (same params)62- Can use via curl:63```bash64curl -s "https://api.pullpush.io/reddit/submission/search?q=product+hunt+launch&subreddit=indiehackers&size=10"65```6667**Method 3: Reddit .json endpoint** (often blocked)68- Append `.json` to any Reddit URL: `reddit.com/r/sub/comments/id.json`69- Returns raw JSON with full post + comments70- Frequently blocked (403/429) — use as opportunistic fallback only7172**Method 4: PRAW** (Reddit Official API, for live search/user profiles)73- [praw-dev/praw](https://github.com/praw-dev/praw) — Python Reddit API Wrapper74- OAuth2 auth, built-in rate limiting, sync/async support75- Best for: live subreddit search, user profiles, comment trees76- `pip install praw` / `uv add praw`7778## Search Strategy: Hybrid (MCP + WebSearch)7980Use **multiple** search backends together. Each has strengths:8182| Step | Best backend | Why |83|------|-------------|-----|84| **Competitors** | WebSearch + `site:producthunt.com` + `site:g2.com` | Broad discovery + Product Hunt + B2B reviews |85| **Reddit / Pain points** | MCP `web_search` with `engines: reddit` (max 3 keywords!) + MCP Playwright for full posts | PullPush API, selftext in content |86| **YouTube reviews** | MCP `web_search` with `engines: youtube` | Video reviews (views = demand) |87| **Market size** | WebSearch | Synthesizes numbers from 10 sources |88| **SEO / ASO** | WebSearch | Broader coverage, trend data |89| **Page scraping** | MCP `web_extract` (fallback: WebFetch) | Clean markdown, `size=f` + `page=n` for long docs |90| **Hacker News** | WebSearch `site:news.ycombinator.com` | HN discussions and opinions |91| **Funding / Companies** | WebSearch `site:crunchbase.com` | Competitor funding, team size |92| **Verified revenue** | WebFetch `trustmrr.com/startup/<slug>` | Stripe-verified MRR, growth, tech stack, traffic |9394### Search Availability9596Use WebSearch/WebFetch as primary. If MCP `web_search` tool is available, use it for better results (supports engine routing and raw content extraction).9798## Steps991001. **Parse the idea** from `$ARGUMENTS`. If empty, ask the user what idea they want to research.1011022. **Detect product type** — infer from the idea description:103 - Keywords like "app", "mobile", "iPhone", "Android" → mobile (ios/android)104 - Keywords like "website", "SaaS", "dashboard", "web app" → web105 - Keywords like "CLI", "terminal", "command line" → cli106 - Keywords like "API", "backend", "service" → api107 - Keywords like "extension", "plugin", "browser" → web (extension)108 - Default if unclear → web109 - Only ask via AskUserQuestion if truly ambiguous (e.g., "build a todo app" could be web or mobile)110 - This determines which research sections apply (ASO for mobile, SEO for web, etc.)1111123. **Search knowledge base and past work:**113 - If MCP `kb_search` available: `kb_search(query="<idea keywords>", n_results=5)`114 - If MCP `session_search` available: `session_search(query="<idea keywords>")` — check if this idea was researched before115 - Otherwise: Grep for keywords in `.md` files116 - Check if `research.md` or `prd.md` already exist for this idea.1171184. **Check existing portfolio** (if MCP codegraph tools available):119 - `codegraph_explain(project="<similar project>")` — architecture overview of related projects in the portfolio120 - `project_code_search(query="<relevant pattern>", project="<sibling>")` — find reusable code, patterns, infrastructure121 - `codegraph_query("MATCH (p:Project)-[:DEPENDS_ON]->(pkg:Package) WHERE pkg.name CONTAINS '<relevant tech>' RETURN p.name, pkg.name")` — find projects using similar tech122 - This helps assess: feasibility, reusable code, stack decisions, and time estimates123 - If no MCP tools available, skip this step.1241255. **Competitive analysis** — use WebSearch (primary) + MCP web_search (if available):126 - `"<idea> competitors alternatives 2026"` — broad discovery127 - `"<idea> app review pricing"` — pricing data128 - WebFetch or MCP `include_raw_content=true`: scrape competitor URLs for detailed pricing129 - MCP `engines: reddit` or WebSearch: `"<idea> vs"` — user opinions130 - `"site:producthunt.com <idea>"` — Product Hunt launches131 - `"site:g2.com <idea>"` or `"site:capterra.com <idea>"` — B2B reviews132 - `"site:crunchbase.com <competitor>"` — funding, team size133 - `"site:trustmrr.com <idea>"` or WebFetch `trustmrr.com/startup/<slug>` — Stripe-verified MRR, growth %, tech stack, traffic (24h/7d/30d)134 - For each competitor extract: name, URL, pricing, key features, weaknesses, verified MRR (if on TrustMRR)1351366. **User pain points** — use MCP web_search / WebSearch + YouTube:137 - MCP `engines: reddit` or WebSearch: `"<problem>"` — Reddit discussions (**max 3 keywords!**)138 - If Reddit post found but content not available → open via MCP Playwright: `browser_navigate("https://old.reddit.com/r/...")` — old.reddit.com bypasses CAPTCHA139 - MCP `engines: youtube` or WebSearch: `"<problem> review"` — video reviews140 - `"site:news.ycombinator.com <problem>"` — Hacker News opinions141 - WebSearch: `"<problem> frustrating OR annoying"` — broader sweep142 - Synthesis: top 5 pain points with quotes and source URLs1431447. **SEO / ASO analysis** (depends on product type from step 2):145146 **For web apps:**147 - `"<competitor> SEO keywords ranking"` — competitor keywords148 - `"<problem domain> search volume trends 2026"` — demand signals149 - WebFetch or MCP `include_raw_content`: scrape competitor pages for meta tags150 - Result: keyword table (keyword, intent, competition, relevance)151152 **For mobile apps:**153 - `"<category> App Store top apps keywords 2026"` — category landscape154 - `"site:reddit.com <competitor app> review"` — user complaints155 - Result: ASO keywords, competitor ratings, common complaints1561578. **Naming, domains, and company registration:**158 - Generate 7-10 name candidates (mix of descriptive + invented/brandable)159 - Domain availability: triple verification (whois → dig → RDAP)160 - Trademark + company name conflict checks161162 See `references/domain-check.md` (bundled with this skill) for TLD priority tiers, bash scripts, gotchas, and trademark check methods.1631649. **User Personas** (2-3 quick personas from research data):165166 Based on pain points (step 6) and competitive gaps (step 5), generate 2-3 lightweight personas:167168 | Field | Example |169 |-------|---------|170 | **Name** | "Alex, freelance designer" |171 | **Segment** | Early-career freelancers, $3-8K/mo |172 | **JTBD** | "When I finish a project, I want to send a professional invoice in under 60 seconds so I can get paid faster" |173 | **Pain** | Top pain point from step 6 with source quote |174 | **Current solution** | What they use today (competitor or workaround) |175 | **Switching trigger** | What would make them try something new |176177 Keep personas grounded in evidence from steps 5-6. No fictional demographics — only what the data supports. These feed directly into `/validate` for ICP and PRD generation.17817910. **Interview Script** (optional, if user plans customer interviews):180181 Generate a 7-question JTBD interview script based on the personas above:182183 1. **Context:** "Tell me about the last time you [core action]..." (open-ended, past tense)184 2. **Trigger:** "What prompted you to look for a solution?" (switching moment)185 3. **Current workflow:** "Walk me through how you do this today, step by step"186 4. **Pain:** "What's the most frustrating part?" (don't lead — let them name it)187 5. **Alternatives tried:** "What else have you tried? What happened?"188 6. **Outcome:** "What would 'solved' look like for you?"189 7. **Willingness to pay:** "If something did exactly that, what would it be worth to you?"190191 Rules: past tense only (what they DID, not what they WOULD do), no leading questions, no feature pitching. Reference: JTBD interview methodology (Bob Moesta).192193 Write to `docs/interview-script.md` if generated.19419511. **Market sizing** (TAM/SAM/SOM) — use WebSearch (primary):196 - WebSearch: `"<market> market size 2025 2026 report"` — synthesizes numbers197 - WebSearch: `"<market> growth rate CAGR billion"` — growth projections198 - Extrapolation: TAM → SAM → SOM (Year 1)19920012. **Write `research.md`** — write to `docs/research.md` in the current project directory. Create the directory if needed.20120213. **Output summary:**203 - Key findings (3-5 bullets)204 - Recommendation: GO / NO-GO / PIVOT with brief reasoning205 - Path to generated research.md206 - Suggested next step: `/validate <idea>`207208## research.md Format209210See `references/research-template.md` (bundled with this skill) for the full output template (frontmatter, 6 sections, tables).211212## Notes213214- Always use kebab-case for project directory names215- If research.md already exists, ask before overwriting216- Run search queries in parallel when independent217218## Common Issues219220### MCP web_search not available221**Cause:** MCP server not running or not configured.222**Fix:** Use WebSearch/WebFetch as primary. For better results with engine routing (Reddit, GitHub, YouTube), set up [SearXNG](https://github.com/fortunto2/searxng-docker-tavily-adapter) (private, self-hosted, free) and configure solograph MCP.223224### Domain check returns wrong results225**Cause:** `.app`/`.dev` whois shows TLD creation date for unregistered domains.226**Fix:** Use the triple verification method (whois -> dig -> RDAP). Check Name Server and Registrar fields, not creation date.227228### research.md already exists229**Cause:** Previous research run for this idea.230**Fix:** Skill asks before overwriting. Choose to merge new findings or start fresh.231232## Proactive Search Practices233234### Reddit Deep Dive2352361. **MCP web_search or WebSearch** — use for discovery (max 3 keywords for Reddit), get post URLs2372. **MCP Playwright** — open `old.reddit.com` URLs to read full post + comments (bypasses CAPTCHA)2383. **Extract quotes** — copy key phrases with attribution (u/username, subreddit, date)2394. **Cross-post detection** — same post in multiple subreddits = higher signal240241### Product Hunt Research2422431. **producthunt.com/visit-streaks** — streak leaderboard (scrapeable via Playwright)2442. **producthunt.com/@username** — profile with social links, maker history, points2453. **PH API v2 is broken** — redacts usernames/Twitter since Feb 2023, use scraping2464. **Apify actors** — check for DEPRECATED status before relying on them (mass deprecation Sep 2025)247248### TrustMRR Revenue Validation2492501. **`trustmrr.com/startup/<slug>`** — Stripe-verified MRR, growth %, subscriptions, traffic2512. **WebFetch works** — no auth needed, returns full page with JSON-LD structured data2523. **Data fields:** MRR, all-time revenue, last 30 days, active subs, tech stack, traffic (24h/7d/30d), category, founder X handle2534. **Use for:** competitor revenue validation, market sizing with real data, tech stack discovery2545. **Search:** `"site:trustmrr.com <category or idea>"` to find similar startups with verified revenue2556. **Apify scrapers:** [TrustMRR Scraper](https://apify.com/actor_builder/trustmrr-scraper/api) for bulk extraction256257### GitHub Library Discovery2582591. **MCP `engines: github`** — often returns empty, use WebSearch as primary2602. **github.com/topics/<keyword>** — browse topic pages via Playwright or WebFetch2613. **Check stars, last update, open issues** — avoid abandoned repos262263### Blocked Content Fallback Chain264265```266MCP Playwright (best) → PullPush API (Reddit) → WebFetch → WebSearch snippets → MCP web_search include_raw_content267```268269If a page returns 403/CAPTCHA via WebFetch:2701. **Reddit:** MCP Playwright → `old.reddit.com` (always works, no CAPTCHA)2712. **Reddit search:** PullPush API `api.pullpush.io` (structured JSON, full selftext)2723. **Product Hunt / other sites:** MCP Playwright `browser_navigate` (no captcha on most sites)2734. **General:** WebSearch snippets + WebSearch synthesis