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

supered

v0.7.0

Published

A compact agent workflow kit for clarifying, building, verifying, and shipping software changes.

Readme

Supered

Release CI License: MIT

Supered is a compact workflow kit for coding agents. It gives an agent a small set of repeatable skills for shaping a task, mapping the work, building in slices, tracing bugs, proving results, and shipping cleanly.

It is inspired by obra/superpowers, but Supered is intentionally smaller and written as a fresh, original toolkit with a tighter bias toward lightweight public repos and evidence-first handoffs.

Supered logo

Website: https://fhajjej-ship-it.github.io/Supered/

What Is Inside

  • using-supered: entrypoint for choosing the right workflow.
  • shape-the-task: turns a rough request into a short, testable brief.
  • make-a-map: breaks approved work into small execution steps.
  • build-in-slices: keeps implementation incremental and reviewable.
  • trace-the-fault: diagnoses bugs from symptoms to root cause.
  • prove-the-change: verifies claims before completion.
  • ship-the-work: prepares a repo for public GitHub delivery.

Quickstart

Install Supered as a public Codex plugin:

codex plugin marketplace add fhajjej-ship-it/Supered --ref v0.7.0
codex plugin add supered@supered

This installs the public GitHub release. The global OpenAI Codex directory review packet lives in docs/codex-global-listing-submission.md, and reusable launch copy lives in docs/launch-post.md.

Beta testers can use BETA_INSTALL.md for a 60-second install test, docs/beta-outreach.md for outreach templates, and docs/examples.md for real workflow examples. Reviewers can use docs/reviewer-faq.md, docs/demo-script.md, and docs/feedback-log.md as the proof pack.

Or install with npx:

npx supered install --target codex

Check the install:

npx supered doctor --target codex

Repair an install after reviewing the Doctor output:

npx supered doctor --target codex --fix

Check whether your package and install are current:

npx supered upgrade --target codex
npx supered upgrade --target codex --apply

Or install the default Codex skill set with curl:

curl -fsSL https://raw.githubusercontent.com/fhajjej-ship-it/Supered/main/install.sh | sh

Pick another host with SUPERED_TARGET:

curl -fsSL https://raw.githubusercontent.com/fhajjej-ship-it/Supered/main/install.sh | SUPERED_TARGET=claude sh

Or clone the repo, validate the bundle, then install the skills into the agent host you use.

git clone https://github.com/fhajjej-ship-it/Supered.git
cd Supered
npm test
npm run validate
node ./bin/supered.mjs install --target codex
node ./bin/supered.mjs doctor --target codex
node ./bin/supered.mjs doctor --target codex --fix
node ./bin/supered.mjs upgrade --target codex

For Claude or Gemini, replace codex with claude or gemini.

Host-specific notes: Codex, Claude, Cursor, Gemini, OpenCode.

Marketplace readiness lives in docs/marketplace-checklist.md. Codex plugin listing notes live in docs/codex-plugin-listing.md. Global Codex directory submission packet lives in docs/codex-global-listing-submission.md.

Which Skill Should I Use?

Use docs/which-skill.md as the quick router:

  • unclear task: shape-the-task
  • clear but large task: make-a-map
  • planned implementation: build-in-slices
  • broken or flaky behavior: trace-the-fault
  • completion claim: prove-the-change
  • commit, publish, or handoff: ship-the-work

Eval Pack

Supered includes a public eval pack so the skills can be judged against realistic work instead of vibes.

CLI

npm run skills
npm run validate
npm run smoke-install
npm run verify-site
npm run verify-package
npm run verify-codex-plugin
node ./bin/supered.mjs skills --json
node ./bin/supered.mjs doctor --target codex --json
node ./bin/supered.mjs doctor --target codex --fix --json
node ./bin/supered.mjs upgrade --all --json

The validator checks package metadata, plugin metadata, and skill frontmatter so the public repo does not drift into a half-installable state.

npm run verify-site opens the landing page in Chromium at desktop and mobile sizes, checks the logo and workflow text, and writes screenshots to artifacts/site/.

npm run verify-package builds the npm tarball and verifies npx-style installs, Doctor checks, Doctor repairs, and Upgrade applies for every supported host target.

npm run verify-codex-plugin checks that the Codex plugin manifest, listing assets, docs, and bundled skills are aligned for Codex plugin submission.

Design Principles

  • Small workflows beat sprawling doctrine.
  • Ask only when uncertainty changes the outcome.
  • Build in slices that can be reviewed, tested, and reverted.
  • Every success claim needs fresh evidence.
  • Shipping is part of the work, not an afterthought.

Plugin Manifests

Supered includes starter manifests for Codex, Claude, Cursor, and Gemini:

  • .codex-plugin/plugin.json
  • .claude-plugin/plugin.json
  • .cursor-plugin/plugin.json
  • gemini-extension.json

License

MIT License. See LICENSE.