Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

reddit-competitor-analysis-api-skillreddit competitor analysis API 技能

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

423

周安装

18

GitHub Stars

731

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/browser-act/skills --skill reddit-competitor-analysis-api-skill

简介

用于从 Reddit 提取帖子详情与评论,支持关键词和日期过滤。

  • 适用于竞品分析、社区情绪监测和用户洞察研究。
  • 可批量获取结构化数据,无需处理验证码或 IP 封禁。
  • 输入搜索词即可返回清洗后的帖子与评论集合。reddit-competitor-analysis-api-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议控制请求频率,遵守 Reddit API 使用规范以防账号封禁。

SKILL.md

Reddit Competitor Analysis API Skill

📖 Introduction

This skill uses the BrowserAct Reddit Competitor Analysis API template to provide users with a one-stop Reddit data collection service. It can extract full post details and comments from Reddit search results. Just input search keywords and filtering conditions to directly get clean and usable Reddit data.

✨ Features

  1. No hallucinations, ensuring stable and precise data extraction: Pre-set workflows avoid AI generative hallucinations.
  2. No CAPTCHA issues: No need to handle reCAPTCHA or other verification challenges.
  3. No IP access restrictions or geofencing: No need to handle regional IP limitations.
  4. Faster execution: Compared to pure AI-driven browser automation solutions, task execution is faster.
  5. Extremely high cost-effectiveness: Significantly reduces data acquisition costs compared to highly token-consuming AI solutions.

🔑 API Key Guide

Before running, you must check the BROWSERACT_API_KEY environment variable. If it is not set, do not take any other actions; you should request and wait for the user to provide it collaboratively. The Agent must inform the user at this time:

"Since you have not configured the BrowserAct API Key, please go to the BrowserAct Console to get your Key first."

🛠️ Input Parameters

When calling the script, the Agent should flexibly configure the following parameters based on user needs:

  1. Keywords (Search keywords)

- Type: string - Description: Search keywords for Reddit posts. - Example: openclaw

  1. Publication_date (Publication date)

- Type: string - Description: Filter posts by publication date range. - Options: All time, Past year, Past month, Past week, Today, Past hour - Default: Past week

  1. Post_sort_by (Search sort)

- Type: string - Description: Sort Reddit post search results by selected criteria. - Options: Relevance, Hot, Top, New, Comment count - Default: Relevance

  1. Comment_sort_by (Comment sort)

- Type: string - Description: Sort extracted comments by. - Options: Best, Top, New, Controversial, Q&A - Default: Best

  1. Data_limit (Comments per post)

- Type: number - Description: Maximum number of comments to extract per post. - Default: 10

🚀 Usage (Recommended)

The Agent should execute the following independent script to achieve "one-line command to get results". Note that the script path ./scripts/... is relative to this skill's directory:

# Example invocation
python3 -u ./scripts/reddit_competitor_analysis_api.py "keywords" "publication_date" "post_sort_by" "comment_sort_by" data_limit

⏳ Task Status Monitoring

Since this task involves automated browser operations, it may take a long time (several minutes). The script will continuously output status logs with timestamps (e.g., [14:30:05] Task Status: running) while running. Agent Must Know:

  • While waiting for the script to return results, please keep an eye on the terminal output.
  • As long as the terminal is still outputting new status logs, it means the task is running normally. Please do not mistakenly judge it as a deadlock or unresponsiveness.
  • Only if the status remains unchanged for a long time or the script stops outputting and no result is returned, you can consider triggering the retry mechanism.

🔧 OpenClaw Adaptation Guide

Since BrowserAct tasks may take a long time to run (5-20 minutes), when the Agent executes in the OpenClaw environment, it needs to:

  1. Run in background mode (using JSON parameters for exec tool):

- command: "python3 -u./scripts/reddit_competitor_analysis_api.py..." - background: true - timeout: 1800

  1. Or increase yieldMs:

- command: "python3 -u./scripts/reddit_competitor_analysis_api.py..." - yieldMs: 600000 - timeout: 1800

  1. Use process poll to monitor:

- action: "poll" - sessionId: "xxx" - timeout: 300000

📊 Data Output Description

After successful execution, the script will directly parse and print the results from the API response. The results include:

  • post_title: Full post title
  • publish_time: Post publication time
  • like_count: Number of upvotes on the post
  • comment_count: Total number of comments
  • publish_channel: Subreddit where the post was published
  • comment_author: Username of the commenter
  • comment_time_utc: Comment timestamp
  • comments: Full comment text
  • comment_upvotes: Number of upvotes on the comment
  • comment_level: Nesting level of the comment
  • comment_author_url: Link to the commenter's profile
  • reply_to: Parent comment or post being replied to

⚠️ Error Handling & Retry

During the execution of the script, if an error occurs (such as network fluctuation or task failure), the Agent should follow this logic:

  1. Check the output content:

- If the output contains "Invalid authorization", it means the API Key is invalid or expired. At this time, do not retry, but guide the user to recheck and provide the correct API Key. - If the output does not contain "Invalid authorization" but the task execution fails (for example, the output starts with Error: or the returned result is empty), the Agent should automatically try to execute the script again.

  1. Retry limit:

- Automatic retry is limited to one time. If the second attempt still fails, stop retrying and report the specific error message to the user.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.84%
按下载量换算56

Claude

26.8%
按下载量换算40

Cursor

18.2%
按下载量换算27

Gemini CLI

9.57%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills