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

dispatches

v0.1.1

Published

Shareable agent skill and export CLI for .agents/dispatches session records

Readme

dispatches

dispatches is a shareable agent skill for repositories that want a human-readable record of why a branch changed.

Agents need memory. Models need transcripts. Humans need orientation.

When a coding agent works for hours or days, the diff tells you what changed and the transcript tells you everything that happened, but neither is a good way to understand the branch. Dispatches fill that gap: a chronological, branch-scoped set of short notes in .agents/dispatches/<date>-<branch>.md that explain what the session was trying to do, what changed since the last meaningful entry, and how to interpret the work.

Dispatches are written for humans first. They can still help future agents, but that is not the primary job. They are not raw chat history, and they are not a general-purpose memory bank. They are a curated captain's log for a branch.

Why this exists

This project started as a "journal" or ".diary" workflow because agent-heavy development creates a specific kind of confusion:

  • commit history captures code movement, not the evolving interpretation of that movement
  • transcript archives are too exhaustive when a reviewer just needs the shape of the work
  • plans go stale quickly unless they are folded back into the running record
  • repo-level movement on main or a base branch can change how a feature branch should be read, even if nothing happened locally that day
  • long-running threads blur together unless each meaningful day gets its own entry

Dispatches exist to preserve that missing middle: not every keystroke, and not just the final diff, but the editorial context a human reviewer or future maintainer actually needs.

What the skill enforces

  • one dispatch file per date and branch
  • an ## Editor's Note at the top that summarizes intent and shifts in context
  • updates as commits happen during the session so the note stays aligned with the branch
  • migration of standalone plan documents into the relevant dated dispatch entry, followed by removal of the original files
  • a chronological history that explains why work happened, not just what changed

Packaging

The repository is structured as a root-level skill so current skills tooling can discover it directly:

npx skills add <owner>/dispatches

It is also publishable to npm as dispatches. The package includes a small helper CLI:

dispatches verify
dispatches path
dispatches export ./some-directory

On this machine, npm cache permissions required using a temporary cache during verification and publish:

npm_config_cache=/tmp/npm-cache npm publish --access public