| name | reddit-agent-marketing-department |
| description | Matrix department template for automated Reddit growth, community marketing, and lead scouting with AI agents |
| triggers | ["set up Reddit marketing automation","create a Reddit growth department","automate Reddit community research","build Reddit lead generation system","deploy AI agents for Reddit marketing","install Reddit marketing template","configure Matrix department for Reddit","set up automated Reddit outreach"] |
Reddit Agent Marketing Department
Skill by ara.so — Marketing Skills collection.
A Matrix department template that provides automated Reddit growth, community marketing, and lead scouting capabilities through AI agents. Built for the Matrix AI Company OS, this template includes research skills, copywriting workflows, anti-AI-slop review, and safety gates for compliant Reddit marketing.
What It Does
- Subreddit Research: Discover and evaluate communities using Reddit's public JSON API
- Community-Fit Analysis: Score subreddits by relevance, rules, and promotion risk
- Lead Scouting: Find prospects asking questions your product can answer
- Reddit-Native Drafting: Generate posts, comments, and DMs that sound human
- Anti-AI-Slop Review: Strip telltale AI phrasing before publishing
- Launch Seeding Plans: Create staggered posting schedules with cooldown management
- Approval-Gated Publishing: All public actions require explicit human approval
- Outcome Logging: Track published posts, engagement, and results
Installation
Import into Matrix
- Clone the repository:
git clone https://github.com/Weike/reddit-agent-marketing-department.git
cd reddit-agent-marketing-department
-
In Matrix, create a new department or navigate to an existing one
-
Copy the department structure into your Matrix workspace:
cp -r skills/ /path/to/matrix/department/skills/
cp -r memory/ /path/to/matrix/department/memory/
cp RULES.md /path/to/matrix/department/RULES.md
- Connect Reddit integration in Matrix (for publishing actions)
Standalone Setup
Use as a reference template without Matrix:
git clone https://github.com/Weike/reddit-agent-marketing-department.git
cd reddit-agent-marketing-department
tree skills/ memory/
Department Structure
reddit-agent-marketing-department/
├── RULES.md # Department operating rules
├── skills/
│ ├── reddit/ # Public Reddit JSON API
│ ├── reddit-growth-operator/ # Growth planning workflows
│ └── reddit-marketing-service-guide/ # User intake routing
├── memory/
│ └── knowledge/ # Safety gates & boundaries
└── artifacts/
└── marketplace-template-handoff.md
Key Skills
1. Reddit Public API Research (skills/reddit/)
No API key required. Uses Reddit's public JSON endpoints.
Available Scripts:
python skills/reddit/scripts/search_posts.py
python skills/reddit/scripts/get_posts.py
python skills/reddit/scripts/get_subreddit.py
python skills/reddit/scripts/get_post.py
python skills/reddit/scripts/get_user.py
Example: Search for product mentions
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
results = api.search_posts(
query="AI marketing tools",
subreddit="marketing",
sort="relevance",
time_filter="month",
limit=25
)
for post in results:
print(f"{post['title']} - {post['score']} upvotes")
print(f"https://reddit.com{post['permalink']}\n")
Example: Analyze subreddit for product fit
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
subreddit = api.get_subreddit("SaaS")
print(f"Subscribers: {subreddit['subscribers']}")
print(f"Description: {subreddit['public_description']}")
posts = api.get_posts("SaaS", sort="hot", limit=50)
pain_points = [
post for post in posts
if any(word in post['title'].lower() for word in ['help', 'how', 'problem', 'issue'])
]
print(f"Found {len(pain_points)} potential lead posts")
2. Reddit Growth Operator (skills/reddit-growth-operator/)
Core growth planning skill with reference materials:
- reddit-account-karma-and-risk.md: Trust-building and risk management
- reddit-content-sop.md: Post/comment SOPs (knowledge-base, hot-topic, resource, story formats)
- reddit-ai-tool-promotion.md: Soft-ad patterns and promotion strategies
- reddit-anti-ai-slop-writing.md: Banned vocabulary and AI-sounding phrase detection
- reddit-community-map.md: Startup, product, design, marketing, AI subreddit directory
- reddit-github-and-viral-ideas.md: Technical workflow and viral mechanics
Example: Generate subreddit research plan
# Task: Find communities for [Your Product]
Use reddit-growth-operator skill to:
1. Review reddit-community-map.md for relevant subreddit categories
2. Use reddit API to fetch subscriber counts and activity levels
3. Analyze recent posts for:
- Question frequency related to your problem space
- Subreddit rules on self-promotion
- Moderator activity and ban risk
4. Generate scored list of top 10 target communities
5. Output research report with engagement strategy per subreddit
3. Reddit Marketing Service Guide (skills/reddit-marketing-service-guide/)
User-facing intake system that routes to service paths:
- A. Find relevant subreddits and communities
- B. Draft a natural Reddit post or comment
- C. Build a full Reddit launch/seeding plan
- D. Review draft for spam risk and AI-sounding copy
- E. Show handoff guide
Example: Request a launch plan
I need a Reddit launch plan for my AI writing assistant.
Target audience: Content marketers, bloggers, copywriters
Goal: 50 signups in first week
Current karma: 150 post, 300 comment
Agent will:
- Research relevant subreddits using reddit API
- Draft 3-5 posts in different formats (story, resource, hot-topic)
- Review drafts with anti-AI-slop checker
- Generate staggered posting schedule with cooldowns
- Stage drafts for approval (nothing published without consent)
Configuration
Environment Variables
Set these for Reddit integration (if using publishing features):
export REDDIT_CLIENT_ID="your_client_id"
export REDDIT_CLIENT_SECRET="your_client_secret"
export REDDIT_USERNAME="your_username"
export REDDIT_PASSWORD="your_password"
export REDDIT_USER_AGENT="YourApp/0.1 by /u/yourusername"
Matrix Integration
In Matrix, configure the Reddit department:
- Navigate to Integrations → Reddit
- Authorize OAuth connection
- Set approval gates:
- ✅ Require approval for all posts
- ✅ Require approval for all comments
- ✅ Require approval for all DMs
- Configure cooldowns:
- Minimum 2 hours between posts
- Minimum 30 minutes between comments
Common Patterns
Pattern 1: Subreddit Discovery & Scoring
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
candidates = ["SaaS", "startups", "Entrepreneur", "smallbusiness", "marketing"]
results = []
for sub in candidates:
info = api.get_subreddit(sub)
posts = api.get_posts(sub, sort="hot", limit=50)
questions = sum(1 for p in posts if '?' in p['title'])
avg_engagement = sum(p['score'] + p['num_comments'] for p in posts) / len(posts)
results.append({
'subreddit': sub,
'subscribers': info['subscribers'],
'questions_per_50': questions,
'avg_engagement': avg_engagement,
'score': (questions * 2) + (avg_engagement / 10)
})
results.sort(key=lambda x: x['score'], reverse=True)
for r in results:
print(f"{r['subreddit']}: {r['score']:.1f} score ({r['subscribers']} subs, {r['questions_per_50']} questions)")
Pattern 2: Lead Scouting in Target Subreddit
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
query = "tool for writing content"
leads = api.search_posts(
query=query,
subreddit="marketing",
sort="new",
time_filter="week",
limit=100
)
qualified_leads = [
lead for lead in leads
if lead['score'] < 50
and lead['num_comments'] < 20
and not lead['is_self'] == False
]
print(f"Found {len(qualified_leads)} qualified leads")
for lead in qualified_leads[:5]:
print(f"\n{lead['title']}")
print(f"https://reddit.com{lead['permalink']}")
print(f"{lead['score']} upvotes, {lead['num_comments']} comments")
Pattern 3: Anti-AI-Slop Review Workflow
Use the anti-AI-slop reference from skills/reddit-growth-operator/references/reddit-anti-ai-slop-writing.md:
Banned vocabulary checklist:
- "delve", "navigate", "landscape", "leverage", "testament"
- "Furthermore", "Moreover", "In conclusion"
- "game-changer", "revolutionary", "cutting-edge"
- "unlock", "elevate", "empower", "streamline"
Example review:
draft = """
Furthermore, our AI tool is a game-changer that will elevate your content strategy.
By leveraging cutting-edge technology, you can unlock new levels of productivity
and streamline your workflow. It's truly revolutionary.
"""
banned_words = ["furthermore", "game-changer", "elevate", "leveraging", "cutting-edge", "unlock", "streamline", "revolutionary"]
issues = []
for word in banned_words:
if word.lower() in draft.lower():
issues.append(f"❌ Remove '{word}' (AI-slop vocabulary)")
if issues:
print("AI-SLOP DETECTED:")
for issue in issues:
print(issue)
print("\n🔄 Rewrite required before approval")
Better version:
I built a tool that helps me write faster. It's not perfect, but it cut my
content time in half. Happy to share if anyone's struggling with the same problem.
Troubleshooting
Rate Limiting
Reddit's public JSON API has rate limits (~60 requests/min):
import time
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
subreddits = ["SaaS", "startups", "Entrepreneur"]
for sub in subreddits:
posts = api.get_posts(sub, limit=50)
time.sleep(2)
Missing Posts in Search Results
Reddit search can be unreliable. Use multiple approaches:
results = api.search_posts(query="AI tools", subreddit="marketing")
posts = api.get_posts("marketing", sort="hot", limit=100)
filtered = [p for p in posts if "AI" in p['title'] or "AI" in p['selftext']]
403 Errors on Private/Banned Subreddits
Handle gracefully:
from skills.reddit.scripts.reddit_api import RedditAPI
api = RedditAPI()
try:
subreddit = api.get_subreddit("privatesubreddit")
except Exception as e:
if "403" in str(e):
print("Subreddit is private or banned")
else:
raise
User-Agent Blocks
If requests fail, ensure proper User-Agent:
headers = {
'User-Agent': 'Mozilla/5.0 (compatible; RedditResearch/1.0)'
}
Safety & Compliance
This template enforces strict safety gates:
- No Auto-Publishing: All posts/comments require explicit approval
- Cooldown Management: Minimum 2-hour gaps between posts
- Anti-Spam: No duplicate content, karma farming, or vote manipulation
- Disclosure: All promotional content must disclose affiliation
- Rule Compliance: Subreddit rules checked before drafting
Memory cards enforce boundaries:
reddit-template-operating-boundary.md: What to keep vs. exclude
reddit-publishing-safety-gates.md: Approval gates and risk signals
reddit-cooldown-and-retry-deduplication.md: Cadence management
Real-World Workflow Example
Scenario: Launch a new SaaS product on Reddit
# Step 1: Research
Agent uses reddit API to:
- Fetch top 20 SaaS/startup subreddits
- Analyze 50 recent posts per subreddit
- Score by question frequency and engagement
- Output: Top 5 target communities
# Step 2: Lead Scouting
Agent searches for:
- "looking for tool to [problem your product solves]"
- "how do you [use case]"
- "alternatives to [competitor]"
- Filters by recency and comment count
- Output: 15 qualified lead threads
# Step 3: Draft Responses
Agent generates 3 response formats:
- Story: "I had this problem and built [product] to solve it"
- Resource: "Here are 5 tools that do this (including mine)"
- Hot-take: "Unpopular opinion: [relevant insight] + subtle mention"
# Step 4: Anti-AI-Slop Review
Agent checks each draft for:
- Banned vocabulary (delve, leverage, game-changer, etc.)
- Overly formal structure
- Lack of personality/voice
- Output: Flagged issues + rewrite suggestions
# Step 5: Approval Queue
Agent stages drafts with:
- Target post URL
- Proposed response
- Risk assessment (low/medium/high)
- Recommended cooldown
- Human approves or edits before publishing
# Step 6: Publishing & Tracking
After approval:
- Post comment to Reddit
- Log timestamp, URL, and draft version
- Set cooldown timer for next action
- Track engagement (upvotes, replies) after 24h
Integration with Matrix Workflows
Use with other Matrix departments:
departments:
- reddit-marketing:
skills: [reddit, reddit-growth-operator]
triggers: ["reddit", "community marketing", "lead gen"]
- content-production:
skills: [copywriting, editing]
- analytics:
skills: [engagement-tracking]
1. reddit-marketing finds leads
2. content-production drafts responses
3. reddit-marketing runs anti-AI-slop review
4. Human approves
5. reddit-marketing publishes
6. analytics tracks engagement
Resources
License: MIT
Maintainer: Weike
Matrix Marketplace: Compatible