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

autoimprove-skill

v1.0.1

Published

Agent skill: autonomously improves other skills through eval-driven experimentation (Karpathy-style autoresearch loop)

Readme

autoimprove-skill

Autonomously improves agent skills through eval-driven experimentation. Runs a Karpathy-style autoresearch loop: evaluates Recall (does the skill activate when it should?) and Precision (does it produce correct output?), proposes targeted edits, keeps improvements, and reverts regressions.

Install

npx autoimprove-skill

You'll be asked where to install:

[g] Global — all agent platforms (~/.agents, ~/.claude, ~/.opencode)
[l] Local  — this project only (./.agents/skills/autoimprove-skill)
[b] Both   — global + local

Or skip the prompt with flags:

npx autoimprove-skill --global     # global only
npx autoimprove-skill --local      # local only
npx autoimprove-skill --both       # global + local
npx autoimprove-skill --target ~/projects/my-app   # custom path

Options

| Flag | Description | |------|-------------| | -g, --global | Install globally across all agent platforms | | -l, --local | Install into the current project only | | -b, --both | Install both globally and locally | | --target <path> | Install into a specific path | | --dry-run | Show what would be installed without writing files | | --force | Overwrite existing skill files | | --uninstall | Remove the skill from all directories |

Usage

Once installed, invoke the skill by name on any supported platform:

Load the autoimprove-skill. Target: my-copywriting-skill

The skill will:

  1. Locate the target skill and its evals.json
  2. Ask you to choose an iteration mandate (NEVER STOP, iteration cap, stagnation cap)
  3. Run the Karpathy loop — evaluate, edit, re-evaluate, keep or revert
  4. Generate an HTML report when done

Eval Format

Target skills need an evals/evals.json defining test prompts. See EVALS-FORMAT.md for the full schema.

What's Inside

skill/
├── SKILL.md                  # The skill body — 5-phase workflow
├── EVALS-FORMAT.md           # evals.json schema reference
├── REPORT-TEMPLATE.html      # HTML report scaffold
└── scripts/
    └── generate-report.sh    # Converts results.tsv to HTML