Searches and retrieves Reddit content including posts, comments, subreddit info, and user profiles via the public JSON API.
How this skill is triggered — by the user, by Claude, or both
Slash command
/resciencelab-opc-skills:redditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API.
Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API.
No API key required! Reddit's public JSON API works without authentication.
Quick Check:
cd <skill_directory>
python3 scripts/get_posts.py python --limit 3
All commands run from the skill directory.
python3 scripts/get_posts.py python --limit 20 # Hot posts (default)
python3 scripts/get_posts.py python --sort new --limit 20
python3 scripts/get_posts.py python --sort top --time week
python3 scripts/get_posts.py python --sort top --time all --limit 10
python3 scripts/search_posts.py "AI agent" --limit 20
python3 scripts/search_posts.py "MCP server" --subreddit ClaudeAI --limit 10
python3 scripts/search_posts.py "async python" --sort top --time year
python3 scripts/get_subreddit.py python
python3 scripts/get_subreddit.py ClaudeAI
python3 scripts/get_post.py abc123 # Get post by ID
python3 scripts/get_post.py abc123 --comments 50 # With more comments
python3 scripts/get_user.py spez
python3 scripts/get_user.py spez --posts 10 # Include recent posts
| Sort | Description | Time Options |
|---|---|---|
hot | Trending posts (default) | - |
new | Latest posts | - |
top | Highest voted | hour, day, week, month, year, all |
rising | Gaining traction | - |
controversial | Mixed votes | hour, day, week, month, year, all |
.json to any Reddit URLnpx claudepluginhub asif2bd/opc-skills --plugin requesthuntReads and searches Reddit posts by scraping old.reddit.com. Use for browsing subreddits, searching topics, or monitoring communities with read-only access and no authentication.
Automates Reddit operations via Rube MCP and Composio: search subreddits, create posts, manage comments, and browse top content. Requires a connected Reddit account.
Reads public Reddit data via UnifAPI: subreddit profiles, thread comment trees, user activity, feeds, and trending searches. Read-only, seed-driven discovery.