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

wheres-the-jira

v2.0.3

Published

Auto-create Shortcut stories or JIRA issues from git commits using AI

Readme

Where's the JIRA Ticket? 🎫

A utility for engineers who want to work fast and freeform, without getting asked "where's the story?" or "where's the ticket?" Because absolutely no one wants to do that.

Why? 🤔

This is a bit of a self-explanatory project. It came along out of pure frustration with wanting to push fixes and always having to describe my changes in some sort of convoluted planning way, when I know exactly what to make/what to code but never what exactly to say on the JIRA ticket or story.

"Why not infer that from the diff so people can stop asking me where's the ticket?" I thought. Well, LLMs sure make that easy.

I don't really care much about hallucinations because what I write on a story does not capture the full picture of the diff anyway, so... yeah. It makes my job faster, and I hope it can make yours faster too.

Installation

npm install -g wheres-the-jira

Setup

cd your-project
wtj

Pick JIRA or Shortcut. Enter your credentials. That's it.

How it works

  1. You code whatever you want
  2. You commit with normal messages like "fixed that stupid bug" or "whatever"
  3. You push
  4. The hook reads your commits and diff
  5. AI figures out what corporate-speak title and description to generate
  6. Creates the ticket automatically
  7. Renames your branch to include the ticket ID
  8. Your manager is happy, you never had to open JIRA

What you need

  • Node.js 14+
  • OpenAI API key (for the AI part)
  • JIRA or Shortcut account
  • A healthy disdain for process theater

Configuration

Config goes in .wtj-config.json. Don't commit it.

For JIRA

  • Your company's Atlassian URL
  • Email + API token
  • Project key (that annoying uppercase thing)
  • Sprint ID if you care about that

For Shortcut

  • API token
  • Project ID
  • Whatever other ceremony they require

Example

git checkout -b fix-that-annoying-thing
# hack hack hack
git commit -m "fixed the thing"
git push

# Output:
# Creating JIRA issue...
# Done. PROJ-1234 created.
# Branch renamed to PROJ-1234-fix-that-annoying-thing

Now when someone asks "where's the JIRA?" you can point to the branch name.

License

GPLv3. Use it however you want, but commit what you change.