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

@open-agent-studio/plugin-social

v1.0.0

Published

Unified Social Media plugin for Open Agent Studio — post to LinkedIn, X, Meta, and Instagram from your AI agent

Readme

@open-agent-studio/plugin-social

Unified Social Media Plugin — Post to LinkedIn, X/Twitter, Facebook, and Instagram from your autonomous AI agent.

Installation

agent plugins install @open-agent-studio/plugin-social

Or manually copy to .agent/plugins/social/ in your project.

Quick Start

1. Set Up Platform Credentials

Before authenticating, you need developer app credentials for each platform. Store them in your credential vault:

# LinkedIn
agent credentials set SOCIAL_LINKEDIN_CLIENT_ID "your-client-id"
agent credentials set SOCIAL_LINKEDIN_CLIENT_SECRET "your-client-secret"

# X/Twitter
agent credentials set SOCIAL_TWITTER_CLIENT_ID "your-client-id"
agent credentials set SOCIAL_TWITTER_CLIENT_SECRET "your-client-secret"

# Meta (Facebook + Instagram)
agent credentials set SOCIAL_META_CLIENT_ID "your-app-id"
agent credentials set SOCIAL_META_CLIENT_SECRET "your-app-secret"

2. Authenticate

agent social auth linkedin
agent social auth twitter
agent social auth facebook
agent social auth instagram

Each command opens a browser window for OAuth authorization.

3. Post Content

# Post to a single platform
agent social post -p linkedin -t "Shipping v1.0 today! 🚀"

# Post to multiple platforms
agent social post -p linkedin,twitter -t "Hello from Open Agent Studio!" --tags "ai,automation"

# Post with an image
agent social post -p instagram -t "Our new feature" -i "https://example.com/image.png"

4. Use with Natural Language

agent "Post a summary of today's code changes to LinkedIn and Twitter"

The agent will automatically use the social-poster skill to format and publish content.

Supported Platforms

| Platform | Text | Images | Links | Threads | Auth | |----------|:----:|:------:|:-----:|:-------:|:----:| | LinkedIn | ✅ | ✅ | ✅ | — | OAuth 2.0 | | X/Twitter | ✅ | ✅ | ✅ | 🔜 | OAuth 2.0 (PKCE) | | Facebook | ✅ | ✅ | ✅ | — | OAuth 2.0 | | Instagram | — | ✅ | — | — | OAuth 2.0 (Meta) |

Security

  • All OAuth tokens are stored in your local AES-256 encrypted vault (vault.json)
  • Tokens never leave your machine
  • You can revoke access at any time through each platform's settings
  • See our Privacy Policy and Terms

License

MIT