Agent skill · Backend & API

research-by-reddit

基于 Reddit API 进行深度调研并生成研究报告。支持搜索、获取帖子、评论分析、情感分析等功能

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill research-by-reddit-muzhicaomingwang-ai-ideas-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: -Bash(python:*)-Read-Write
Path: skills/analysis/research-by-reddit-muzhicaomingwang-ai-ideas-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Reddit 深度调研技能 基于 Reddit API (PRAW) 进行市场调研、用户反馈收集、技术方案研究等任务。 ## 环境配置 需要设置以下环境变量(在 `.env` 文件中): ```bash REDDIT_CLIENT_ID=your_client_id REDDIT_CLIENT_SECRET=your_client_secret REDDIT_USER_AGENT=your_app_name/1.0 OPENROUTER_API_KEY=your_openrouter_key # 用于 AI 分析 ``` ## 核心脚本 ### 1. search_reddit.py - Reddit 搜索 搜索 Reddit 全站或特定 subreddit 的内容。 ```bash python scripts/search_reddit.py --query "关键词" [选项] ``` **参数:** - `--query`: 搜索关键词(必需) - `--subreddit`: 限定搜索的 subreddit(可选,不指定则全站搜索) - `--limit`: 返回结果数量(默认 25,最大 100) - `--time_filter`: 时间范围 [all, year, month, week, day, hour](默认 all) - `--sort`: 排序方式 [relevance, hot, top, new, comments](默认 relevance) - `--output`: 输出文件路径(可选,默认输出到 stdout) **示例:** ```bash # 搜索 AI 相关讨论 python scripts/search_reddit.py --query "AI productivity tools" --limit 50 --time_filter month # 在特定 subreddit 搜索 python scripts/search_reddit.py --query "团建" --subreddit "China_irl" --limit 30 ``` ### 2. fetch_posts.py - 获取 Subreddit 帖子 获取指定 subreddit 的热门/最新帖子及评论。 ```bash python scripts/fetch_posts.py --subreddit "subreddit名称" [选项] ``` **参数:** - `--subreddit`: 目标 subreddit(必需) - `--sort`: 排序方式 [hot, new, top, rising, controversial](默认 hot) - `--limit`: 帖子数量(默认 25) - `--time_fi

What's inside
Steps it walks through
  1. 环境配置
  2. 核心脚本
  3. 1. searchreddit.py - Reddit 搜索
  4. 2. fetchposts.py - 获取 Subreddit 帖子
  5. 3. analyzereddit.py - 深度分析
  6. 调研工作流
  7. 典型调研流程
  8. 常用调研场景
  9. 输出格式
  10. JSON 格式(结构化数据)
  11. Markdown 格式(可读报告)
  12. 注意事项
  13. 依赖安装
  14. 故障排除
Ships with 1 file
  • metadata.json
Commands it runs
python scripts/search_reddit.py --query "关键词" [选项]
python scripts/search_reddit.py --query "AI productivity tools" --limit 50 --time_filter month
python scripts/search_reddit.py --query "团建" --subreddit "China_irl" --limit 30
python scripts/fetch_posts.py --subreddit "subreddit名称" [选项]
python scripts/fetch_posts.py --subreddit "startups" --sort hot --limit 20
python scripts/fetch_posts.py --subreddit "smallbusiness" --include_comments --comment_limit 20
python scripts/analyze_reddit.py --input "数据文件" --analysis_type "分析类型" [选项]
python scripts/analyze_reddit.py --input data/search_results.json --analysis_type sentiment
python scripts/analyze_reddit.py --input data/posts.json --analysis_type pain_points --format markdown --output reports/pain_points.md
python scripts/search_reddit.py --query "your topic" --limit 100 --output data/search.json
More from claude-skill-registry
All skills →
About this skill
What does the research-by-reddit skill do?

基于 Reddit API 进行深度调研并生成研究报告。支持搜索、获取帖子、评论分析、情感分析等功能

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill research-by-reddit-muzhicaomingwang-ai-ideas-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going