From antigravity-awesome-skills
Automate Reddit tasks via Rube MCP (Composio): search subreddits, create posts, manage comments, and browse top content. Always search tools first for current schemas.
npx claudepluginhub absjaded/antigravity-awesome-skillsThis skill uses the workspace's default tool permissions.
Automate Reddit operations through Composio's Reddit toolkit via Rube MCP.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Automate Reddit operations through Composio's Reddit toolkit via Rube MCP.
RUBE_MANAGE_CONNECTIONS with toolkit redditRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit redditWhen to use: User wants to find posts across subreddits
Tool sequence:
REDDIT_SEARCH_ACROSS_SUBREDDITS - Search for posts matching a query [Required]Key parameters:
query: Search termssubreddit: Limit search to a specific subreddit (optional)sort: Sort results by 'relevance', 'hot', 'top', 'new', 'comments'time_filter: Time range ('hour', 'day', 'week', 'month', 'year', 'all')limit: Number of results to returnPitfalls:
time_filter parameter only works with certain sort optionsWhen to use: User wants to submit a new post to a subreddit
Tool sequence:
REDDIT_LIST_SUBREDDIT_POST_FLAIRS - Get available post flairs [Optional]REDDIT_CREATE_REDDIT_POST - Submit the post [Required]Key parameters:
subreddit: Target subreddit name (without 'r/' prefix)title: Post titletext: Post body text (for text posts)url: Link URL (for link posts)flair_id: Flair ID from the subreddit's flair listPitfalls:
When to use: User wants to comment on posts or manage existing comments
Tool sequence:
REDDIT_RETRIEVE_POST_COMMENTS - Get comments on a post [Optional]REDDIT_POST_REDDIT_COMMENT - Add a comment to a post or reply to a comment [Required]REDDIT_EDIT_REDDIT_COMMENT_OR_POST - Edit an existing comment [Optional]REDDIT_DELETE_REDDIT_COMMENT - Delete a comment [Optional]Key parameters:
post_id: ID of the post (for retrieving or commenting on)parent_id: Full name of the parent (e.g., 't3_abc123' for post, 't1_xyz789' for comment)body: Comment text contentthing_id: Full name of the item to edit or deletePitfalls:
When to use: User wants to view top or trending content from a subreddit
Tool sequence:
REDDIT_GET_R_TOP - Get top posts from a subreddit [Required]REDDIT_GET - Get posts from a subreddit endpoint [Alternative]REDDIT_RETRIEVE_REDDIT_POST - Get full details for a specific post [Optional]Key parameters:
subreddit: Subreddit nametime_filter: Time range for top posts ('hour', 'day', 'week', 'month', 'year', 'all')limit: Number of posts to retrievepost_id: Specific post ID for full detailsPitfalls:
When to use: User wants to edit or delete their own posts
Tool sequence:
REDDIT_EDIT_REDDIT_COMMENT_OR_POST - Edit a post's text content [Optional]REDDIT_DELETE_REDDIT_POST - Delete a post [Optional]REDDIT_GET_USER_FLAIR - Get user's flair in a subreddit [Optional]Key parameters:
thing_id: Full name of the post (e.g., 't3_abc123')body: New text content (for editing)subreddit: Subreddit name (for flair)Pitfalls:
Prefixes:
t1_ = Comment (e.g., 't1_abc123')
t2_ = Account (e.g., 't2_xyz789')
t3_ = Post/Link (e.g., 't3_def456')
t4_ = Message
t5_ = Subreddit
Usage:
1. Retrieve a post to get its fullname (t3_XXXXX)
2. Use fullname as parent_id when commenting
3. Use fullname as thing_id when editing/deleting
limit for items per page (max 100)after tokenafter value in subsequent requests to get next page1. Call REDDIT_LIST_SUBREDDIT_POST_FLAIRS with subreddit name
2. Find matching flair by text or category
3. Extract flair_id
4. Include flair_id when creating the post
Rate Limits:
Content Rules:
ID Formats:
Text Formatting:
text formatu/username, subreddits with r/subreddit| Task | Tool Slug | Key Params |
|---|---|---|
| Search Reddit | REDDIT_SEARCH_ACROSS_SUBREDDITS | query, subreddit, sort, time_filter |
| Create post | REDDIT_CREATE_REDDIT_POST | subreddit, title, text/url |
| Get post comments | REDDIT_RETRIEVE_POST_COMMENTS | post_id |
| Add comment | REDDIT_POST_REDDIT_COMMENT | parent_id, body |
| Edit comment/post | REDDIT_EDIT_REDDIT_COMMENT_OR_POST | thing_id, body |
| Delete comment | REDDIT_DELETE_REDDIT_COMMENT | thing_id |
| Delete post | REDDIT_DELETE_REDDIT_POST | thing_id |
| Get top posts | REDDIT_GET_R_TOP | subreddit, time_filter, limit |
| Browse subreddit | REDDIT_GET | subreddit |
| Get post details | REDDIT_RETRIEVE_REDDIT_POST | post_id |
| Get specific comment | REDDIT_RETRIEVE_SPECIFIC_COMMENT | comment_id |
| List post flairs | REDDIT_LIST_SUBREDDIT_POST_FLAIRS | subreddit |
| Get user flair | REDDIT_GET_USER_FLAIR | subreddit |
This skill is applicable to execute the workflow or actions described in the overview.