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

agent-buildprint

v0.0.17

Published

CLI for bootstrapping Agent Buildprints for coding agents.

Readme

Agent Buildprint

npm version Node.js >=20 license MIT Website

Buildprints are executable implementation packets for coding agents.

Skills improve the worker. Buildprints package the work. A skill teaches an agent how to debug, design, review, search, or use a tool well. A Buildprint tells an agent what to install, change, or build in a target codebase and how to prove it worked.

Browse published Buildprints and copy the shortest start command here:

https://agent-buildprint.com/

Shortcuts

AGB is the optional CLI helper for loading exact Buildprint snapshots into a workspace. You can install it globally for convenience:

npm install -g agent-buildprint

Then start from a published Buildprint:

mkdir my-build
cd my-build
agb start https://agent-buildprint.com/buildprints/buildprint-mapper-os/package.json .

No global install required:

git clone https://github.com/DomEscobar/agent-buildprint
node agent-buildprint/bin/agb.js start \
  https://agent-buildprint.com/buildprints/buildprint-mapper-os/package.json .

Optionally install the local agent skill harness:

agb harness init .
agb harness check .
agb harness checkup .

Then give the workspace to your coding agent and tell it to read:

.buildprint/next-agent.md

Common Commands

agb start <buildprint-package-json-url-or-file> [target-folder]
agb packet check <packet-folder-or-package-json-url>
agb packet next <packet-folder-or-build-state-folder>
agb harness init [project-folder] [--profile webapp] [--profile backend]
agb harness check [project-folder] [--profiles webapp,backend]
agb harness checkup [project-folder] [--profiles webapp,backend]
agb --help

What You Get

A Buildprint snapshot gives the agent ordered files for setup, UI identity, implementation phases, proof obligations, blockers, and handover.

The point is not to guess from a repo blindly. The point is to give the agent a precise build path it can follow, while still allowing explicit wishes such as a different door, a bigger garden, or another extension.

Product Buildprints package whole systems. Capability Buildprints package bounded integrations such as Stripe subscriptions, RBAC permissions, API key management, webhooks, auth, analytics, or deployment.

Local Development

From this repository:

node ./bin/agb.js --help
npm run check:syntax
npm run check:packet:mapper
npm run check:packets
npm run check:capabilities
npm run check:authors
npm run check:capability:regressions
npm run eval:mapper-overhaul
npm pack --dry-run

Node.js 20 or newer is required.