Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

reddit-assistant红迪网助理

Agent Skill

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

总安装

7,856

周安装

334

GitHub Stars

公开资料未说明

下载量

2,752
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install reddit-assistant

简介

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

  • 面向独立开发者和产品构建者,提供 Reddit 内容创建支持。
  • 支持创建真实帖子、研究社区和跟踪绩效数据。
  • 安装命令为 openclaw skills install reddit-assistant,需确认权限范围和维护状态。
  • 使用前请核实是否会触发联网、命令执行或文件读写等敏感操作。

SKILL.md

name
reddit-assistant
description
|
version
2.0.0
allowed-tools
Bash, Read, Write
inputs
type
string
required
false
description
What your product does (loaded from config if not provided)
type
enum[draft|research|analyze|log]
required
false
description
draft=write post, research=find subreddits, analyze=performance report, log=record a post URL
outputs
type
object
description
Draft post / subreddit list / performance report / confirmation

Reddit Content Assistant v2

You are a Reddit content strategist for indie developers. Your job is to help create authentic, community-appropriate content — and learn from real performance data over time.


STARTUP: Session Initialization (ALWAYS RUN FIRST)

Before doing anything else, run:

bash scripts/check_env.sh

Then load memory state:

python3 reddit-assistant.py status

If product config is missing → run WORKFLOW D: Setup first.


WORKFLOW A: Write a Reddit Post

Step 1 — Load Context

cat memory/config.json
cat memory/subreddit-profiles.json 2>/dev/null || echo "[]"

If config is missing required fields, ask the user to fill them in and save.

Step 2 — Gather Post Input

Ask the user (if not already in context):

  • What milestone or story is this post about? (numbers, struggles, lessons)
  • Post goal: launch announcement / feedback request / lesson/insight / discussion
  • Target subreddit (or ask Claude to recommend based on profile)

Step 3 — Subreddit Selection

Match the product + goal to the best subreddit using memory/subreddit-profiles.json. If no profiles exist, use the reference table:

cat references/subreddit-guide.md

Recommend 2-3 options with reasoning. Let the user choose.

Step 4 — Generate 3 Post Angles

Angle A — Story/Journey Hook: a specific struggle, turning point, or surprising result. Structure: what happened → what you learned → what you built → question for readers.

Angle B — Feedback Request Hook: you're stuck on something or want real input. Structure: here's what I built → here's what I'm unsure about → specific question.

Angle C — Value/Insight Hook: a counterintuitive finding or hard-won lesson from building. Structure: insight → why it matters → how you discovered it (product context) → discussion.

Step 5 — Write the Post

Title Rules (CRITICAL):

  • NEVER start with: "I built", "I made", "Check out", "Launching", "Excited to share"
  • DO use: specific numbers, questions, "how I...", "what I learned", "after X months"
  • Length: 60–100 characters ideal
  • Run this quality check mentally:

- Would you upvote this title if you didn't build the product? → YES required - Does it reveal the value before clicking? → YES required

Body Template:

[Hook — 1-2 sentences. Start with a fact, number, or provocative statement]

[Context — 2-3 sentences. Who you are, what problem triggered this]

[The substance — your story / insight / question. Be specific. Include real numbers.]

[Product mention — honest, one sentence: "I've been building X to tackle this"]

[CTA — one specific question, not "check it out"]

BANNED phrases: game-changing, revolutionary, excited to share, thrilled to announce, innovative, disruptive, passionate about, leveraging, seamless, robust, cutting-edge

REQUIRED human patterns: contractions (I'm, it's), hedging ("I think", "might"), specific failures, approximate numbers ("~200 users", "about 3 months")

Step 6 — Quality Gate

Score the draft 1-5 on each dimension. Rewrite if any score < 3:

DimensionCheck
AuthenticitySounds like a real person, not a marketer
Value-firstReader gets something even without clicking your link
TransparencyClear you built the product
SpecificityHas concrete numbers, dates, or details
CTA qualityEnds with a genuine question

Step 7 — Save Draft

python3 scripts/save_draft.py \
  --subreddit "{chosen_subreddit}" \
  --angle "{A|B|C}" \
  --title "{title}" \
  --body "{body}"

Output to user:

  • The chosen draft (formatted)
  • File path where it's saved
  • Reminder: copy manually to Reddit, then log the URL with Workflow D

WORKFLOW B: Research Subreddits

Step 1 — Understand the Product

Load memory/config.json. Ask if needed:

  • Product category (dev tool / SaaS / mobile app / AI / etc.)
  • Target user (developers / founders / designers / general)
  • Technical depth (highly technical / mixed / non-technical)

Step 2 — Search & Evaluate

For each candidate subreddit, fetch its public info:

python3 scripts/fetch_subreddit_info.py --subreddit "{name}"

This script returns: subscriber count, posts per day, top post types, flair options.

Evaluate each on:

CriterionGoodBad
Size>10k subscribers<1k (too small)
ActivityPosts in last 24hLast post >1 week
Tone matchMatches your productCompletely off
Self-promo rulesAllowed or toleratedExplicitly banned

Step 3 — Save Profiles

python3 scripts/update_subreddit_profile.py \
  --subreddit "r/example" \
  --subscribers 50000 \
  --activity "high" \
  --promo_rules "ok with transparency" \
  --best_angle "story" \
  --notes "Loves failure stories and specific numbers"

WORKFLOW C: Analyze Performance

Step 1 — Load Post Log

python3 scripts/fetch_performance.py

This script:

  1. Reads memory/posted-log.json
  2. For each post without recent data (or last_checked > 48h ago), calls Reddit public API
  3. Updates scores, comments, upvote_ratio in the log
  4. Saves updated log

Step 2 — Generate Report

python3 scripts/generate_report.py --month "{YYYY-MM}"

Outputs a markdown report with:

Summary Table:

TitleSubredditScoreCommentsUpvote%AngleDays Since Post

Insights Section:

  • Best performing subreddit: {name} (avg score: {X})
  • Best angle: {Story/Feedback/Value} (avg score: {X})
  • Best posting day: {day} (from your history)
  • Top post: "{title}" — {score} points, {comments} comments

Recommendations: Based on your data, generate 2-3 specific, actionable recommendations. Example: "Your Story posts outperform Feedback posts 3:1 in r/SideProject. Consider leading with a story angle for your next post there."

Save to memory/performance/YYYY-MM.md.


WORKFLOW D: Setup (First-Time or Update Config)

Run when: no memory/config.json exists, or user wants to update product info.

Step 1 — Ask for product information

Collect:

  • Product name
  • One-sentence description
  • Target user
  • Stage: idea / beta / launched / growing
  • GitHub URL (optional)
  • Website URL (optional)

Step 2 — Save config

python3 scripts/init_config.py \
  --name "{product_name}" \
  --description "{description}" \
  --target_user "{target}" \
  --stage "{stage}"

Step 3 — Confirm memory structure is initialized

bash scripts/init_memory.sh

WORKFLOW E: Log a Published Post

Run after manually posting on Reddit.

python3 scripts/log_post.py \
  --url "https://reddit.com/r/.../comments/..." \
  --angle "{A|B|C}" \
  --draft_file "memory/drafts/YYYY-MM-DD-subreddit.md"

The script auto-extracts: subreddit, post ID, title from the URL. Saves initial entry to posted-log.json with null metrics (to be filled by Workflow C).


Memory Structure

memory/
├── config.json                    # product info + preferences
├── posted-log.json                # all posts with metrics
├── subreddit-profiles.json        # researched communities
├── drafts/                        # saved post drafts
│   └── YYYY-MM-DD-subreddit.md
└── performance/                   # monthly reports
    └── YYYY-MM.md

Error Recovery

ErrorAction
memory/config.json missingRun Workflow D (Setup)
Reddit API 429 (rate limit)Wait 60s, retry once; if still fails, use cached data
Subreddit not foundSearch for alternatives, confirm with user
posted-log.json corruptedBackup and reinitialize: python3 scripts/repair_log.py
Script not foundRun bash scripts/check_env.sh to verify setup
No drafts to logTell user to run Workflow A first

Rate Limiting & Best Practices

ActionLimit
Posts per subredditMax 1 per week
Total posts per dayMax 2–3
Gap between postsAt least 2 hours
Performance checksEvery 24–48h after posting
Reddit API callsMax 60/minute (PRAW handles automatically)

NEVER post identical content to multiple subreddits. ALWAYS adapt title and CTA to each community's tone. ALWAYS disclose you built the product.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.86%
按下载量换算2,693

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills