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

ship-tracker

v0.5.0

Published

Opinionated scaffolder for the docs/tracker + sprint tracker + AI-agent skills workflow. One init always drops the full bundle.

Downloads

1,940

Readme

ship-tracker

npm

Opinionated scaffolder for a docs-driven sprint-tracking workflow. One init always drops the complete bundle:

  • CONTEXT.md — project domain vocabulary (repo root).
  • docs/tracker/ — workflow docs: CONVENTIONS.md, Roadmap.md, Releases.md, decisions-log.md, testing.md, migrations.md, adr/, and ONBOARDING.md.
  • package-backed tracker commands — ship-tracker serves the tracker website/API from the installed package against the current repo and keeps derived runtime files under docs/tracker/.runtime/.
  • .agents/skills/ — AI-agent skills (setup-docs, ship-a-story, auto-ship, pick-next-story, write-adr, log-decision, reflect).
  • Task runner scripts (tracker, story:next, story:status, story:stats, decision:new, tracker:migrate-checkboxes).

Install

No permanent install needed — npx runs the latest published version in a project-bound way:

npx ship-tracker init

Usage

# Scaffold the full workflow in the current directory
npx ship-tracker init

# Re-run init after upgrading ship-tracker — refreshes
# .agents/skills/ and shipped ADRs; your Roadmap and CONTEXT stay intact
npx ship-tracker init

# Overwrite everything including user docs (careful)
npx ship-tracker init --force

# Wire skills into your AI assistant (only when that assistant is already in use)
npx ship-tracker link auto
npx ship-tracker link claude
npx ship-tracker link all   # same as auto — detected assistants only

# Pull template updates: adds missing files, refreshes managed bundles,
# and migrates legacy tools/tracker repos to the package-hosted runtime
npx ship-tracker update --apply

# Health check
npx ship-tracker doctor

What it does

init writes domain-neutral templates with <!-- TODO: ... --> markers everywhere a project needs to fill in their own domain content.

The scaffold's entry point is docs/tracker/ONBOARDING.md — a 14-prompt guided sequence in 5 phases (foundations → cross-cutting rules → roadmap seeding → adapt existing code → ship first story) that you paste into your AI assistant one prompt at a time. The CLI prints a short pointer to that file at the end of init.

The scaffolded skills do the heavy lifting:

  • /setup-docs — bootstrap all the docs above from an existing brief/PRD/spec: grills the document, fills CONTEXT.md, docs/tracker/Roadmap.md, docs/tracker/Releases.md, the first ADR, and adapts existing code (brownfield). The fast path through ONBOARDING.md when you already have a source document.
  • /log-decision — append Q/A grilling decisions to docs/tracker/decisions-log.md.
  • /write-adr — author Architecture Decision Records under docs/tracker/adr/.
  • /pick-next-story — identify the next pending Roadmap story without shipping.
  • /ship-a-story — pick + work the next story end-to-end (TDD, lint, types, tracker toggle).
  • /auto-ship — drive a whole sprint hands-off: loops pick-next → plan → grill → ship → commit per story with no prompts, pausing only when a sprint completes to ask continue/stop.

Story state is canonical in docs/tracker/Roadmap.md checkboxes. The tracker (pnpm tracker) and the CLI (pnpm story:next) read and atomically toggle them. History and other derived runtime files live under docs/tracker/.runtime/ so the integration stays easy to remove.

Why

The same skills + tracker + CONVENTIONS workflow benefits any project that wants AI-driven backlog execution. Without a CLI, each new project re-copies and drifts. This package keeps templates in one place.

Project layout

packages/ship-tracker/
├── src/
│   ├── cli.mjs               # argv dispatcher
│   ├── commands/             # init, link, update, doctor
│   ├── lib/                  # fs, pm, package-json, symlinks, templates
│   └── prompts.mjs           # post-init next-steps text
└── templates/                # copied/rendered into target projects
    ├── CONTEXT.md.tmpl
    ├── docs/
    │   ├── README.md.tmpl
    │   └── tracker/          # workflow docs
    └── .agents/skills/       # AI-agent skill definitions

Runtime model

  • ship-tracker tracker --cwd . serves the tracker UI/API from the package, not from checked-in repo files.
  • Generated runner tasks keep the familiar names: tracker, story:next, story:status, story:stats, decision:new, tracker:migrate-checkboxes.
  • ship-tracker update --apply removes legacy tools/tracker/ files from older scaffolds and rewires tasks to the package CLI.
  • Runtime-only local data is written to docs/tracker/.runtime/ and gitignored by default.