npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

social-posting-skills

v2.0.0

Published

Curated AI agent skills for posting, engaging, and nurturing accounts across 12 social media platforms. Includes multi-thread posting, pre/post engagement workflows, and account growth strategies. Built for Antigravity, Claude Code, Gemini CLI.

Readme

📢 Social Posting Skills

Curated AI agent skills for posting, engaging, and growing across 12 social media platforms.

Built for Antigravity IDE, Claude Code, Gemini CLI, and any AI coding assistant that supports .agents/skills/ or .gemini/skills/.


✨ What This Does

Drop these skills into your project and your AI agent can:

  • 📝 Generate platform-optimized content from a single topic
  • 🖼️ Create images sized for each platform
  • 🤖 Auto-post via browser automation (Playwright/browser_subagent)
  • 📋 Save drafts for manual platforms (LinkedIn, Product Hunt)
  • 📊 Follow best practices per platform's algorithm and community
  • 🧵 Multi-thread posting (X threads, Threads reply-chains, Bluesky threads)
  • 🔥 Pre-posting engagement warm-up routines per platform
  • 💬 Post-posting engagement during the golden hour window
  • 🌱 Account nurturing with daily/weekly growth strategies

🚀 Quick Start

Install (1 command)

# Install into current project (default)
npx -y social-posting-skills

This creates .agents/skills/ and .agents/workflows/ in your project directory. Done!

Other Install Targets

# Install for Antigravity IDE (global)
npx -y social-posting-skills --antigravity

# Install for Cursor IDE
npx -y social-posting-skills --cursor

# Install for Claude Code CLI
npx -y social-posting-skills --claude

# Install for Gemini CLI
npx -y social-posting-skills --gemini

# Install to custom path
npx -y social-posting-skills --path ./my-custom-dir

Alternative: Git Clone

git clone https://github.com/tang-vu/social-posting-skills.git
cd social-posting-skills
# Tell your AI agent: "Post about [topic] to all platforms"

Usage

Tell your AI agent:

"Post about [your topic] to all social media platforms"

Or use the workflow command:

/post-social

📋 Supported Platforms

| # | Platform | Skill | Method | Content Type | Char Limit | |---|----------|-------|--------|-------------|------------| | 1 | Reddit | post-reddit | 🤖 Auto | Text posts, link posts | 40K body | | 2 | LinkedIn | post-linkedin | 📋 Manual | Thought leadership | 3,000 | | 3 | Facebook | post-facebook | 🤖 Auto | Community posts | 63,206 | | 4 | Threads | post-threads | 🤖 Auto | Micro-blog | 500 | | 5 | X (Twitter) | post-x | 🤖 Auto | Tweets, threads | 280 | | 6 | Product Hunt | post-producthunt | 📋 Manual | Product launches | Varies | | 7 | Hacker News | post-hackernews | 🤖 Auto | Show HN submissions | Varies | | 8 | Dev.to | post-devto | 🤖 Auto | Developer articles | No limit | | 9 | IndieHackers | post-indiehackers | 📋 Manual | Build-in-public updates | No limit | | 10 | Bluesky | post-bluesky | 🤖 Auto | Micro-blog | 300 | | 11 | Substack | post-substack | 🤖 Auto | Newsletters | No limit | | 12 | Medium | post-medium | 📋 Manual | Long-form articles | No limit |

🤖 Auto = Agent posts via browser automation (Playwright) 📋 Manual = Agent generates content + saves draft for you to paste

🏗️ Architecture

flowchart TD
    A[User: Post about X] --> B[content-writing skill]
    B --> C{Generate per-platform content}
    C --> D[image-generation skill]
    D --> E{Post to each platform}

    E --> F[post-reddit]
    E --> G[post-linkedin]
    E --> H[post-facebook]
    E --> I[post-threads]
    E --> J[post-x]
    E --> K[post-producthunt]
    E --> L[post-hackernews]
    E --> M[post-devto]
    E --> N[post-indiehackers]
    E --> O[post-bluesky]
    E --> P[post-substack]
    E --> Q[post-medium]

    F -->|browser_subagent| R[✅ Posted]
    G -->|save draft| S[📋 Manual paste]
    H -->|browser_subagent| R
    I -->|browser_subagent| R
    J -->|browser_subagent| R
    K -->|save draft| S
    L -->|browser_subagent| R
    M -->|browser_subagent| R
    N -->|save draft| S
    O -->|browser_subagent| R
    P -->|browser_subagent| R
    Q -->|save draft| S

📂 Project Structure

social-posting-skills/
├── .agents/
│   ├── workflows/
│   │   └── post-social.md          # Main posting workflow
│   └── skills/
│       ├── content-writing/SKILL.md  # Content adaptation + templates
│       ├── image-generation/SKILL.md # Platform image specs + prompts
│       ├── post-reddit/SKILL.md
│       ├── post-linkedin/SKILL.md
│       ├── post-facebook/SKILL.md
│       ├── post-threads/SKILL.md
│       ├── post-x/SKILL.md
│       ├── post-producthunt/SKILL.md
│       ├── post-hackernews/SKILL.md
│       ├── post-devto/SKILL.md
│       ├── post-indiehackers/SKILL.md
│       ├── post-bluesky/SKILL.md
│       ├── post-substack/SKILL.md
│       └── post-medium/SKILL.md
├── posts/
│   ├── drafts/                      # Generated drafts per platform
│   └── images/                      # Generated images
├── docs/
│   ├── PLATFORM_COMPARISON.md       # Side-by-side platform comparison
│   └── TROUBLESHOOTING.md           # Common issues + fixes
├── CATALOG.md                       # Full skill registry
├── CONTRIBUTING.md                  # How to add new platforms
├── LICENSE                          # MIT
└── README.md

⚡ Usage

Post to all platforms

"Post about [your topic] to all social media platforms"

Post to specific platforms

"Post about [topic] to Reddit and X only"

Use the workflow

/post-social

⚠️ Known Limitations

| Issue | Affected Platforms | Workaround | |-------|-------------------|------------| | Bot detection (Cloudflare) | Product Hunt, IndieHackers | Manual paste | | System policy block | LinkedIn | Manual paste | | Vietnamese text | All (Playwright) | English only for auto | | Emoji characters | All (Playwright) | Removed from auto posts | | Medium blocked in VN | Medium | VPN or manual paste | | Session expiry | All | Re-login in browser |

🤝 Contributing

See CONTRIBUTING.md for how to add new platform skills.

📚 Full Skill Catalog

See CATALOG.md for detailed descriptions of every skill.

📄 License

MIT — Use freely, modify, distribute.

⭐ Star History

If this helps you, consider starring the repo!


Inspired by antigravity-awesome-skills