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

paperclip-plugin-zernio

v0.4.1

Published

Paperclip plugin for the Zernio social media management API

Readme

paperclip-plugin-zernio

Paperclip plugin for the Zernio social media management API.

Zernio is an all-in-one social media management platform that lets you schedule posts, manage your inbox, and view analytics across 14+ platforms — including Twitter/X, Instagram, LinkedIn, Bluesky, Facebook, Threads, TikTok, YouTube, Pinterest, Reddit, and more.

Sign up for Zernio: https://zernio.link/richard-baker (affiliate link)

Installation

npm install paperclip-plugin-zernio

Or add to your Paperclip plugins/package.json:

{
  "dependencies": {
    "paperclip-plugin-zernio": "^0.4.1"
  }
}

Then run npm install in the plugins directory.

Configuration

The plugin requires a Zernio API key. In the plugin settings, enter either:

  • A secret name from your project env (e.g. ZERNIO_API_KEY) — resolved at runtime via the Paperclip secret provider
  • A raw API key (e.g. sk_live_abc123) — used directly

| Field | Required | Description | |-------|----------|-------------| | zernioApiKey | Yes | Secret name or raw Zernio API key | | defaultProfileId | No | Default Zernio profile ID for operations |

Get your API key at zernio.com/dashboard/api-keys.

Agent Tools

The plugin registers the following tools for Paperclip agents:

Posts

| Tool | Description | |------|-------------| | zernio-create-post | Create, schedule, or publish a post | | zernio-list-posts | List posts with optional status filter | | zernio-get-post | Get details of a specific post | | zernio-delete-post | Delete a post | | zernio-retry-post | Retry a failed post |

Analytics

| Tool | Description | |------|-------------| | zernio-get-analytics | Get post performance analytics (likes, comments, shares, reach) | | zernio-best-times | Get optimal posting times based on audience engagement |

Inbox

| Tool | Description | |------|-------------| | zernio-list-accounts | List connected social media accounts | | zernio-list-conversations | List inbox DM threads | | zernio-send-message | Send a direct message | | zernio-list-comments | List comments across accounts | | zernio-reply-comment | Reply to a comment |

Webhooks

The plugin can receive Zernio webhook events (post.published, post.failed, message.received, comment.received, etc.) and surfaces them as Paperclip plugin events.

Development

npm install
npm run build
npm run typecheck
npm test

License

MIT