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

khesir-skills

v0.1.0

Published

Install Khesir's Claude Code workflow-management skill pipeline (idea to PRD to issues to implementation to QA).

Readme

khesir-skills

Install a full local workflow pipeline of Claude Code skills — from a raw idea, through a PRD, through issue breakdown, through TDD implementation, through QA, to done. Pick exactly the skills you want, or install all 12 in one command.

Everything the skills produce stays local (issues/ files in your own repo) — no external services, no accounts, no tracking.

npx khesir-skills

The pipeline

The 12 skills in this package form one coherent loop:

grill-me / grill-with-docs   → interrogate a new idea until every design decision is resolved
        ↓
to-prd                       → turn the resolved conversation into issues/prd.md
        ↓
to-issues                    → break the PRD into independently-gradable issue files (issues/ready, issues/backlog)
        ↓
implement-issues             → TDD loop: red → green → refactor, issue by issue, until everything reaches issues/qa
        ↓
qa                           → automated build/test/lint/review pass + a visual QA checklist for human eyes
        ↓
qa-approve / qa-reject       → sign off an issue into issues/done, or bounce it back to ready/ with a bug attached
        ↓
new-feature                  → archive the finished issues/ folder and start the next cycle

Two more skills support the loop at any point:

  • bug-report — turn something a user described as broken into a proper issue in issues/ready/
  • review — a holistic Standards + Spec check across everything you've built so far
  • handoff — compact the current conversation into a document for another agent/session to pick up

Prerequisites

  • Node.js 18 or later
  • Claude Code installed, with access to its skills directory (.claude/skills/ in a project, or ~/.claude/skills/ globally)

Usage

Interactive (recommended)

Run with no flags to get a checklist of all 12 skills and a prompt for where to install them (this project, or globally):

npx khesir-skills

Install everything

npx khesir-skills --all

Install specific skills

npx khesir-skills --skills bug-report,to-prd,to-issues

Install globally instead of to the current project

Combine with either of the above, or use alone (still prompts for which skills to install):

npx khesir-skills --all --global
npx khesir-skills --global

See the full catalog without installing anything

npx khesir-skills --list

By default, skills install to .claude/skills/ in the current project. --global installs to ~/.claude/skills/ instead, available to every project on your machine. Re-running the command overwrites previously installed versions of the skills you select — safe to use as an update mechanism.


Skill catalog

| Skill | What it does | |---|---| | grill-me | Interviews you about a new idea one question at a time until every design decision is resolved, then hands off to to-prd. | | grill-with-docs | Same interview loop as grill-me, but also challenges the idea against your existing domain model and keeps CONTEXT.md/ADRs up to date as you go. | | to-prd | Synthesizes the resolved conversation into a PRD saved at issues/prd.md. | | to-issues | Breaks a PRD into independently-gradable vertical-slice issues, tracked on issues/kanban.md. | | implement-issues | Runs a TDD loop (red → green → refactor) over every ready issue until each one reaches issues/qa/. | | qa | Runs automated build/test/lint/code-review checks on everything in issues/qa/ and generates a visual QA checklist for the parts that need human eyes. | | qa-approve | Signs off one or all reviewed issues, moving them from issues/qa/ to issues/done/. | | qa-reject | Attaches bug details to an issue and sends it back to issues/ready/ for a fix. | | review | A holistic Standards + Spec review of accumulated changes, run in parallel sub-agents, side by side. | | new-feature | Archives the current issues/ folder and starts a fresh cycle for the next feature. | | bug-report | Turns a description of something broken into a validated issue in issues/ready/. | | handoff | Compacts the current conversation into a document another agent/session can pick up from. |


License

MIT — see LICENSE.


Maintainer notes (not for end users)

This section documents what's still outstanding before this package is actually published. It's here for whoever maintains this repo, not for people installing it.

  • Repo is live at github.com/Khesir/khesir-skills. Not yet published to npm.
  • khesir-skills is confirmed available on the public npm registry (npm view khesir-skills → 404, as of 2026-08-14).
  • package.json's repository/homepage/bugs/author fields are filled in and point at the GitHub repo above.
  • To publish: npm publish from the repo root (bump version first if this isn't the first release).