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

hone-skill

v1.0.0

Published

AI writes the code. You understand it. — Hone keeps your coding skills sharp while using AI.

Readme

⚡ Hone

AI writes the code. You understand it.

Hone is an open-source skill preservation layer for developers using AI coding tools. It wraps any AI engine with a comprehension protocol that keeps your coding instincts sharp — even as AI does more of the heavy lifting.


The Problem

AI coding tools are extraordinary. They also make it dangerously easy to accept code you don't fully understand. Over time, you stop building mental models. You start losing intuition. Your skills drift.

Hone fixes that.


How It Works

Every time your AI writes code, Hone adds two things:

1. A Digest — A plain-English summary of what the code does, what decision was made, and what to watch out for.

2. A Comprehension Check — One focused question that tests whether you actually understood what was just written.

That's it. One loop. Keeps you engaged.

## 🔍 Hone Digest

**What just happened:** The function uses a sliding window to track the longest
substring without repeating characters, updating the window boundaries as it
iterates through the string.

**Key decision:** A Map was used instead of a plain object for character tracking
because it gives O(1) lookups and is slightly safer with unusual key names.

**Watch out for:** This assumes the input string is non-empty — an empty string
will return 0 correctly, but passing null or undefined will throw.

## 🎯 Hone Check

What would happen to the result if the string contains only one unique character
repeated 100 times?

> Answer with `hone: your answer`

Quick Start

Option 1 — Drop the file (zero setup)

# Copy hone.md into your project root
# Your AI will read it automatically (Cursor, Claude Code, etc.)
cp hone.md /your/project/hone.md

Option 2 — Use the CLI

# Install and init for your AI tool
npx hone init                        # generic hone.md
npx hone init --target cursor        # .cursorrules
npx hone init --target claude-code   # CLAUDE.md
npx hone init --target vscode        # .github/copilot-instructions.md

Option 3 — Add a domain pack

npx hone init --target cursor --domain react
# or add one later
npx hone add sql

Domain Packs

Domain packs extend Hone with language/framework-specific question templates.

| Pack | Focus | |------|-------| | react | Hooks, state, rendering, performance | | sql | Joins, indexes, aggregation, query optimization | | python | Idioms, mutability, async, OOP | | node | Event loop, streams, APIs, middleware | | devops | Docker, CI/CD, Kubernetes, IaC |

npx hone add react
npx hone add sql
npx hone domains   # list all available packs

Comprehension History

Hone logs your answers locally in .hone/history.json (gitignored by default).

npx hone history          # last 10 sessions
npx hone history --last 50

The history view shows:

  • Which answers were correct / incorrect
  • Your weak spots by topic
  • Session timestamps

Supported AI Tools

| Tool | How Hone loads | |------|---------------| | Cursor | .cursorrules | | Claude Code | CLAUDE.md | | GitHub Copilot | .github/copilot-instructions.md | | Any AI (raw) | hone.md — paste into system prompt |


Controls

Use these inline during any AI session:

| Command | Effect | |---------|--------| | hone: [your answer] | Submit your comprehension answer | | hone: skip | Skip digest + question for this response | | hone: off | Disable Hone for the rest of the session | | hone: on | Re-enable Hone |


Project Structure

hone/
├── hone.md              ← core drop-in file (start here)
├── package.json
├── skill/
│   ├── cli.js           ← npx hone entry point
│   ├── index.js         ← init logic
│   ├── logger.js        ← local history tracking
│   └── domains.js       ← domain pack manager
├── domains/
│   ├── hone-react.md
│   ├── hone-sql.md
│   └── hone-python.md
├── examples/
│   ├── cursor/
│   ├── claude-code/
│   └── vscode/
└── README.md

Contributing

Hone is open source and built for the community.

Ways to contribute:

  • Add new domain packs (hone-rust.md, hone-go.md, etc.)
  • Improve question templates in existing domain packs
  • Build IDE plugins that log comprehension answers automatically
  • Add support for new AI tools

See CONTRIBUTING.md to get started.


Philosophy

Hone doesn't slow you down. It doesn't gatekeep AI. It doesn't make you write code the hard way.

It just makes sure that as AI gets more powerful, you stay sharp too.

AI writes the code. You understand it.


License

MIT — free to use, fork, and extend.