
Run Research
- 33 installs
- 269 repo stars
- Updated June 11, 2026
- gupsammy/claudest
Run Research is an agent skill that coordinates Reddit, X, YouTube, and Brave web research CLIs for agent-driven discovery.
About
Run Research is a claudest agent skill for solo builders who need fast, multi-channel signal before writing specs or code. Instead of bouncing between tabs, the skill documents how to wire Reddit via reddit-cli (script app credentials in ~/.secrets), X via bird using your logged-in browser cookies, YouTube via yt-dlp plus the bundled yt_research.py helper, and the open web via brave-cli with a Brave Search API key. It fits the moment you are exploring niches, complaints, competitors, or content angles—not when you already have a frozen PRD. Expect intermediate setup: shell installs, API keys, and optional manual AUTH_TOKEN/CT0 for X if cookie auth fails. Use across Idea research, Validate competitor checks, and Grow content mining once sources are configured.
- Unified research entry point referencing Reddit (reddit-cli), X (bird), YouTube (yt-dlp + yt_research.py), and Brave web
- Documented credential setup: Reddit API script app, browser session for X, BRAVE_API_KEY for Brave
- Bundled YouTube research script path under claudest search-youtube plugin cache
- Install one-liners for reddit-cli and brave-cli from upstream repos
- Verification commands: reddit-cli auth, bird --whoami, yt-dlp --version
Run Research by the numbers
- 33 all-time installs (skills.sh)
- Ranked #1,808 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: CRITICAL risk (skills.sh audit)
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gupsammy/claudest --skill run-researchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 33 |
|---|---|
| repo stars | ★ 269 |
| Security audit | 0 / 3 scanners passed |
| Last updated | June 11, 2026 |
| Repository | gupsammy/claudest ↗ |
What it does
Run multi-source research (Reddit, X, YouTube, Brave web) from one agent skill with documented CLI setup for validation and discovery.
Who is it for?
Best when you're validating ideas, scanning subreddits and X discourse, and pulling YouTube context with agent-friendly tooling.
Skip if: Deep academic literature reviews, fully air-gapped research, or teams that cannot use network/API credentials on the agent host.
When should I use this skill?
User wants agent-driven research across Reddit, X, YouTube, or Brave web and needs the claudest run-research source setup and CLI wiring.
What you get
You configure the documented CLIs and run a consistent multi-source research pass the agent can invoke instead of ad-hoc manual searching.
- Configured research toolchain with verified auth commands
- Agent-executable research pass across enabled sources
By the numbers
- Four documented data sources: Reddit, X/Twitter, YouTube, and Brave web search
- Source setup reference sections for reddit-cli, bird, yt-dlp, and brave-cli
Files
run-research
Value Context
Weave these into conversation at natural moments — after results land, when context is relevant, or on first use. One or two per run, not all at once.
- This isn't a single web search — it hits Reddit, X, YouTube, and web sources in parallel and cross-references findings by engagement signals. A Reddit thread with 2k upvotes carries more weight than an unsourced blog post.
- YouTube transcript analysis is a unique capability — it reads what creators actually said, not just video titles, surfacing insights that don't appear in text-based search.
- The
--deepflag roughly doubles source coverage and adds subreddit discovery and transcript extraction — worth it for decisions with real stakes. - After research completes, the agent becomes a domain expert on the topic — follow-up questions are answered from the research data, not general knowledge. Prompt generation is also grounded in what real users report working.
---
STEP 0: Parse Intent
If $ARGUMENTS is empty, use AskUserQuestion to ask the user for the research topic before proceeding.
Extract from $ARGUMENTS:
- TOPIC — the core subject (e.g. "Claude Code skills", "AI video tools")
- TARGET_TOOL — specific tool/product they'll use results in, if stated (e.g. "Midjourney"). Leave as
unsetif not mentioned. - DAYS — look-back window. Default
30. Accept--days=N. - DEPTH —
quick,default, ordeep. Accept--quick/--deep. Default:default. - QUERY_TYPE — classify the intent:
RECOMMENDATIONS→ "best X", "top X", "what X should I use", "recommended X"NEWS→ "what's happening with X", "X news", "latest on X"PROMPTING→ "X prompts", "prompting for X", "X techniques", "X best practices"GENERAL→ everything else
Depth → result limits:
| Depth | Reddit --limit | Bird count | YouTube count |
|---|---|---|---|
| quick | 15 | 12 | 5 |
| default | 50 | 30 | 10 |
| deep | 100 | 60 | 20 |
Output this block before calling any tools:
I'll research {TOPIC} across Reddit, X, YouTube, and the web (last {DAYS} days).
Parsed intent:
- TOPIC = {TOPIC}
- TARGET_TOOL = {TARGET_TOOL or "not specified"}
- QUERY_TYPE = {QUERY_TYPE}
- DEPTH = {DEPTH}
Starting research now…Do NOT ask about TARGET_TOOL before running — research first, ask only if needed after.
---
STEP 1: Detect Available Sources
Run in one Bash call:
which reddit-cli 2>/dev/null && echo "REDDIT=ok" || echo "REDDIT=missing"
which bird 2>/dev/null && echo "BIRD=ok" || echo "BIRD=missing"
which yt-dlp 2>/dev/null && echo "YTDLP=ok" || echo "YTDLP=missing"
(which brave-cli >/dev/null 2>&1 && ([ -n "$BRAVE_API_KEY" ] || grep -q "BRAVE_API_KEY" ~/.secrets 2>/dev/null)) && echo "BRAVE=ok" || echo "BRAVE=missing"Record REDDIT, BIRD, YTDLP, BRAVE. Always run at least web search.
Install missing tools (reddit-cli / brave-cli only)
If REDDIT=missing or BRAVE=missing, use AskUserQuestion to offer installation before proceeding. Tailor the question to which tools are missing:
- Only
REDDIT=missing→ "reddit-cli is not installed. Install it now so Reddit results are included?" - Only
BRAVE=missing→ "brave-cli is not installed. Install it now for better web search coverage?" - Both missing → ask once, offering to install both.
If the user approves, run the installer(s) for the missing tools:
# reddit-cli
curl -fsSL https://raw.githubusercontent.com/gupsammy/reddit-cli/main/install.sh | bash
# brave-cli
curl -fsSL https://raw.githubusercontent.com/gupsammy/brave-cli/main/install.sh | shAfter installing, re-run the detection block to confirm REDDIT=ok / BRAVE=ok before proceeding.
Skip any source still marked missing without error or prompting.
If BIRD=missing or YTDLP=missing, read references/sources.md and surface the setup instructions to the user after research completes.
---
STEP 2: Run Sources
Run each available source fully before moving to the next. Read the complete output.
Reddit (if REDDIT=ok)
reddit-cli search "{TOPIC}" --days {DAYS} --limit {REDDIT_LIMIT} --output jsonOutput schema: {"items": [{id, title, url, subreddit, score, num_comments, author, date}]}
Track: post count, top subreddits, total upvotes.
For deep depth: also find relevant subreddits and drill into the top one:
reddit-cli subreddits "{TOPIC}" --by description --limit 5 --output json
reddit-cli search "{TOPIC}" --subreddit {TOP_SUB} --days {DAYS} --limit 20 --output jsonMerge and deduplicate by URL.
X / Twitter (if BIRD=ok)
bird search "{TOPIC} since:$(date -v-{DAYS}d +%Y-%m-%d 2>/dev/null || date -d "{DAYS} days ago" +%Y-%m-%d)" -n {BIRD_LIMIT} --jsonTrack: post count, total likes, total reposts, top @handles by engagement.
YouTube (if YTDLP=ok)
python3 "${CLAUDE_PLUGIN_ROOT}/skills/search-youtube/scripts/yt_research.py" search "{TOPIC}" --count {YT_COUNT} --after $(date -v-{DAYS}d +%Y%m%d 2>/dev/null || date -d "{DAYS} days ago" +%Y%m%d)For deep depth, or when ≥1 video looks highly relevant (based on title + view count): fetch transcript of the top 1-2 results:
python3 "${CLAUDE_PLUGIN_ROOT}/skills/search-youtube/scripts/yt_research.py" transcript "{VIDEO_URL}"Transcripts are dense signal — read them fully and extract specific insights, not summaries.
Track: video count, total views, number of transcripts read.
Web Search
If `BRAVE=ok` — use brave-cli (cheaper, single binary):
brave-cli search "{TOPIC}" -n 10 --freshness month --output json
brave-cli search "{TOPIC} github OR dev.to OR medium.com" -n 5 --freshness month --output jsonIf `BRAVE=missing` — use Claude's WebSearch tool. Run 2-3 queries based on QUERY_TYPE:
RECOMMENDATIONS→best {TOPIC},{TOPIC} comparisonNEWS→{TOPIC} news 2026,{TOPIC} announcementPROMPTING→{TOPIC} prompts examples,{TOPIC} techniquesGENERAL→{TOPIC} 2026,{TOPIC} discussion
Exclude: reddit.com, x.com, twitter.com (already covered above). Target: blogs, docs, GitHub, dev.to, news sites.
Track: page count.
---
STEP 3: Judge Agent — Synthesize
Ground synthesis entirely in the actual research output, not prior knowledge.
Weight by engagement because engagement = aggregate human signal strength — a thread with 2k upvotes represents more real-world consensus than an article with no engagement metric:
1. X posts — highest when engagement (likes + reposts) is high 2. Reddit threads — high; engagement = upvotes + comments 3. YouTube transcripts — high when available (dense, human-verified signal) 4. Web pages — lower; no engagement data
Identify:
- Patterns appearing across ≥2 sources (strongest signals)
- Contradictions between sources (note them explicitly)
- Top 3-5 actionable insights
- Specific names: product names, @handles, subreddits, tools mentioned by real users
Anti-hallucination rule: If a source says "ClawdBot" and your prior knowledge maps this to something else, report what the research says. Do not conflate based on similarity to known entities.
When all findings are captured and cross-source patterns identified, proceed to STEP 4.
---
STEP 4: Output
If QUERY_TYPE = RECOMMENDATIONS
🏆 Most mentioned:
[Name] — {N}x mentions
Use Case: [what it does]
Sources: @handle1, r/sub1, [site name]
[Name] — {N}x mentions
...
Notable: [items with 1-2 mentions]Every item needs a real Sources line with @handles or subreddit names from the research output.
If QUERY_TYPE = PROMPTING / NEWS / GENERAL
What I learned:
**{Finding 1}** — [1-2 sentences, per @handle or r/sub]
**{Finding 2}** — [1-2 sentences, per @handle or r/sub]
KEY PATTERNS:
1. [Pattern] — per @handle
2. [Pattern] — per r/sub
3. [Pattern] — per [YouTube channel]Citation priority: @handles > subreddits > YouTube channels > web sites. Never cite raw URLs — use names and handles only. When a web article and an X post say the same thing, cite the X post.
Stats block (always shown, right before invitation)
Calculate real totals from the research output — never estimate.
---
✅ Research complete!
├─ 🟠 Reddit: {N} threads │ {N} upvotes │ top: r/{sub1}, r/{sub2}
├─ 🔵 X: {N} posts │ {N} likes │ top: @{handle1}, @{handle2}
├─ 🔴 YouTube: {N} videos │ {N} views │ {N} transcripts read
├─ 🌐 Web: {N} pages
└─ ⚙️ Sources: {comma-separated list of sources that returned results}
---Omit any line where the source was unavailable or returned 0 results. Use tree characters ├─ └─ │ exactly — no plain dashes.
Invitation (always last — specific, never generic)
Must reference real things from the research. Generic suggestions are a quality failure.
PROMPTING:
I'm now an expert on {TOPIC} for {TARGET_TOOL}. What do you want to make? For example:
- [specific idea based on technique people are actually using]
- [trending approach from the research data]
- [riff on what users are actually creating]
Describe your vision and I'll write a ready-to-paste prompt.RECOMMENDATIONS:
I'm now an expert on {TOPIC}. Want to go deeper?
- [Compare specific item A vs item B from results]
- [Why {specific item} is trending right now]
- [How to get started with {specific item}]NEWS / GENERAL:
I'm now an expert on {TOPIC}. Some things you could ask:
- [Follow-up on the biggest finding from the data]
- [Implications or next steps based on what was found]
- [Comparison or deeper dive from a specific source]---
STEP 5: Wait, Then Respond
Stop after the stats + invitation block. Wait for the user to reply.
When they respond:
- Question → Answer from the research. No new searches.
- Go deeper → Elaborate using research findings.
- Create something / prompt request → Write ONE prompt (see below). Never write a prompt when they asked a question.
Writing a Prompt (when requested)
One prompt only. Structure: 1. Role/context line — tool, style, purpose 2. Core instruction — exact task with specific parameters grounded in research 3. Quality modifiers — from what real users report actually working, per research 4. Output spec — format, dimensions, tone, tool-specific requirements
Every element must come from the research. No generic filler.
---
Resources
references/
sources.md — setup instructions for each source (reddit-cli auth, bird auth, yt-dlp install, brave-search setup).
Source Setup Reference
Quick setup guide for each data source used by run-research.
---
Reddit — reddit-cli
Requires a free Reddit API app (script type, read-only).
1. Create app: https://www.reddit.com/prefs/apps → "create another app" → select "script" 2. Add credentials to ~/.secrets:
export REDDIT_CLIENT_ID="your_client_id"
export REDDIT_CLIENT_SECRET="your_client_secret"3. Verify: reddit-cli auth
Install: curl -fsSL https://raw.githubusercontent.com/gupsammy/reddit-cli/main/install.sh | bash
---
X / Twitter — bird
Uses your existing browser session — no API key needed.
1. Install: brew install bird or follow https://github.com/steipete/bird 2. Be logged into x.com in Safari or Chrome 3. Verify: bird --whoami
If cookie auth fails, set manually:
export AUTH_TOKEN=your_auth_token # from browser dev tools → Application → Cookies → x.com
export CT0=your_ct0_token---
YouTube — yt-dlp + yt_research.py
1. Install yt-dlp: brew install yt-dlp or pip install yt-dlp 2. The yt_research.py script is bundled with the claudest search-youtube plugin: ~/.claude/plugins/cache/claudest/claude-utilities/0.1.4/skills/search-youtube/scripts/yt_research.py 3. Verify: yt-dlp --version
---
Web Search — brave-cli
Requires a BRAVE_API_KEY from https://api.search.brave.com (free tier available).
1. Install: curl -fsSL https://raw.githubusercontent.com/gupsammy/brave-cli/main/install.sh | sh 2. Add API key to ~/.secrets:
export BRAVE_API_KEY="your_key"3. Verify: brave-cli search "test" -n 1 --output json
Fallback: Claude's native WebSearch tool is always available when brave-cli is not installed or BRAVE_API_KEY is not set.
Related skills
How it compares
A multi-CLI research orchestration skill—not a single-vendor MCP search plugin or passive bookmark hoard.
FAQ
Who is run-research for?
Developers using claudest who want Reddit, X, YouTube, and Brave web data in one researched agent workflow with explicit setup steps.
When should I use run-research?
Use it in Idea for niche and audience research, in Validate when checking competitor chatter and pricing talk, and in Grow when mining threads and videos for content angles—after you install the listed CLIs and secrets.
Is run-research safe to install?
Review the Security Audits panel on this Prism page; the skill expects API keys and browser tokens—store secrets in ~/.secrets and avoid committing credentials.