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

loopsmith

v0.1.0

Published

Loop engineering for coding agents. Installs a maker/checker verification loop, an independent grader, and a budget estimator as Claude Code skills.

Readme

What is this?

Prompting a coding agent turn by turn and hoping the result works is a slow way to ship. loopsmith wraps a code task in a loop instead: it writes the change, runs your tests, lint, and build, checks the resulting diff against what you actually asked for, and retries until it passes or the loop decides to stop.

It is a Claude Code plugin made of three skills.

The idea worth remembering: an agent that thinks it is done is not the same as a change that has been independently verified. loopsmith keeps a hard wall between the agent that makes the change (the maker) and the agent that grades it (the checker). The checker never sees the maker's reasoning, only the original intent, the resulting diff, and the command output. That independence removes the self-grading bias where an agent approves its own work.

Install

One line installs all three skills into your global Claude Code skills directory:

npx loopsmith

This copies the skills into ~/.claude/skills/. Start a new Claude Code session and they are ready. To install into the current project instead, use npx loopsmith --project, which writes to ./.claude/skills/.

The three skills

| Skill | What it does | |-------|--------------| | verify-loop | The full loop. A maker sub-agent writes the change. A separate checker sub-agent with a clean context runs tests, lint, and build, and reviews the diff against the original intent. Failures feed back and it retries until PASS or a stop condition fires. | | grade | The checker on its own. A one-shot, read-only verdict on a pending diff against its stated intent. Good for a report-only review, and it is the checker step inside verify-loop. | | loop-cost | Estimate the token and iteration budget of a loop before running it, so the loop has a ceiling to stop against. |

How it works

1. Capture the intent and auto-detect the verify commands.
2. Maker sub-agent writes the change.
3. Checker sub-agent runs the commands and reviews the diff against the intent.
4. PASS  -> exit.
   FAIL  -> structured feedback goes back to the maker.
5. Repeat until PASS or a stop condition fires.

The maker and the checker run in separate contexts. The checker judges two things independently: do the checks pass, and does the diff actually do what was asked.

The half that says no

A loop without a stop condition is a token furnace. verify-loop stops on:

  • PASS: the checks pass and the diff matches the intent.
  • Max iterations: default 3.
  • No progress: the same failure appears twice.
  • Budget exceeded: the loop-cost ceiling is hit.
  • Risk or ambiguity: it escalates to a human instead of forcing a destructive fix.

Usage

Invoke the full loop in Claude Code:

/verify-loop "add pagination to the users endpoint and make the tests pass"

You can also run the checker standalone on a pending diff:

/grade

And estimate the budget before a big loop:

/loop-cost

Status

v0.1.0, early. Scope is code tasks and session-scoped (one task, one loop). Install it with npx loopsmith as shown above.

Planned:

  • native Claude Code plugin marketplace install (/plugin install)
  • domain-agnostic grading (text, plans, analysis)
  • a checker panel with majority vote for higher assurance
  • scheduled and unattended loops

License

MIT.