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

@korykaai/collab-kit

v0.4.0

Published

Bootstrap GitHub team workflows — PR templates, CI, git hooks, and docs in one command

Readme


See it in action

npx @korykaai/collab-kit init my-app

Before: empty repo, no templates, no CI, no conventions.

After: a complete collaboration baseline you own and can customize.

my-app/
├── .github/          # PR + issue templates, CI, Dependabot
├── .githooks/        # commit message hygiene
├── docs/             # maintainer playbooks (PR workflow, triage, FAQ)
├── tools/            # commit + branch validators
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md
└── SECURITY.md

Quick start

Scaffold into your current repo:

npx @korykaai/collab-kit init .
git config core.hooksPath .githooks

Or into a new directory:

npx @korykaai/collab-kit init my-project
cd my-project
git init
git config core.hooksPath .githooks

Use --force to overwrite files that already exist.

Ship your release

Once your project is ready, pair collab-kit with shipkit to handle versioning, changelog, GitHub releases, and npm publish:

npx @korykaai/shipkit preflight
npx @korykaai/shipkit release --minor --dry-run
npx @korykaai/shipkit ship --patch --yes

See the shipkit repo and npm package for full command reference.

Why collab-kit?

| Approach | Setup time | You own the files | Includes docs + validators | Works offline | |----------|:----------:|:-----------------:|:--------------------------:|:-------------:| | collab-kit | ~30 sec | Yes | Yes | Yes | | GitHub "Use this template" | ~2 min | Partial (new repo only) | Rarely | No | | Husky + commitlint + manual templates | ~30 min | Yes | No | Yes | | Copy-paste from an old repo | ~15 min | Yes | Maybe | Yes |

collab-kit is for teams who want a batteries-included GitHub workflow baseline without adopting a framework or SaaS.

  • No account or API key required
  • No framework lock-in — plain Markdown, YAML, and shell
  • Opinionated defaults you can edit or delete
  • Ships maintainer docs, not just config files

What you get

| Category | Included | |----------|----------| | GitHub | PR template, bug/feature issue templates, Dependabot, CI workflow | | Git hooks | prepare-commit-msg to strip unwanted co-author trailers | | Tooling | Conventional Commits validator, branch name checker | | Docs | PR workflow, issue triage, pair programming, onboarding, FAQ | | Community | Code of conduct, contributing guide, security policy |

CLI commands

collab-kit init [dir] [--force]              # copy workflow scaffold
collab-kit validate-commit "feat: add login" # check commit message
collab-kit branch-name feat/add-login        # check branch name

Development

git clone https://github.com/kory-kaai/collab-kit.git
cd collab-kit
npm test

Documentation

Star history

If collab-kit saved you time setting up a repo, a star helps others find it.

Star on GitHub

Contributing

PRs welcome! See CONTRIBUTING.md.

License

MIT — see LICENSE.