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

promptup-plugin

v0.2.2

Published

AI coding skill evaluator for Claude Code — 11-dimension scoring, decision intelligence, PR reports

Downloads

1,290

Readme

promptup-plugin

AI coding skill evaluator for Claude Code — 11-dimension scoring, decision intelligence, PR reports.

Zero infrastructure. Just SQLite at ~/.promptup/.

Install

npx promptup-plugin

Installs MCP server, commands, hooks, statusline, and default config. Restart Claude Code to activate.

How it works

Session tracking

Every Claude Code session is passively tracked via hooks. On session creation, the current git branch is recorded. This links sessions to PRs automatically.

Evaluation

/pup:eval spawns an independent claude -p to analyze your session transcript across 11 dimensions. It extracts developer decisions (steers, rejects, validates, scopes) and generates coaching recommendations with before/after examples from your actual prompts. Falls back to heuristic scoring if Claude is unavailable.

PR reports

/pup:pr-report matches sessions to the current branch, auto-evaluates unscored sessions, gathers all decisions, and computes a Decision Quality Score (DQS). The session-to-PR link uses sessions.branch — set when the session was created. Optionally posts as a GitHub PR comment.

DQS formula

DQS = autonomy * 25% + discipline * 25% + validation * 30% + diversity * 20%
  • Autonomy: How often you steer, reject, or modify AI output vs accepting
  • Discipline: Ratio of modifications to blind accepts
  • Validation: How often you verify/test output
  • Diversity: How many decision types you use (steer, reject, validate, modify, scope, accept)

Commands

| Command | What | |---------|------| | /pup:eval | Evaluate session across 11 skill dimensions | | /pup:pr-report | DQS report for current branch (add --post to comment on PR) | | /pup:status | Sessions tracked, evaluations, decision counts | | /pup:config | View/modify settings (/pup:config evaluation.auto_trigger=prompt_count) | | /pup:update | Check for and install updates |

MCP Tools

| Tool | What | |------|------| | evaluate_session | Score session, extract decisions, coaching recommendations | | generate_pr_report | Match sessions to branch, compute DQS, optionally post to GitHub | | get_status | Tracking status and recent activity | | configure | Show/modify config (dot-path keys) |

Statusline

pupmeter shows your latest composite score in the Claude Code status bar with a recommendation tip.

Hooks

| Hook | What | Async | |------|------|-------| | PostToolUse | Logs tool events to ~/.promptup/tool-events.jsonl | Yes | | Stop | Captures session end to ~/.promptup/session-end.json | Yes | | SessionStart | Background update check against npm | Yes | | UserPromptSubmit | Auto-eval every N prompts (off by default) | Yes |

Configuration

/pup:config                                        # show all settings
/pup:config evaluation.auto_trigger=prompt_count   # enable auto-eval
/pup:config evaluation.interval=5                  # eval every 5 prompts
/pup:config evaluation.weight_profile=bugfix       # scoring profile
/pup:config decisions.signal_filter=all            # show all decisions

Config file: ~/.promptup/config.json

11 Dimensions

Base (interaction quality): task decomposition, prompt specificity, output validation, iteration quality, strategic tool usage, context management

Domain (depth of understanding): architectural awareness, error anticipation, technical vocabulary, dependency reasoning, tradeoff articulation

Requirements

  • Node.js >= 20
  • Claude Code

Manual setup

{
  "mcpServers": {
    "promptup": {
      "command": "node",
      "args": ["~/.promptup/plugin/dist/index.js"]
    }
  }
}

Uninstall

npx promptup-plugin --uninstall

License

MIT