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

@adikuma/breadcrumb

v0.3.0

Published

cli for creating and checking breadcrumb review handoffs

Readme

@adikuma/breadcrumb

CLI for creating and checking Breadcrumb review handoffs.

Breadcrumb helps reviewers understand agent-written pull requests by asking the coding agent to leave a small structured trail next to the code. The trail lives in the repo at .breadcrumb/tasks/<task-id>/review.yml.

Install

Run it without installing:

pnpm dlx @adikuma/breadcrumb init

Or add it to a project:

pnpm add -D @adikuma/breadcrumb

Commands

breadcrumb init
breadcrumb init --agent claude,codex
breadcrumb task new <id>
breadcrumb check --task <id>
breadcrumb check --task <id> --json
breadcrumb check --task <id> --strict

Typical Flow

breadcrumb init
breadcrumb task new quote-add-ons
breadcrumb check --task quote-add-ons

breadcrumb init sets up the handoff and asks which agents should get the handoff skill. A developer sees an interactive picker; an agent or CI passes --agent (defaulting to claude,codex). It creates:

.breadcrumb/
  config.yml
  tasks/
  templates/review.yml
AGENTS.md                                  # the handoff contract
CLAUDE.md                                  # imports AGENTS.md
.claude/skills/breadcrumb-handoff/SKILL.md # claude
.codex/skills/breadcrumb-handoff/SKILL.md  # codex
.agents/skills/breadcrumb-handoff/SKILL.md # codex cross agent dir

AGENTS.md holds the contract; CLAUDE.md just imports it with @AGENTS.md. The skill carries the craft of writing a good handoff and loads only when an agent is writing one. Existing instruction files are updated in place inside a managed block, never replaced. Pass --agent none to skip the skill.

What Check Does

breadcrumb check validates the handoff and compares it with the real git changed files.

It checks that:

  • review.yml has the expected schema
  • changed files are covered by the review path
  • risk values are valid
  • paths are relative and safe
  • generated folders like node_modules, dist, .next, and coverage are ignored

Example Handoff

version: 1
id: quote-add-ons
title: Add optional add-ons to the quote flow
user_goal: Let sales reps add optional services to a quote.
summary: Adds add-on selection and includes add-ons in quote totals.
review_sequence:
  - src/pricing/tax.ts
files:
  - path: src/pricing/tax.ts
    why: Start here because this file defines the pricing rule.
    risk: medium

Why This Exists

Normal pull request tools show what changed. Breadcrumb adds how to read it: the intent, risk, and recommended review order.

Releasing

Before bumping the version and publishing, run the packaging smoke test. It packs the tarball, installs it into a clean directory, and runs the installed binary, so a missing file fails here instead of after publish:

pnpm --filter @adikuma/breadcrumb check   # types + unit tests
pnpm --filter @adikuma/breadcrumb smoke   # packaged artifact runs end to end