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

promptwell

v0.1.7

Published

Prompt optimizer and coach for Claude Fable 5 — stop burning tokens on bad prompts

Readme

PromptWell

Stop burning Fable 5 tokens on bad prompts.

Fable 5 is the most capable model available — but it consumes tokens fast when given vague, ambiguous prompts. It has to spend expensive reasoning budget figuring out what you want before it can do the work. PromptWell fixes that.

What it does

  1. Crisp-ify — uses Haiku 4.5 (cheap, fast) to restructure your messy prompt into a clean Fable 5-optimized task spec
  2. Score — rates how ambiguous your original prompt was (0 = crystal clear, 100 = unusable)
  3. Coach — tracks your patterns over time and tells you what to fix

Install

npx promptwell init

Walks you through API key setup and installs PromptWell as an MCP server in your Claude Code config, plus a SKILL.md trigger file so Claude Code knows when to call it automatically.

Tools

| Tool | What it does | |---|---| | crisp(task, context?) | Returns crisp_prompt + blueprint + disambiguation score | | score(...) | Records Fable 5 session result for trend tracking | | stats() | Shows your prompting trends and top patterns to fix |

How it works

Your messy prompt → Haiku 4.5 (~$0.001) → crisp blueprint JSON
                                                    ↓
                                             Fable 5 gets THIS
                                             (no disambiguation overhead)

Example output from crisp():

{
  "crisp_prompt": "Goal: Fix JWT token expiry handling...\n\nConstraints:\n- do not change token format\n\nSuccess criteria:\n- auth test suite passes\n\nWhen you have enough information to act, act.",
  "blueprint": {
    "structural_goal": "Fix JWT token expiry in auth middleware",
    "disambiguation_score": 72,
    "what_was_vague": ["no file path specified", "unclear which auth system"]
  },
  "estimated_token_savings": "~2,880 tokens"
}

Requirements

  • Node.js 18+
  • Anthropic API key (for both Haiku 4.5 and Fable 5)

Claude Code config (set by init)

{
  "mcp_servers": {
    "promptwell": {
      "command": "npx",
      "args": ["promptwell"]
    }
  }
}

License

MIT