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

post-pilot

v1.0.1

Published

Test your Reddit launch post against AI community personas before posting

Readme

Post Pilot

From code to reddit Test your Reddit launch post before you post it.

Post Pilot simulates a Reddit community reacting to your launch post. It reads your project (features, target personas, problem/solution) and it generates a simulation where AI Personas (generated with subreddit data) read your post and respond the way real Redditors would. You get feedback, a scorecard, and a rewritten version of your post before anyone real sees it.

npm version Status: Beta License: MIT Python 3.11

Post Pilot demo


How it works

  1. You write a launch post (or Post Pilot generates one from your codebase features)
  2. AI personas simulate a full Reddit thread with upvotes, downvotes, comments, skepticism, the works
  3. You get a scorecard with sentiment breakdown, engagement numbers, and what landed vs. what needs to be polished
  4. Post Pilot rewrites your post using what it learned from the simulation

Quick start

Prerequisites

  • Node.js 18+
  • Python 3.11 (exactly 3.11, the simulation engine needs it)
  • An LLM API key (any OpenAI-compatible provider. OpenRouter, OpenAI, etc)

Setup

From your project directory (needed to generate an accurate company description), run:

npx post-pilot init

This walks you through connecting your LLM provider (API key, model, base URL), optionally connecting Reddit for generate real user personas with sub reddit data, and scanning your repo to build a product profile.

Run

npx post-pilot serve

Open http://localhost:8000/setup, to confirm the generate write or generate a post, pick your community personas, and hit simulate.


Commands

| Command | What it does | |---------|-------------| | npx post-pilot init | Full setup wizard (credentials + product profile) | | npx post-pilot configure | Update LLM or Reddit credentials | | npx post-pilot learn | Re-scan your repo and regenerate the product profile | | npx post-pilot serve | Launch the web UI (default port 8000) | | npx post-pilot serve --port 3000 | Launch on a custom port |


Configuration

Post Pilot stores config in .post-pilot/ in your project directory:

.post-pilot/
  .env          # API keys (LLM + Reddit)
  post-pilot.db # Product profile, runs, results
  .venv/        # Python virtual environment (all python simulation libs)

The .post-pilot/ directory is automatically added to your .gitignore.

LLM providers

Any OpenAI-compatible API works. During init, you provide your API key, base URL (defaults to https://openrouter.ai/api/v1), and model (defaults to gpt-4o-mini).


License

MIT