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

@barry-napier/trkr

v0.1.12

Published

A ticket board and AI orchestrator for your repo. `trkr` creates a GitHub Projects v2 board and runs an agent daemon that moves tickets through an SDLC pipeline — spec, implement, review, and hand off to a human.

Readme

trkr

A ticket board and AI orchestrator for your repo. trkr creates a GitHub Projects v2 board and runs an agent daemon that moves tickets through an SDLC pipeline — spec, implement, review, and hand off to a human.

Docs: trkr.bnapier.dev

The idea

The board column is a contract boundary. Off-board (intake, spec) is human-in-the-loop; once a ticket boards, the daemon owns it: it moves tickets between columns, runs a fresh AI agent session per stage in a per-ticket git worktree, and enforces hard gates — stages must mechanically prove their artifacts exist. Every workflow terminates in an agent review pass, then trkr requests your review on the PR and moves the ticket to Done. Nothing auto-merges, ever.

  • Board state lives on GitHub (issues + Projects v2 + native blocked_by dependencies) — no separate database.
  • Provider-agnostic: agents are shell command templates (claude by default; Copilot and Kiro built in). Intake asks who works each ticket and stamps it on the board's Agent field — the daemon runs that provider for the ticket's stages.
  • 3 verification turns, then the ticket is Blocked and waits for you (trkr unblock <issue>).
  • Local-first OTel-shaped telemetry: one trace per ticket turn, no sampling, every failure replayable.

Quick start

# prerequisites: node 20+, authenticated `gh` CLI, an agent CLI (e.g. `claude`)
npm install -g @barry-napier/trkr

cd ~/your/repo
trkr init                          # create the board
trkr new "add pagination"          # grill + spec + board a ticket
trkr start                         # run the orchestrator
trkr status                        # watch it work

Commands

| Command | What it does | |---|---| | trkr init | Create (or migrate) the board; writes .trkr.json | | trkr new <text> | Classify, grill, spec, and board a ticket | | trkr scope <text> | Map a large effort into decision tickets that collapse into a spec | | trkr resolve <issue> | Interview and close a grill-type decision ticket | | trkr start / stop / status | Control the daemon | | trkr unblock <issue> | Reset a blocked ticket's turns and restart its workflow | | trkr delete | Delete the board |

See the CLI reference and configuration docs for the rest.

Development

pnpm build       # plain tsc → dist/ (the global `trkr` runs dist/)
pnpm test        # vitest
pnpm typecheck
pnpm docs:dev    # this docs site, locally

ESM only. GitHub access goes through the gh CLI (GraphQL) — no vendor SDK.

License

MIT