social-autoposter

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'.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "social-autoposter" with this command: npx skills add m13v/social-autoposter/m13v-social-autoposter-social-autoposter

Social Autoposter

Automates finding, posting, and tracking social media comments and original posts across Reddit, X/Twitter, LinkedIn, and Moltbook.

Quick Start

CommandWhat it does
/social-autoposterComment run — find threads + post comment + log (cron-safe)
/social-autoposter postCreate an original post/thread (manual only, never cron)
/social-autoposter statsUpdate engagement stats via API
/social-autoposter engageScan and reply to responses on our posts
/social-autoposter auditFull browser audit of all posts

View your posts live: https://s4l.ai/stats/[your_handle] The handles come from config.json → accounts.*.handle/username. Each platform account has its own URL.


FIRST: Read config

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 as
  • accounts.twitter.handle — X/Twitter handle
  • accounts.linkedin.name — LinkedIn display name
  • accounts.moltbook.username — Moltbook username
  • subreddits — list of subreddits to monitor and post in
  • content_angle — the user's unique perspective for writing authentic comments
  • projects — products/repos to mention naturally when relevant (each has name, description, website, github, links, topics). The links object has per-platform URLs: links.reddit, links.twitter, links.linkedin, links.github, etc. Always use links[platform] for the current platform — e.g. links.reddit when posting on Reddit, links.twitter on X. Fall back to website or github only if links[platform] is absent.
  • database — unused (DB is Neon Postgres via DATABASE_URL in .env)

Use these values everywhere below instead of any hardcoded names or links.


Helper Scripts

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

Workflow: Post (/social-autoposter)

1. Rate limit check

SELECT COUNT(*) FROM posts WHERE posted_at >= NOW() - INTERVAL '24 hours'

Max 40 posts per 24 hours. Stop if at limit.

2. Find candidate threads

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.

3. Pick the best thread

  • You have a genuine angle from content_angle in config.json
  • Not already posted in: SELECT thread_url FROM posts
  • Last 5 comments don't repeat the same talking points:
    SELECT our_content FROM posts ORDER BY id DESC LIMIT 5
    
  • If nothing fits naturally, stop. Better to skip than force a bad comment.

4. Read the thread + top comments

Check tone, length cues, thread age. Find best comment to reply to (high-upvote comments get more visibility).

5. Draft the comment

Follow Content Rules below. 2-3 sentences, first person, specific details from content_angle. No product links in top-level comments.

6. Post it

Reddit (browser automation):

  • Navigate to old.reddit.com thread URL
  • Reply box → type comment → submit → wait 2-3s → verify comment appeared → capture permalink → close tab
  • Post as the username in config.json → accounts.reddit.username

X/Twitter (browser automation):

  • Navigate to tweet → reply box → type → Reply → verify → capture URL
  • Post as the handle in config.json → accounts.twitter.handle

LinkedIn (browser automation):

  • Navigate to post → comment box → type → Post → close tab
  • Post as the name in config.json → accounts.linkedin.name

Moltbook (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"). Max 1 post per 30 min. Verify: fetch post by UUID, check verification_status is "verified".

7. Log + sync

INSERT INTO posts (platform, thread_url, thread_author, thread_author_handle,
  thread_title, thread_content, our_url, our_content, our_account,
  source_summary, status, posted_at)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, 'active', NOW());

Use the account value from config.json for our_account.

If sync_script is set in config.json, run it after logging.


Workflow: Create Post (/social-autoposter post)

Manual only — never run from cron. Original posts are high-stakes and need human review.

1. Rate limit check

Max 1 original post per 24 hours. Max 3 per week.

2. Cross-posting check

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.

3. Pick one target community

Choose the single best subreddit from config.json → subreddits for this topic. Tailor the post to that community's culture and tone.

4. Draft the post

Anti-AI-detection checklist (must pass ALL before posting):

  • No em dashes (—). Use regular dashes (-) or commas instead
  • No markdown headers (##) or bold (**) in Reddit posts
  • No numbered/bulleted lists — write in paragraphs
  • No "Hi everyone" or "Hey r/subreddit" openings
  • Title doesn't use clickbait patterns ("What I wish I'd known", "A guide to")
  • Contains at least one imperfection: incomplete thought, casual aside, informality
  • Reads like a real person writing on their phone, not an essay
  • Does NOT link to any project in the post body — earn attention first
  • Not too long — 2-4 short paragraphs max for Reddit

Read it out loud. If it sounds like a blog post or a ChatGPT response, rewrite it.

5. Post it

Reddit: old.reddit.com → Submit new text post → paste title + body → submit → verify → capture permalink.

6. Log it

INSERT INTO posts (platform, thread_url, thread_author, thread_author_handle,
  thread_title, thread_content, our_url, our_content, our_account,
  source_summary, status, posted_at)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, 'active', NOW());

For original posts: thread_url = our_url, thread_author = our account from config.json.

7. Mandatory engagement plan

After posting, you MUST:

  • Check for comments within 2-4 hours
  • Reply to every substantive comment within 24 hours
  • Replies should be casual, conversational, expand the topic — NOT polished paragraphs
  • If someone accuses the post of being AI: respond genuinely, mention a specific personal detail

Workflow: Stats (/social-autoposter stats)

python3 ~/social-autoposter/scripts/update_stats.py

After running, view updated stats at https://s4l.ai/stats/[handle]. The DB syncs to Neon Postgres via syncfield.sh (called automatically by stats.sh). Changes appear on the website within ~5 minutes.


Workflow: Engage (/social-autoposter engage)

Phase A: Scan for replies (no browser)

python3 ~/social-autoposter/scripts/scan_replies.py

Phase B: Respond to pending replies

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. Max 5 replies per run.

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

Phase C: X/Twitter replies (browser required)

Navigate to https://x.com/notifications/mentions. Find replies to the handle in config.json. Respond to substantive ones (max 5). Log to replies table.

Phase D: Edit high-performing posts with project link

Find posts that earned >2 upvotes but haven't had a link appended yet:

SELECT id, platform, our_url, our_content, thread_title, source_summary
FROM posts
WHERE status='active'
  AND upvotes > 2
  AND posted_at < NOW() - INTERVAL '6 hours'
  AND link_edited_at IS NULL
  AND our_url IS NOT NULL
ORDER BY upvotes DESC

For each post:

  1. Pick the project from config.json → projects[] whose topics best match the thread. If no project fits, skip.
  2. Write 1 sentence + link (same style as old self-replies):
    • "fwiw I built something for this - [project.website]"
    • "we open sourced the thing I mentioned if anyone wants to poke around [project.github]"
    • "here's the repo if useful [project.github]"
  3. Edit the original comment to append a blank line + the link text at the bottom.

Platform-specific editing:

Reddit (browser):

  • Navigate to old.reddit.com comment permalink
  • Click "edit" under the comment
  • Append \n\n[link text] to the existing content
  • Save, verify the edit appeared

Moltbook (API):

source ~/social-autoposter/.env
curl -s -X PATCH -H "Authorization: Bearer $MOLTBOOK_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content": "[original content]\n\n[link text]"}' \
  "https://www.moltbook.com/api/v1/posts/[uuid]"

X/Twitter: Skip — editing is not supported.

LinkedIn: Skip — editing is unreliable via automation.

  1. After a successful edit, update the DB:
UPDATE posts SET link_edited_at=NOW(), link_edit_content=%s WHERE id=%s

Max 5 edits per engage run.


Workflow: Audit (/social-autoposter audit)

Visit each post URL via browser. Check status (active/deleted/removed/inactive). Update engagement metrics. Report summary.


Content Rules

Tone & Voice

  1. Write like you're texting a coworker. Lowercase fine. Sentence fragments fine. Never start with "Makes sense" or "The nuance here is." If it sounds like a blog post, rewrite it.
  2. First person, specific. Use concrete details from content_angle in config.json. Real numbers, real experiences, not generalizations.
  3. Reply to top comments, not just OP.
  4. Only comment when there's a genuine angle from the user's work. Use content_angle from config.json. If the thread doesn't connect, skip it.
  5. No product links in top-level comments or original posts. Earn attention first. Only link in deeper replies when someone asks.
  6. On Moltbook, write as an agent. "my human" not "I".
  7. Log everything.

Anti-AI-Detection (applies to ALL content)

  1. No em dashes (—). Use commas, periods, or regular dashes (-) instead. Em dashes are the #1 "ChatGPT tell."
  2. No markdown formatting in Reddit. No headers (##), no bold (text), no numbered lists. Write in plain paragraphs.
  3. Never cross-post. One post per topic per community.
  4. Space posts out. Max 1 original post per day, max 3 per week. Don't spam.
  5. Include imperfections. Contractions, sentence fragments, casual asides, occasional lowercase.
  6. Vary your openings. Don't always start with credentials. Sometimes just jump into the topic.
  7. Reply to comments on your posts. Zero engagement on your own post = bot signal. Reply within 24h.

Bad vs Good (Comments)

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 vs Good (Original Posts)

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


Tiered Reply Strategy

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[].links[current_platform] from config.json (e.g. links.reddit on Reddit, links.twitter on X, links.linkedin on LinkedIn, links.github on GitHub). Fall back to website or github only if the platform-specific link is missing.


Database Schema

posts: id, platform, thread_url, thread_title, our_url, our_content, our_account, posted_at, status, upvotes, comments_count, views, source_summary

Key fields in posts: id, platform, thread_url, thread_title, our_url, our_content, our_account, 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


Platform Reference

Reddit: Use old.reddit.com for reliable automation. Comment box: textarea with class usertext-edit. No posting API — browser only.

X/Twitter: Reply to existing tweets. 1-2 sentences ideal. No public API for notifications — browser only.

LinkedIn: Professional tone, brief. Comments don't have stable URLs. Browser only.

Moltbook: Full REST API, no browser needed. Base: https://www.moltbook.com/api/v1. Auth: Bearer $MOLTBOOK_API_KEY. Agent-first platform — write as an agent.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

new-product-website

No summary provided by upstream source.

Repository SourceNeeds Review
Security

Sentinel — Agent Security Layer

Runtime security layer for OpenClaw agents. Intercepts and scans all external input (emails, API responses, web content, chat messages, calendar events) for...

Registry SourceRecently Updated
Security

Sop Writer

SOP标准操作流程编写工具。创建SOP、流程图、检查清单、审核评估、模板库、培训材料。SOP writer with create, flowchart, checklist, audit, template, and training materials. Use when you need sop write...

Registry SourceRecently Updated
1580Profile unavailable
Security

Cogdx

Cognitive diagnostics for AI agents. Calibration audits, bias detection, reasoning verification, and deception analysis. External verification you can't do y...

Registry SourceRecently Updated
20Profile unavailable