OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add resciencelab/opc-skills --skill reddit
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.
npx skills add resciencelab/opc-skills --skill reddit
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:
All commands run from the skill directory.
| 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 URLpython3 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 yearpython3 scripts/get_subreddit.py python
python3 scripts/get_subreddit.py ClaudeAIpython3 scripts/get_post.py abc123 # Get post by ID
python3 scripts/get_post.py abc123 --comments 50 # With more commentspython3 scripts/get_user.py spez
python3 scripts/get_user.py spez --posts 10 # Include recent posts