/SKILL.md
Automate social media posting across Reddit, X/Twitter, LinkedIn, and Moltbook. Find threads, post comments, create original posts, track engagement stats. Use when: 'post to social', 'social autoposter', 'find threads to comment on', 'create a post', 'audit social posts', 'update post stats', or after completing any task (mandatory per CLAUDE.md).
npx skillsauth add m13v/social-autoposter social-autoposterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automates finding, posting, and tracking social media comments and original posts across Reddit, X/Twitter, LinkedIn, and Moltbook.
| Command | What it does |
|---------|-------------|
| /social-autoposter | Comment run — find threads + post comment + log (cron-safe) |
| /social-autoposter post | Create an original post/thread (manual only, never cron) |
| /social-autoposter stats | Update engagement stats via API |
| /social-autoposter engage | Scan and reply to responses on our posts |
| /social-autoposter audit | Full browser audit of all posts |
View your posts live: https://s4l.ai/stats/[your_handle]
— e.g. https://s4l.ai/stats/m13v_ (Twitter handle without @), https://s4l.ai/stats/Deep_Ad1959 (Reddit), https://s4l.ai/stats/matthew-autoposter (Moltbook).
The handles come from config.json → accounts.*.handle/username. Each platform account has its own URL.
Before doing anything, read ~/social-autoposter/config.json. Everything — accounts, projects, subreddits, content angle — comes from there.
cat ~/social-autoposter/config.json
Key fields you'll use throughout every workflow:
accounts.reddit.username — Reddit handle to post asaccounts.twitter.handle — X/Twitter handleaccounts.linkedin.name — LinkedIn display nameaccounts.moltbook.username — Moltbook usernamesubreddits — list of subreddits to monitor and post incontent_angle — the user's unique perspective for writing authentic commentsprojects — products/repos to mention naturally when relevant (each has name, description, website, github, topics)database — unused (DB is Neon Postgres via DATABASE_URL in .env)Use these values everywhere below instead of any hardcoded names or links.
Standalone Python scripts — no LLM needed.
python3 ~/social-autoposter/scripts/find_threads.py --include-moltbook
python3 ~/social-autoposter/scripts/scan_replies.py
python3 ~/social-autoposter/scripts/update_stats.py --quiet
/social-autoposter)There is NO posting rate limit. Do not add one, do not enforce one, do not invent one. Post as many times as needed.
Option A — Script (preferred):
python3 ~/social-autoposter/scripts/find_threads.py --include-moltbook
Option B — Browse manually:
Browse /new and /hot on the subreddits from config.json. Also check Moltbook via API.
content_angle in config.jsonSELECT thread_url FROM postsSELECT our_content FROM posts ORDER BY id DESC LIMIT 5
Check tone, length cues, thread age. Find best comment to reply to (high-upvote comments get more visibility).
Follow Content Rules below. 2-3 sentences, first person, specific details from content_angle. No product links in top-level comments.
Reddit (browser automation):
old.reddit.com thread URLconfig.json → accounts.reddit.usernameX/Twitter (browser automation):
config.json → accounts.twitter.handleLinkedIn (browser automation):
config.json → accounts.linkedin.nameMoltbook (API — no browser needed):
source ~/social-autoposter/.env
curl -s -X POST -H "Authorization: Bearer $MOLTBOOK_API_KEY" -H "Content-Type: application/json" \
-d '{"title": "...", "content": "...", "type": "text", "submolt_name": "general"}' \
"https://www.moltbook.com/api/v1/posts"
On Moltbook: write as agent ("my human" not "I").
Verify: fetch post by UUID, check verification_status is "verified".
INSERT INTO posts (platform, thread_url, thread_author, thread_author_handle,
thread_title, thread_content, our_url, our_content, our_account,
source_summary, project_name, status, posted_at)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, 'active', NOW());
Set project_name to the matching project name from config.json (e.g., 'Fazm', 'Cyrano', 'Terminator'). Every post/comment MUST be labeled with its target project. If engagement is general/unrelated to any project, use 'general'.
Use the account value from config.json for our_account.
Posts are written directly to the Neon Postgres database. No separate post-sync step is required.
/social-autoposter post)Manual only — never run from cron. Original posts are high-stakes and need human review.
SELECT platform, thread_title, posted_at FROM posts
WHERE source_summary LIKE '%' || %s || '%' AND posted_at >= NOW() - INTERVAL '30 days'
ORDER BY posted_at DESC;
NEVER post the same or similar content to multiple subreddits. This is the #1 AI detection red flag. Each post must be unique to its community.
Choose the single best subreddit from config.json → subreddits for this topic. Tailor the post to that community's culture and tone.
Anti-AI-detection checklist (must pass ALL before posting):
Read it out loud. If it sounds like a blog post or a ChatGPT response, rewrite it.
Reddit: old.reddit.com → Submit new text post → paste title + body → submit → verify → capture permalink.
INSERT INTO posts (platform, thread_url, thread_author, thread_author_handle,
thread_title, thread_content, our_url, our_content, our_account,
source_summary, project_name, status, posted_at)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, 'active', NOW());
Set project_name to the matching project name from config.json. For original posts: thread_url = our_url, thread_author = our account from config.json.
After posting, you MUST:
/social-autoposter stats)python3 ~/social-autoposter/scripts/update_stats.py
After running, view updated stats at https://s4l.ai/stats/[handle]. Stats are read from the same Neon Postgres database used by the posting pipeline. Changes appear on the website within ~5 minutes.
/social-autoposter engage)python3 ~/social-autoposter/scripts/scan_replies.py
SELECT r.id, r.platform, r.their_author, r.their_content, r.their_comment_url,
r.depth, p.thread_title, p.our_content
FROM replies r JOIN posts p ON r.post_id = p.id
WHERE r.status='pending' ORDER BY r.discovered_at ASC LIMIT 10
Draft replies: 2-4 sentences, casual, expand the topic. Apply Tiered Reply Strategy.
Post via browser (Reddit/X) or API (Moltbook). Update:
UPDATE replies SET status='replied', our_reply_content=%s, our_reply_url=%s,
replied_at=NOW() WHERE id=%s
Navigate to https://x.com/notifications/mentions. Find replies to the handle in config.json. Respond to substantive ones. Log to replies table.
/social-autoposter audit)Visit each post URL via browser. Check status (active/deleted/removed/inactive). Update engagement metrics. Report summary.
content_angle in config.json. Real numbers, real experiences, not generalizations.content_angle from config.json. If the thread doesn't connect, skip it.BAD: "Makes sense — Claude already tries to tail the output on its own but by then the tokens are already in context." GOOD: "gonna try this, I run 5 agents in parallel and my API bill is becoming a second rent payment"
BAD: "What everyone here is describing is basically specification-driven development." GOOD: "I spend more time writing CLAUDE.md specs than I ever spent writing code. the irony is I'm basically doing waterfall now and shipping faster than ever."
BAD title: "What I Wish I'd Known Before My First Vipassana Retreat: A Complete Guide" GOOD title: "just did my 7th course, some things that surprised me"
BAD body: Structured with headers, bold, numbered lists, "As a tech founder..." GOOD body: Paragraphs, incomplete thoughts, personal details, casual tone, ends with a genuine question
Tier 1 — Default (no link): Genuine engagement. Expand topic, ask follow-ups. Most replies.
Tier 2 — Natural mention: Conversation touches a topic matching one of the user's projects (from config.json → projects[].topics). Mention casually, link only if it adds value. Triggers: "what tool do you use", problem matches a project topic, 2+ replies deep.
Tier 3 — Direct ask: They ask for link/try/source. Give it immediately using projects[].website or projects[].github from config.json.
posts: id, platform, thread_url, thread_title, our_url, our_content, our_account, project_name, posted_at, status, upvotes, comments_count, views, source_summary, link_edited_at, link_edit_content
replies: id, post_id, platform, their_author, their_content, our_reply_content, status (pending|replied|skipped|error), depth
tools
End-to-end workflow for creating, rebuilding, or enhancing a client's website. Covers SEO audit, content extraction, Next.js scaffolding, real image/video assets, structured data, SEO guide pages, component injection, analytics, deployment, and dashboard registration. Includes concrete design system blueprints with exact Tailwind classes, component templates, and section layouts. Use when: 'create client website', 'rebuild website', 'recreate site', 'client landing page', 'SEO pages for client', or when onboarding a new client who needs a web presence.
tools
End-to-end workflow for creating, rebuilding, or enhancing a client's website. Covers SEO audit, content extraction, Next.js scaffolding, real image/video assets, structured data, SEO guide pages, component injection, analytics, deployment, and dashboard registration. Includes concrete design system blueprints with exact Tailwind classes, component templates, and section layouts. Use when: 'create client website', 'rebuild website', 'recreate site', 'client landing page', 'SEO pages for client', or when onboarding a new client who needs a web presence.
tools
Set up social-autoposter for a new user. Interactive wizard that installs via npm, creates the database, configures accounts, verifies browser logins, and optionally sets up scheduled automation. Use when: 'set up social autoposter', 'install social autoposter', 'configure social posting'.
tools
# Python CDP Browser Scripts Create Python functions that connect to running MCP browser agents via Chrome DevTools Protocol (CDP) and perform complete browser automation workflows. Replaces Claude browser MCP calls entirely — zero LLM tokens consumed. ## Usage ``` /python-cdp-scripts <platform> <action-description> /python-cdp-scripts linkedin "scrape engagement stats for our comments" /python-cdp-scripts linkedin "check if posts are deleted" /python-cdp-scripts linkedin "read unread DM conve