Claude Agent Skill · by Resciencelab

Reddit

Install Reddit skill for Claude Code from resciencelab/opc-skills.

Install
Terminal · npx
$npx skills add https://github.com/resciencelab/opc-skills --skill reddit
Works with Paperclip

How Reddit fits into a Paperclip company.

Reddit drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md71 lines
Expand
---name: redditdescription: Search and retrieve content from Reddit. Get posts, comments, subreddit info, and user profiles via the public JSON API. Use when user mentions Reddit, a subreddit, or r/ links.--- # Reddit Skill Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API. ## Prerequisites **No API key required!** Reddit's public JSON API works without authentication. **Quick Check**:```bashcd <skill_directory>python3 scripts/get_posts.py python --limit 3``` ## Commands All commands run from the skill directory. ### Subreddit Posts```bashpython3 scripts/get_posts.py python --limit 20           # Hot posts (default)python3 scripts/get_posts.py python --sort new --limit 20python3 scripts/get_posts.py python --sort top --time weekpython3 scripts/get_posts.py python --sort top --time all --limit 10``` ### Search Posts```bashpython3 scripts/search_posts.py "AI agent" --limit 20python3 scripts/search_posts.py "MCP server" --subreddit ClaudeAI --limit 10python3 scripts/search_posts.py "async python" --sort top --time year``` ### Subreddit Info```bashpython3 scripts/get_subreddit.py pythonpython3 scripts/get_subreddit.py ClaudeAI``` ### Post & Comments```bashpython3 scripts/get_post.py abc123                       # Get post by IDpython3 scripts/get_post.py abc123 --comments 50         # With more comments``` ### User Profile```bashpython3 scripts/get_user.py spezpython3 scripts/get_user.py spez --posts 10              # Include recent posts``` ## Sort Options | 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 | ## API Info- **Method**: Public JSON API (no auth needed)- **Trick**: Append `.json` to any Reddit URL- **Rate Limit**: 100 requests/minute- **Docs**: https://www.reddit.com/dev/api