Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

reddit-insights红迪网见解

Agent Skill

reddit-insights 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

37

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:reddit-insights(红迪网见解)
来源仓库:https://github.com/terminalskills/skills
仓库路径:skills/reddit-insights
安装命令:
npx skills add https://github.com/terminalskills/skills --skill reddit-insights
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/terminalskills/skills --skill reddit-insights

简介

用于查找、检索和筛选相关信息,支持社区洞察类任务。

  • 适合根据关键词或话题快速定位 Reddit 上的讨论内容或用户反馈。
  • 使用时应结合具体任务场景设定筛选条件,确保结果相关性。
  • 安装方式:通过 npx 从终端技能仓库添加,注意维护状态与数据合规性。
  • reddit-insights 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reddit Insights

Overview

Perform semantic research across Reddit to extract actionable insights. Search for discussions, analyze sentiment patterns, identify recurring pain points, validate product ideas, and discover niche opportunities. Uses Reddit's public JSON API to access posts and comments without requiring authentication.

Instructions

When a user asks you to research Reddit for insights, follow these steps:

Step 1: Define the research scope

Clarify with the user:

  • Topic/query: What subject, product, or idea to research
  • Subreddits (optional): Specific subreddits to focus on, or search broadly
  • Time range: Recent (week/month) or historical (year/all)
  • Research goal: Pain points, sentiment, idea validation, competitor analysis, or trend discovery
  • Output format: Summary report, raw data, or structured analysis

Step 2: Fetch Reddit data via public JSON API

Access Reddit's public JSON endpoints without authentication:

import requests
import time

HEADERS = {"User-Agent": "research-bot/1.2.0"}

def search_reddit(query, subreddit=None, sort="relevance", time_filter="year", limit=100):
    """Search Reddit posts via public JSON API."""
    if subreddit:
        url = f"https://www.reddit.com/r/{subreddit}/search.json"
        params = {"q": query, "sort": sort, "t": time_filter,
                  "limit": min(limit, 100), "restrict_sr": "on"}
    else:
        url = "https://www.reddit.com/search.json"
        params = {"q": query, "sort": sort, "t": time_filter,
                  "limit": min(limit, 100)}

    response = requests.get(url, headers=HEADERS, params=params, timeout=30)
    response.raise_for_status()
    time.sleep(1)  # Rate limiting

    data = response.json()
    posts = []
    for child in data["data"]["children"]:
        post = child["data"]
        posts.append({
            "title": post["title"],
            "selftext": post.get("selftext", ""),
            "subreddit": post["subreddit"],
            "score": post["score"],
            "num_comments": post["num_comments"],
            "url": f"https://reddit.com{post['permalink']}",
            "created_utc": post["created_utc"],
        })
    return posts

def get_post_comments(permalink, limit=200):
    """Fetch comments for a specific post."""
    url = f"https://www.reddit.com{permalink}.json"
    params = {"limit": limit, "sort": "top"}
    response = requests.get(url, headers=HEADERS, params=params, timeout=30)
    response.raise_for_status()
    time.sleep(1)

    comments = []
    data = response.json()
    if len(data) > 1:
        for child in data[1]["data"]["children"]:
            if child["kind"] == "t1":
                c = child["data"]
                comments.append({
                    "body": c["body"],
                    "score": c["score"],
                    "author": c.get("author", "[deleted]"),
                })
    return comments

Step 3: Analyze the content

Process the collected posts and comments to extract insights:

Pain point extraction:

  • Search for phrases like "I wish", "frustrated with", "hate that", "switched from", "biggest problem"
  • Group recurring complaints by theme
  • Count frequency and upvote weight of each pain point

Sentiment analysis:

  • Categorize posts/comments as positive, negative, neutral, or mixed
  • Track sentiment trends over time
  • Identify polarizing topics

Idea validation:

  • Find existing discussions about similar solutions
  • Look for "someone should build" or "is there a tool that" posts
  • Assess demand signals: upvotes, comment engagement, frequency of asks

Competitive analysis:

  • Search for competitor product names
  • Analyze praise and criticism patterns
  • Identify feature gaps users mention

Step 4: Compile the research report

Structure the output as an actionable report:

# Reddit Research Report: [Topic]

## Research Parameters
- Query: [search terms used]
- Subreddits: [list of subreddits searched]
- Time range: [period]
- Posts analyzed: [count]
- Comments analyzed: [count]

## Key Findings

### Top Pain Points
1. **[Pain point 1]** (mentioned 23 times, avg score: 45)
   - Example: "[quoted user comment]"
   - Subreddits: r/subreddit1, r/subreddit2

2. **[Pain point 2]** (mentioned 18 times, avg score: 32)
   - Example: "[quoted user comment]"

### Sentiment Overview
- Positive: 35% | Neutral: 40% | Negative: 25%
- Most positive aspect: [topic]
- Most negative aspect: [topic]

### Opportunity Signals
- [Unmet need identified from discussions]
- [Feature request pattern observed]
- [Gap in existing solutions mentioned]

### Notable Discussions
1. [Post title](url) - [X] upvotes, [Y] comments
   Summary: [brief takeaway]

## Recommendations
- [Actionable recommendation 1]
- [Actionable recommendation 2]
- [Actionable recommendation 3]

Step 5: Save the report

cat > reddit_research_[topic].md << 'EOF'
[compiled report]
EOF

Examples

Example 1: Validate a SaaS idea

User request: "Research Reddit to see if people need a better project management tool for small agencies."

Research approach:

  1. Search queries: "project management agency", "PM tool freelancer", "manage client projects"
  2. Target subreddits: r/agency, r/freelance, r/smallbusiness, r/projectmanagement
  3. Look for: complaints about existing tools, feature wish lists, "what do you use" threads
  4. Analyze: frequency of complaints, which tools are mentioned negatively, unmet needs

Key findings format:

Pain Points Found:
1. "Asana/Monday are too complex for a 5-person team" (seen 15 times)
2. "No good tool combines project tracking with client invoicing" (seen 9 times)
3. "Switching between 4 tools to manage one project" (seen 12 times)

Validation Signal: MODERATE-STRONG
- Clear demand exists, but space is crowded
- Differentiation opportunity: simplicity + invoicing integration

Example 2: Analyze sentiment around a product launch

User request: "What is Reddit saying about the new Arc browser?"

Research approach:

  1. Search for "Arc browser" across all subreddits
  2. Fetch top 50 posts and their comments from the past 3 months
  3. Categorize sentiment per feature area (UI, speed, extensions, sync)
  4. Identify most loved and most criticized features

Example 3: Discover underserved niches

User request: "Find underserved developer tool niches by mining Reddit complaints."

Research approach:

  1. Search r/programming, r/webdev, r/devops for frustration keywords
  2. Queries: "annoying that", "wish there was", "no good tool for", "why is there no"
  3. Group complaints by category (testing, deployment, documentation, etc.)
  4. Rank by frequency and engagement
  5. Cross-reference with existing tools to identify true gaps

Guidelines

  • Always add a 1-second delay between API requests to respect Reddit's rate limits.
  • Set a descriptive User-Agent header. Reddit blocks requests without one.
  • Reddit's public JSON API has a 100-post limit per request. Use pagination with the after parameter for larger datasets.
  • Do not scrape user profiles or collect personally identifiable information.
  • Present findings with context: a single upvoted complaint does not equal a validated market need. Look for patterns across multiple discussions.
  • Always include source links so the user can verify findings and read full context.
  • Distinguish between vocal minorities and genuine widespread sentiment. A post with 500 upvotes carries more weight than one with 3.
  • Note the subreddit context: complaints in r/technology have different implications than those in r/startups.
  • For idea validation, look for both demand signals (people wanting a solution) and supply signals (existing tools already addressing the need).
  • Save all raw data alongside the analysis so the user can explore further.
  • If the public API is rate-limited or returns errors, suggest the user try again after a brief wait.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.69%
按下载量换算28

Claude

28.89%
按下载量换算23

Cursor

18.42%
按下载量换算15

Gemini CLI

9.66%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills