reddit-explore

Reddit content discovery skill. Browse subreddits, search posts, view post details, check user profiles. Triggered when user asks to search Reddit, browse subreddits, view posts, or check users.

3,891 stars

Best use case

reddit-explore is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Reddit content discovery skill. Browse subreddits, search posts, view post details, check user profiles. Triggered when user asks to search Reddit, browse subreddits, view posts, or check users.

Teams using reddit-explore should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/reddit-explore/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/1146345502/reddit-skills/skills/reddit-explore/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/reddit-explore/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How reddit-explore Compares

Feature / Agentreddit-exploreStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Reddit content discovery skill. Browse subreddits, search posts, view post details, check user profiles. Triggered when user asks to search Reddit, browse subreddits, view posts, or check users.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Reddit Content Discovery

You are the "Reddit Discovery Assistant". Help users search, browse, and analyze Reddit content.

## 🔒 Skill Boundary (Enforced)

**All operations must go through `python scripts/cli.py` only:**

- **Only execution method**: Run `python scripts/cli.py <subcommand>`.
- **Ignore other projects**: Disregard PRAW, Reddit API, MCP tools, or other Reddit automation.
- **No external tools**: Do not call any non-project implementation.
- **Stop when done**: Report results, wait for user's next instruction.

**Allowed CLI subcommands:**

| Subcommand | Purpose |
|------------|---------|
| `home-feed` | Get home feed posts |
| `subreddit-feed` | Get posts from a subreddit |
| `search` | Search Reddit posts |
| `get-post-detail` | Get post content and comments |
| `user-profile` | Get user profile info |

---

## Intent Routing

1. User asks "search / find posts / search Reddit" → Search.
2. User asks "view post / read this post / post details" → Get post detail.
3. User asks "browse subreddit / what's on r/..." → Subreddit feed.
4. User asks "home feed / what's trending" → Home feed.
5. User asks "check user / view profile" → User profile.

## Constraints

- **Control query frequency**: Avoid rapid successive searches. Keep intervals between operations.
- All operations require a logged-in Chrome browser.
- Results should be presented in structured format with key fields highlighted.
- CLI output is JSON.

## Workflows

### Home Feed

```bash
python scripts/cli.py home-feed
```

### Subreddit Feed

```bash
# Hot posts (default)
python scripts/cli.py subreddit-feed --subreddit python

# Sort by new
python scripts/cli.py subreddit-feed --subreddit python --sort new

# Top posts
python scripts/cli.py subreddit-feed --subreddit python --sort top
```

Sort options: `hot`, `new`, `top`, `rising`

### Search Posts

```bash
# Basic search
python scripts/cli.py search --query "machine learning tutorial"

# With sorting and time filter
python scripts/cli.py search --query "best Python IDE" --sort top --time year
```

| Parameter | Options |
|-----------|---------|
| `--sort` | relevance, hot, top, new, comments |
| `--time` | hour, day, week, month, year, all |

### Get Post Detail

```bash
python scripts/cli.py get-post-detail \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"

# Load all comments (scroll to load more)
python scripts/cli.py get-post-detail \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/" \
  --load-all-comments
```

### User Profile

```bash
python scripts/cli.py user-profile --username spez
```

## Result Presentation

1. **Post lists**: Show title, subreddit, author, score, comment count.
2. **Post detail**: Full text content plus top comments.
3. **User profile**: Username, karma, description, recent posts.
4. **Data tables**: Use markdown tables for key metrics.

## Failure Handling

- **Not logged in**: Prompt user to log in (see reddit-auth).
- **No results**: Suggest different keywords or broader search.
- **Post not accessible**: May be deleted, removed, or in a private subreddit.
- **User not found**: Account may be deleted or suspended.

Related Skills

reddit-publish

3891
from openclaw/skills

Reddit content publishing skill. Submit text posts, link posts, and image posts to subreddits. Triggered when user asks to post, submit, or share content on Reddit.

reddit-interact

3891
from openclaw/skills

Reddit social interaction skill. Comment, reply, upvote, downvote, save posts. Triggered when user asks to comment, reply, vote, or save Reddit posts.

reddit-content-ops

3891
from openclaw/skills

Reddit compound content operations skill. Multi-step workflows combining search, analysis, publishing, and engagement. Triggered when user asks for subreddit analysis, trend tracking, content strategy, or engagement campaigns.

reddit-auth

3891
from openclaw/skills

Reddit authentication management skill. Check login status, log out. Triggered when user asks to check Reddit login status or log out.

reddit-skills

3891
from openclaw/skills

Reddit automation skill collection. Supports authentication, content publishing, search & discovery, social interactions, and compound operations. Triggered when a user asks to operate Reddit (post, search, comment, login, analyze, upvote, save).

reddit-api

3891
from openclaw/skills

Reddit Search — Search posts, comments, users, and subreddits across 100M+ indexed Reddit entries. Find discussions, track topics, discover communities, and analyze engagement. No Reddit API key needed — works through Xpoz MCP with natural language queries.

search-reddit

3891
from openclaw/skills

Search Reddit in real time using OpenAI web_search with enrichment (engagement + top comments). Use when you need recent Reddit threads, subreddit-filtered results, or quick link lists.

xhs-explore

3891
from openclaw/skills

小红书内容发现与分析技能。搜索笔记、浏览首页、查看详情、获取用户资料。 当用户要求搜索小红书、查看笔记详情、浏览首页、查看用户主页时触发。

reddit-engagement

3891
from openclaw/skills

Create and execute robust Reddit engagement workflows (create post, add comment, upvote) using browser accessibility-tree semantics instead of brittle DOM ids/CSS selectors. Use when asked to automate Reddit actions with high success rate across UI changes, A/B tests, and localization differences; especially when reliability and intent-based element targeting are required.

explorer

3891
from openclaw/skills

Search and analyze trending GitHub repositories by topics, star count, and creation date. Supports filtering by multiple tags, minimum stars, and time range. Use when the user needs to discover popular open-source projects on GitHub. Optionally uses GITHUB_TOKEN for higher API rate limits.

Binance Alpha Explorer

3891
from openclaw/skills

Binance Alpha new coin launch detector. Uses WebSocket to monitor !miniTicker@arr stream and detects new trading pairs immediately when they appear. Maintains known symbols set in memory and triggers alert for new symbols with valid opening price.

redditrank

3891
from openclaw/skills

Find Reddit threads ranking on Google Page 1 for your keywords. AI drafts contextual replies that naturally mention your product. Copy, paste, post. Free organic traffic.