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

offgrowth

v0.1.0

Published

Growth skills for product teams. Structured prompts and frameworks for auditing friction, onboarding, activation, retention, and more.

Readme

offgrowth

Growth skills for product teams. Structured prompts and frameworks for auditing friction, onboarding, activation, retention, and more.

npm install offgrowth

What is this?

offgrowth is a library of opinionated growth audit prompts — built to be dropped into any AI assistant (Claude, ChatGPT, etc.) to get structured, actionable analysis of your product.

Each skill is a markdown file with a clear input model, a diagnostic framework, and a defined output format. No magic. Just sharp questions, applied consistently.


Skills in v1

| Skill | File | What it does | |---|---|---| | Friction Audit | friction-audit | Finds where users drop off and why | | Onboarding Review | onboarding-review | Evaluates the first-run experience | | Value Proposition Check | value-proposition-check | Tests if your messaging is clear and specific | | Activation Moment Finder | activation-moment-finder | Identifies and maps the path to your aha moment | | Retention Loop Diagnosis | retention-loop-diagnosis | Maps and stress-tests your behavioral loops | | Pricing Page Critique | pricing-page-critique | Audits your pricing page for conversion killers |


Usage

With Node.js

const offgrowth = require('offgrowth');

// List all available skills
console.log(offgrowth.list());
// → ['friction-audit', 'onboarding-review', 'value-proposition-check', ...]

// Get a specific skill prompt
const prompt = offgrowth.get('friction-audit');
console.log(prompt);

// Get all skills
const all = offgrowth.all();

Directly with an AI assistant

Each skill file is a self-contained markdown prompt. You can:

  1. Open the file from node_modules/offgrowth/skills/
  2. Copy the prompt section
  3. Paste it into Claude, ChatGPT, or any assistant
  4. Replace the [input] placeholder with your product URL, screenshots, or description

How to run a skill

Every skill follows the same pattern:

  1. Pick the skill that matches your question
  2. Gather your input — a URL, screenshots, copy, or a written description of your flow
  3. Paste the prompt into your AI assistant with your input attached
  4. Get your analysis in the structured format defined by the skill

The more specific your input, the sharper the output.


Philosophy

Growth audits fail for one of two reasons: they ask the wrong questions, or they ask vague ones. offgrowth does neither.

Each skill is built around a specific diagnostic question, a structured framework for answering it, and a defined output that tells you what to do next — not just what's wrong.


Roadmap

  • [ ] CLI interface (npx offgrowth run friction-audit)
  • [ ] More skills: competitive positioning, feature adoption, NPS diagnosis
  • [ ] Skill chaining: run multiple audits in sequence
  • [ ] Output templates for sharing with your team

License

MIT