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

cc-hill-climb

v1.1.1

Published

Hill-climbing skill for Claude Code. Iterative improvement with measurable fitness dimensions.

Readme

claude-skill-hill-climbing

npm package that adds structured hill-climbing iteration to Claude Code. Define measurable fitness dimensions, improve one step at a time, and let an overseer keep you honest.

Install

npm install claude-skill-hill-climbing

Postinstall copies skills and commands into your project's .claude/ directory automatically.

What's Included

| Component | Type | Purpose | |-----------|------|---------| | hill-climbing | Skill | Execute ONE iteration: measure, plan one change, execute, measure again, pause | | climb-overseer | Skill | Monitor active climbs for plateaus, regressions, and goal completion | | /climb | Command | Launch a supervised session with worker + overseer cron loops |

Quick Start

Single iteration

/hill-climbing improve test coverage for TokenSwap

Claude measures baseline, plans one focused change, executes it, measures again, logs results, and pauses.

Supervised session

/climb improve test coverage for TokenSwap

This sets up recurring crons: a worker every 5m, an overseer every 25m, and auto-expiration at 1h. The overseer detects plateaus, regressions, and goal completion — nudging or terminating as needed.

/climb 10m expires:3h improve test coverage for TokenSwap

Custom timing: 10m worker interval, 50m overseer interval, 3h expiration.

Fitness Dimensions

Each climb tracks measurable dimensions with direction indicators:

  • — higher is better (e.g. branch coverage %)
  • — lower is better (e.g. revert rate, LoC)
  • = — must not change (e.g. test count stays passing)

Progress is logged to .hill-climb/<slug>.md artifacts that persist across sessions.

How It Works

  1. Worker (hill-climbing) runs one iteration per session — measure, change, measure, log, stop
  2. Overseer (climb-overseer) checks artifacts periodically and detects:
    • Goal met — all targets reached, terminates the climb
    • Regression — a dimension moved the wrong way, warns
    • Plateau — 3+ iterations with no progress, nudges with alternatives
    • Stuck — second consecutive nudge without improvement, terminates
  3. Launcher (/climb) wires both together via crons with automatic expiration

Development

Edit skill files in skills/. The local .claude/skills/ symlinks to this directory so Claude Code picks up changes without a copy step.

Local Testbed

This repo includes a Solidity project used to test the hill-climbing skills, commands, and hooks locally. These directories are not part of the published npm package:

| Directory | Purpose | |-----------|---------| | contracts/, test/ | Foundry project — target codebase the skill iterates on | | smart_contracts/, src/ | Additional contract/app source for testing varied scenarios | | hooks/ | Event hooks (subagent lifecycle) used during supervised climbs | | foundry.toml | Foundry config for the testbed | | lib/, out/, cache/ | Foundry build artifacts (gitignored) | | .hill-climb/ | Climb artifacts generated during test runs |

Only skills/, agents/, commands/, and install.js are published to npm (see files in package.json).

forge test        # run Solidity tests
npm pack --dry-run # verify published file list

License

MIT