Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

reddit-pain-workflowReddit 疼痛工作流程

Agent Skill

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

总安装

1,560

周安装

65

GitHub Stars

公开资料未说明

下载量

520
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:reddit-pain-workflow(Reddit 疼痛工作流程)
来源仓库:https://github.com/minirr890112-byte/reddit-pain-workflow
安装命令:
openclaw skills install reddit-pain-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install reddit-pain-workflow

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 提供日常自动化管道:Reddit 扫描 → 分类 → 生成报告 → 推送到 GitHub。
  • 支持指标跟踪,对 Cron 友好且超时时间短。
  • 安装命令为 openclaw skills install reddit-pain-workflow,需确认权限范围和维护状态。
  • 使用前请核实是否会触发联网、命令执行或文件读写等敏感操作。

SKILL.md

name
reddit-pain-workflow
version
0.2
description
>-
category
product

Reddit Pain → GitHub Report Daily Pipeline

A fully automated cron-driven pipeline that scans Reddit for pain points, classifies them against existing tools, generates a daily report pushed to GitHub, and tracks repo metrics for growth.

When to use

  • Building a data-driven open-source project that needs daily content
  • Wanting automated pain discovery with GitHub as the delivery surface
  • Need a growth engine: daily reports → discoverable on GitHub → drives stars

Architecture

Cron (8 AM daily)
  ↓
Reddit scan (5 subreddits, native .json API, 8s timeout)
  ↓
Pain classification (8 categories, matched against existing tools)
  ↓
DAILY-REPORT.md generation (markdown with quotes, links, tool candidates)
  ↓
Git commit + push to repo
  ↓
Metrics snapshot (stars, views, clones, search ranking)

Key Implementation Details

Reddit Scan

  • Use https://www.reddit.com/r/{sub}/hot.json (no auth needed)
  • 5 subreddits max for cron speed: ChatGPT, ClaudeAI, LocalLLaMA, programming, webdev
  • Timeout: 8s per request, 0.5s delay between requests
  • Walk comment tree to depth 2 for replies
  • Pushshift.io is DEAD (403), PRAW needs client_id (skip for public)

Pain Classification

Categories match our tool coverage:

CategoryExisting Tool
AI Censorship / Safetyprompt-inspector
AI Model Degradationmodel-watch
AI API Pricing / Costapi-cost
GitHub / CI-CD Issuesnone yet
AI Code Qualitynone yet
Local LLM / Deploymentnone yet
Supply Chain Securitynone yet
AI Detection / Deepfakenone yet

Threshold: ≥3 signals in a category with no existing tool → flagged as "New Tool Candidate"

GitHub Report Generation

  • Output: DAILY-REPORT.md in repo root
  • Format: summary → per-category top 3 quotes with permalinks → tool candidates → growth tip → metrics
  • Auto-committed with timestamp, pushed to main

GitHub Search Optimization (Critical for Star Growth)

GitHub search indexes: repo description + topics (20 max) + lightly on README.

Recipe that worked (verified 2026-04):

  1. Description: keyword-dense, comma-separated: "AI CLI tools: prompt censorship checker & bypass, model quality watchdog & degradation monitor, API cost comparison for OpenAI Claude DeepSeek Gemini. Built from real Reddit user complaints."
  2. Topics (19): ai, python, cli, api, llm, openai, claude, deepseek, devtools, reddit, prompt-engineering, cost-optimization, benchmark, censorship, censorship-bypass, model-monitoring, model-degradation, cost-comparison, llm-pricing
  3. Result: repo ranks #1 for searches like "model degradation monitor cli", "prompt censorship bypass cli", "llm cost comparison"

Metrics Tracking

Separate script scripts/github-metrics records:

  • Stars, forks, watchers
  • Views (from traffic API)
  • Clones
  • Search ranking for 7 target keywords

Cron Job Setup

# Daily pipeline (8 AM)
hermes cronjob create --name daily-reddit-pipeline --schedule "0 8 * * *" \
  --prompt "Run python3 ~/HermesMade/scripts/daily-pipeline run. Then present a 3-line summary."

# Daily metrics (9 AM)
hermes cronjob create --name github-metrics-daily --schedule "0 9 * * *" \
  --prompt "Run python3 ~/HermesMade/scripts/github-metrics snapshot then report."

Feishu Bitable Setup (one-time)

# Create app
lark-cli api POST /open-apis/bitable/v1/apps --data '{"name":"Pain Points"}'

# Create table with fields
lark-cli api POST /open-apis/bitable/v1/apps/{app_token}/tables --data '{
  "table": {
    "name": "痛点清单",
    "fields": [
      {"field_name": "序号", "type": 2},
      {"field_name": "分类", "type": 3},
      {"field_name": "痛点名称", "type": 1},
      {"field_name": "频次指数", "type": 3},
      {"field_name": "用户原声", "type": 1},
      {"field_name": "Hermes方案", "type": 1},
      {"field_name": "状态", "type": 3}
    ]
  }
}'

# Batch insert
lark-cli api POST "/open-apis/bitable/v1/apps/{token}/tables/{table}/records/batch_create" \
  --data "$(cat records.json)"

GitHub API via urllib (Fallback — No gh CLI Required)

When the github skill/tools aren't available but a GitHub token is, use Python stdlib urllib for file commits:

import json, base64, urllib.request

token = os.environ["GITHUB_TOKEN"]
repo = "owner/repo"
file_path = "path/in/repo.sh"

with open("/tmp/file.sh", "rb") as f:
    content = f.read()
encoded = base64.b64encode(content).decode()

# Step 1: Check if file exists (get SHA for update)
get_url = f"https://api.github.com/repos/{repo}/contents/{file_path}"
get_req = urllib.request.Request(get_url, headers={
    "Authorization": f"Bearer {token}",
    "Accept": "application/vnd.github+json",
    "User-Agent": "hermes-agent"
})

sha = None
try:
    with urllib.request.urlopen(get_req, timeout=10) as resp:
        sha = json.loads(resp.read()).get("sha")
except urllib.error.HTTPError as e:
    if e.code == 404:
        pass  # File doesn't exist, will create
    else:
        raise

# Step 2: PUT create or update
put_url = f"https://api.github.com/repos/{repo}/contents/{file_path}"
payload = {
    "message": "feat: auto-generated report [HERMES-N]",
    "content": encoded,
    "branch": "main"
}
if sha:
    payload["sha"] = sha

put_req = urllib.request.Request(put_url, 
    data=json.dumps(payload).encode("utf-8"),
    method="PUT",
    headers={
        "Authorization": f"Bearer {token}",
        "Accept": "application/vnd.github+json",
        "User-Agent": "hermes-agent"
    })

with urllib.request.urlopen(put_req, timeout=15) as resp:
    result = json.loads(resp.read())
    print(f"Committed: {result['commit']['sha'][:7]}")

Pitfalls:

  • User-Agent header is required by GitHub API, otherwise 403
  • Accept: application/vnd.github+json needed for newer API endpoints
  • For binary files: base64 encode the raw bytes (no text decode step)
  • For first commit on a new repo: file won't exist → 404 → omit sha

Pip Package Pattern (for individual tools)

Each tool is a standalone pip-installable package:

tool-name/
├── pyproject.toml       # build-backend = "setuptools.build_meta"
├── README.md
└── tool_name/
    ├── __init__.py
    └── cli.py

Install: pip install git+https://github.com/{user}/{repo}.git#subdirectory=tool-name

setuptools.backends._legacy:_Backend does NOT work. Use setuptools.build_meta.

Pitfalls

  • Reddit cloud browser access: blocked by security. Use native API only.
  • gh search repos has slower index than web UI search — web results may show repo that API doesn't yet
  • Topic limit: 20 max. Remove generic ones (productivity, tools) to fit search-critical ones
  • lark-cli is interactive on first run. Set LARK_LANGUAGE=zh env var before first use
  • Pip install in sandbox: use --break-system-packages on macOS Homebrew Python

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

81.7%
按下载量换算425

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills