| name | reddit-research-post |
| description | Research subreddits and create posts — find the right subreddit, analyze trends, check rules and flairs, craft content, draft for review |
| target | reddit_agent |
Reddit: Research & Post
When to Activate
User wants to post on Reddit for marketing, community engagement, research, or content sharing.
Step 1: Research the Right Subreddit
Find relevant subreddits:
REDDIT_GET_SUBREDDITS_SEARCH(q="artificial intelligence", limit=10)
Check subreddit rules (critical before posting):
REDDIT_GET_SUBREDDIT_RULES(subreddit="MachineLearning")
Analyze what works — read top posts:
REDDIT_GET_R_TOP(subreddit="MachineLearning", t="month", limit=10)
REDDIT_RETRIEVE_REDDIT_POST(subreddit="startup", sort="hot", max_results=10)
Using spawn_subagent for Multiple Subreddits
When researching multiple subreddits in parallel:
spawn_subagent(task="Research r/MachineLearning - top posts and rules", context="Focus on what content succeeds and community rules")
spawn_subagent(task="Research r/startup - top posts and rules", context="Focus on what content succeeds and community rules")
spawn_subagent(task="Research r/AI - top posts and rules", context="Focus on what content succeeds and community rules")
This enables parallel research across multiple subreddits.
Think:
- What post types succeed? (text, link, image)
- What's the community tone? (technical, casual, formal)
- What's the posting frequency?