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

create-repo-harness

v0.1.6

Published

Scaffold the repo-harness template: a lean harness for agent-driven repositories (anti-bloat, three-layer lookup, promotion gates)

Readme

create-repo-harness

Scaffold the repo-harness template — a lean harness for agent-driven repositories: anti-bloat gates, three-layer code lookup, pull-mode promotion, and the ./repo CLI (Python stdlib, zero dependencies).

Usage

Install once, get the short global command (codegraph-style):

npm install -g create-repo-harness
repoharness new my-project       # git ready when the command returns
repoharness update               # inside a project: lossless refresh
repoharness attach               # add the harness to the current existing repo

Or without installing anything (one-off, always latest):

npm create repo-harness@latest my-project   # scaffold
npm create repo-harness@latest . --update   # lossless update inside a project

The package is a scaffolder only: it copies the embedded template and exits. Your repository never depends on npm at runtime.

What lands in your repo

AGENTS.md · ARCHITECTURE.md · repo (CLI launcher) · .harness/ (config, playbook, ledger, schemas) · tools/INDEX.md · docs/decisions/ · src/ tests/ zones · var/ (disposable run space, gitignored).

See the scaffolded README.md for the full model.

Updating an existing harness project (lossless)

When a new template version ships, run inside your project:

npm create repo-harness@latest . --update

Driven by an ownership manifest (MANIFEST.json):

  • mechanism files (repo, src/harness_cli/, harness tests, playbooks) are refreshed silently — this is where fixes land;
  • advisory files you may have customized (AGENTS.md, README.md, ...) are backed up to var/update-backups/<ts>/ before overwriting;
  • user state (config.yaml, runs.log, IDENTITY.md, tools/, docs/, your code and tests) is never touched;
  • template doc examples are never imposed.

The applied version is recorded in .harness/VERSION; review with git status and stage.

Release (maintainers)

npm pack/npm publish may skip lifecycle scripts depending on environment — always embed explicitly:

node scripts/embed.js && npm publish