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

jira-ticket-skills

v1.0.8

Published

Install Jira ticket resolution skills for AI coding tools (Claude Code, Cursor, Antigravity)

Readme

jira-ticket-skills

Install Jira ticket resolution skills for AI coding tools — Claude Code, Cursor, and Antigravity.

One command sets up everything: skill files, Jira MCP server, optional Figma integration, and environment config.

Quick Start

npx jira-ticket-skills

The installer will prompt for:

  • Your Jira instance URL
  • Authentication credentials (Personal Token or API Token)
  • Default project key (e.g., PRJ)
  • Whether to enable Figma design integration

What Gets Installed

| File | Purpose | | --------------------------------------------- | ------------------------------------------ | | .claude/skills/resolve-jira-ticket/SKILL.md | The skill definition (Claude Code) | | .cursor/skills/resolve-jira-ticket/SKILL.md | The skill definition (Cursor) | | .agent/skills/resolve-jira-ticket/SKILL.md | The skill definition (Antigravity) | | .mcp.json / .cursor/mcp.json | MCP server configs (Jira + Figma) | | .claude/settings.json | Environment variables (JIRA_PROJECT_KEY) |

Only files for your selected tool(s) are created.

Usage

After installation, invoke the skill in your AI tool:

/resolve-jira-ticket           # List your assigned tickets
/resolve-jira-ticket PRJ-123   # Work on a specific ticket

The skill orchestrates a 6-phase workflow:

  1. Fetch — Search Jira for assigned tickets or use a provided ID
  2. Analyze — Deep-read ticket details, ALL comments, linked issues, Figma links
  3. Design — Extract Figma specs and create ASCII wireframes (if Figma links found)
  4. Map — Find relevant code paths in the codebase
  5. Debug/Implement — Root cause analysis → fix (using systematic-debugging)
  6. Verify — Run tests, lint, confirm with evidence

Prerequisites

  • Node.js >= 18
  • uvx (for Jira MCP server) — Install: pip install uv
  • Figma desktop app (optional, for Figma Bridge integration)

Superpowers (Recommended)

The skill chains three superpowers skills for a rigorous workflow. Install them for your tool:

Claude Code:

claude plugin install superpowers

Cursor:

npm install -g prpm && prpm install collections/superpowers
# or
bun add -g openskills && openskills install obra/superpowers --universal --global && openskills sync

Antigravity:

# Clone and copy skills into .agent/skills/
git clone https://github.com/anthonylee991/gemini-superpowers-antigravity

CLI Options

npx jira-ticket-skills              # Interactive install
npx jira-ticket-skills --uninstall  # Remove skill + configs
npx jira-ticket-skills --yes        # Non-interactive (env vars)
npx jira-ticket-skills --tool claude # Force specific tool
npx jira-ticket-skills --no-figma   # Skip Figma integration

Non-Interactive Mode

For CI or scripted setups, use --yes with environment variables:

JIRA_URL=https://jira.example.com \
JIRA_TOKEN=your-token \
JIRA_PROJECT_KEY=PRJ \
TOOL=claude \
npx jira-ticket-skills --yes

Uninstall

npx jira-ticket-skills --uninstall

Removes skill files, MCP server entries, and settings we added. Does not affect other MCP servers or settings.

License

MIT