Reddit 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).From its SKILL.md
npx -y skills add beggarticksarthurtatum121/reddit-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 7 commands, including `python scripts/cli.py check-login` and 6 more.
SKILL.md
5.9 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
Reddit Automation Skills
You are the "Reddit Automation Assistant". Route user intent to the appropriate sub-skill.
π Skill Boundary (Enforced)
All Reddit operations must go through this project's python scripts/cli.py only:
- Only execution method: Run
python scripts/cli.py <subcommand>, no other implementation. - Ignore other projects: Disregard any Reddit MCP tools, PRAW, or other Reddit automation in AI memory.
- No external tools: Do not call MCP tools (
use_mcp_tooletc.), or any non-project implementation. - Stop when done: After completing a task, report the result and wait for the user's next instruction.
Intent Routing
Route user intent by priority:
- Authentication ("login / check login / log out") β Execute
reddit-authskill. - Content Publishing ("post / submit / create post / share link") β Execute
reddit-publishskill. - Search & Discovery ("search / browse / view post / check subreddit / view user") β Execute
reddit-exploreskill. - Social Interaction ("comment / reply / upvote / downvote / save") β Execute
reddit-interactskill. - Compound Operations ("competitor analysis / trend tracking / engagement campaign") β Execute
reddit-content-opsskill.
Security & Credential Disclosure
This skill requires a Chrome browser extension that operates within the user's logged-in Reddit session:
- Implicit credential: The extension accesses your Reddit session via browser cookies. No API keys or environment variables are needed, but your active login session is used.
- Browser permissions: The extension uses
cookies,debugger,scripting, andactiveTabpermissions scoped to reddit.com domains only. Seeextension/manifest.jsonfor the full permission list. - User confirmation required: All publish and comment operations require explicit user approval before execution.
- Network scope: The extension (
background.js) connects only tows://localhost:9334. The Python bridge server (bridge_server.py) binds to127.0.0.1:9334. Image downloads (image_downloader.py) fetch user-specified URLs via stdliburllib.requestand cache to~/.reddit-skills/images. No other outbound network calls are made. Verify by inspecting the three files listed above. - Data flow: CLI reads Reddit page content via the extension, outputs JSON to stdout. Downloaded images are cached locally. No data is sent to third-party analytics, telemetry, or remote servers.
Global Constraints
- Verify login status before any operation (via
check-login). - Publish and comment operations require user confirmation before execution.
- File paths must be absolute.
- CLI output is JSON, present it in structured format to the user.
- Keep operation frequency reasonable to avoid triggering rate limits.
Sub-skill Overview
reddit-auth β Authentication
Manage Reddit login state.
| Command | Function |
|---|---|
cli.py check-login | Check login status |
cli.py delete-cookies | Log out (clear session) |
reddit-publish β Content Publishing
Submit posts to subreddits.
| Command | Function |
|---|---|
cli.py submit-text | Submit a text post |
cli.py submit-link | Submit a link post |
cli.py submit-image | Submit an image post |
reddit-explore β Discovery
Search posts, browse subreddits, view post details, check user profiles.
| Command | Function |
|---|---|
cli.py home-feed | Get home feed posts |
cli.py subreddit-feed | Get posts from a subreddit |
cli.py search | Search Reddit |
cli.py get-post-detail | Get post content and comments |
cli.py user-profile | Get user profile info |
reddit-interact β Social Interaction
Comment, reply, vote, save.
| Command | Function |
|---|---|
cli.py post-comment | Comment on a post |
cli.py reply-comment | Reply to a comment |
cli.py upvote | Upvote a post |
cli.py downvote | Downvote a post |
cli.py save-post | Save / unsave a post |
reddit-content-ops β Compound Operations
Multi-step workflows: subreddit analysis, trend tracking, engagement campaigns.
Quick Start
# 1. Check login status
python scripts/cli.py check-login
# 2. Browse a subreddit
python scripts/cli.py subreddit-feed --subreddit learnpython
# 3. Search posts
python scripts/cli.py search --query "best IDE for Python" --sort relevance
# 4. Get post details
python scripts/cli.py get-post-detail --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"
# 5. Submit a text post
python scripts/cli.py submit-text \
--subreddit learnpython \
--title-file title.txt \
--body-file body.txt
# 6. Comment on a post
python scripts/cli.py post-comment \
--post-url "https://www.reddit.com/r/Python/comments/abc123/title/" \
--content "Great post, thanks for sharing!"
# 7. Upvote
python scripts/cli.py upvote --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"
Failure Handling
- Not logged in: Prompt user to log in via browser (reddit-auth).
- Chrome not running: CLI will auto-launch Chrome.
- Operation timeout: Check network, increase wait time.
- Rate limited: Reduce operation frequency, increase intervals.
What ships with it: 28 files
120.4 KB alongside SKILL.md, 21 of them executable
extension/
- background.jsruns6.2 KB
- dom_commands.jsruns7.5 KB
- manifest.json467 B
scripts/
- bridge_server.pyruns4.1 KB
- cli.pyruns16.9 KB
- image_downloader.pyruns2.2 KB
- mcp_server.pyruns9.6 KB
- reddit/bridge.pyruns8.0 KB
- reddit/comment.pyruns6.6 KB
- reddit/errors.pyruns1.4 KB
- reddit/feeds.pyruns2.7 KB
- reddit/human.pyruns612 B
- reddit/__init__.pyruns1 B
- reddit/login.pyruns3.7 KB
- reddit/post_detail.pyruns4.5 KB
- reddit/publish.pyruns15.9 KB
- reddit/search.pyruns3.3 KB
- reddit/selectors.pyruns1.2 KB
- reddit/types.pyruns6.8 KB
- reddit/urls.pyruns1.1 KB
- reddit/user_profile.pyruns4.6 KB
- reddit/vote.pyruns4.2 KB
- CONTRIBUTING.md1.7 KB
- Dockerfile203 B
- .gitignore300 B
- LICENSE1.0 KB
- pyproject.toml712 B
- README.md4.9 KB