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

gsd-jira-bridge

v1.3.4

Published

Syncs GSD (get-shit-done) workflow with Jira via Claude Code MCP

Readme

gsd-jira-bridge

Automatically syncs GSD (Get Shit Done) with Jira — no enterprise theater, no friction.

GSD is the best planning and execution system for Claude Code. Jira is the project management tool used by professional teams. gsd-jira-bridge is the bridge between the two.

Every time GSD advances through its cycle (new milestone, discuss phase, plan phase, execute, complete), a simple slash command keeps Jira perfectly aligned — updating Epics, Stories, Tasks, and Versions atomically.


GSD → Jira Mapping

| GSD | Jira | |-----|------| | Milestone | Fix Version | | Phase | Epic (named after GSD branch) | | Wave | Story | | Task | Task |

Epic names follow the GSD branch format exactly: gsd/phase-{N}-{slug} (e.g. gsd/phase-01-authentication), ensuring perfect traceability between git and Jira.


Prerequisites

Before installing, make sure you have:

  1. Claude Code installed and configured
  2. GSD installed (global or local):
    npx get-shit-done-cc --claude --global
  3. Jira MCP configured in Claude Code — your claude_desktop_config.json must include the Atlassian/Jira MCP server
  4. An existing Jira project with Epic, Story, and Task as Issue types
  5. Your Jira Cloud ID and Project Key ready

The installer checks all of this and guides you step by step.


Installation

Open a terminal from inside your project and run:

npx gsd-jira-bridge

That's it. Works on Windows, Linux, and macOS — no cloning, no path issues, no cleanup needed. npm downloads the installer, runs it, and removes itself automatically.

The installer asks for:

  • Install type: global (~/.claude/) or local (./.claude/)
  • Jira Cloud ID
  • Jira Project Key (e.g. EZY)
  • Jira Base URL (e.g. https://yourorg.atlassian.net)

Config is saved to ~/.claude/gsd-jira-bridge.json (or ./.claude/gsd-jira-bridge.json for local installs).

To uninstall:

npx gsd-jira-bridge --uninstall

After installing, run /jira-validate to confirm everything is working before starting.


After Installation — Getting Started

Once the installer completes, the /jira-* commands are available globally in Claude Code. You don't need to do anything else to "load" them.

Step 1 — Open your project in Claude Code

Navigate to your project folder in the terminal and launch Claude Code:

cd path/to/your/project
claude

If you don't have a project yet, create one first:

mkdir my-project
cd my-project
git init
claude

Step 2 — Verify the installation

Once inside Claude Code, run:

/jira-validate

This checks that the config, Jira MCP connection, and Issue types are all working. Fix any issues it reports before proceeding.

Step 3 — Start your GSD workflow

If you are starting a new project:

/gsd:new-project

Then immediately initialize the Jira structure:

/jira-init

If you are joining an existing project that already has .planning/:

/jira-init

gsd-jira-bridge will detect completed phases automatically and handle them correctly.

Step 4 — Follow the workflow

From here, each GSD command has a corresponding bridge command. Run them in pairs:

/gsd:discuss-phase 1    →   /jira-sync
/gsd:plan-phase 1       →   /jira-sync
/gsd:execute-phase 1    →   /jira-update 1
/gsd:complete-milestone →   /jira-close

/jira-sync figures out what needs to be done and handles it automatically. Run it after any GSD command and Jira will be up to date.

Not sure where you are? Run /jira-status at any time for a full overview.


gsd-jira-bridge plugs into the GSD cycle without modifying it. For each GSD step, run the corresponding bridge command:

/gsd:new-project          → /jira-init
/gsd:discuss-phase N      → /jira-sync-phase N
/gsd:plan-phase N         → /jira-sync-tasks N
/gsd:execute-phase N      → /jira-update N   (repeatable)
/gsd:complete-milestone   → /jira-close

Utilities — use anytime:

/jira-status              → full sync overview + mismatch detection
/jira-pull                → import Jira issues not tracked in GSD
/jira-annotate            → link GSD documents to Jira Issues
/jira-validate            → verify installation health (run once after install)
/jira-repair              → repair manifest if out of sync

Example

# 1. New GSD project
/gsd:new-project
# → Answer questions, approve roadmap

# 2. Initialize Jira
/jira-init
# → Creates Fix Version "v1.0.0 - MVP" and Epics for each Phase

# 3. Plan Phase 1
/clear
/gsd:discuss-phase 1
# → Discuss objectives and context

# 4. Sync Phase 1 to Jira
/jira-sync-phase 1
# → Updates Epic with context, moves it to In Progress

# 5. Generate the plan
/gsd:plan-phase 1
# → Creates PLAN.md with Waves and Tasks

# 6. Create Stories and Tasks in Jira
/jira-sync-tasks 1
# → Creates one Story per Wave, one Task per GSD task

# 7. Execute
/gsd:execute-phase 1

# 8. Update Jira during/after execution
/jira-update 1
# → Updates statuses from STATE.md and git log

# 9. Annotate Jira Issues with links to GSD documents
/jira-annotate --phase 1

# 10. Check for any manually created Jira issues
/jira-pull

# 11. Verify and move to next phase
/gsd:verify-work 1
/clear
# → Repeat from step 3 for Phase 2

# 12. Close the milestone
/gsd:complete-milestone
/jira-close
# → Releases Fix Version, archives manifest

Commands

/jira-init

Initializes the Jira structure for the current GSD milestone. Creates the Fix Version and one Epic per Phase. Saves everything to .planning/jira-bridge/manifest.json.

When: after /gsd:new-project


/jira-sync

The all-in-one sync command. Compares the full GSD state with Jira and brings everything up to date — creates missing Epics, syncs context, creates Stories and Tasks, updates statuses. Run it at any time without worrying about which specific command to use.

/jira-sync        → syncs all phases that need attention
/jira-sync 12     → focuses on phase 12 only

When: anytime — especially after adding new phases or after /gsd:discuss-phase and /gsd:plan-phase


/jira-sync-phase N

Updates the Jira Epic for Phase N with the context from /gsd:discuss-phase. Verifies the Epic name matches the GSD branch format. Transitions the Epic to "In Progress".

When: after /gsd:discuss-phase N


/jira-sync-tasks N

Creates Stories (one per Wave) and Tasks (one per GSD task) for Phase N. Links them to the Epic and Fix Version.

When: after /gsd:plan-phase N


/jira-update N

Reconciles GSD state (STATE.md + git log) with Jira. Updates Task, Story, and Epic statuses. Adds comments with commit references.

When: after /gsd:execute-phase N, or during execution for intermediate updates


/jira-close

Closes the milestone: releases the Fix Version in Jira, adds release notes from GSD CHANGELOG, archives the manifest.

When: after /gsd:complete-milestone


/jira-status

Full sync overview. Compares GSD and Jira state, identifies mismatches, suggests the next command.

When: anytime


/jira-pull [--phase N]

Reverse flow — Jira → GSD. Detects Issues created manually in Jira that GSD doesn't know about. Proposes how to integrate each one into the GSD workflow. Accepts --phase N to limit the search.

When: periodically, or whenever someone creates Issues in Jira outside the GSD workflow


/jira-annotate [--phase N | --all]

Adds a comment to each Jira Issue with a direct link to the corresponding GSD document (CONTEXT.md, PLAN.md, SUMMARY.md) on GitHub/GitLab. Keeps the team aligned without leaving Jira.

When: after each execute-phase or verify-work to keep links up to date


/jira-validate

Verifies in 5 steps that everything is correctly configured: config file, MCP connection, Jira project, Issue types, GSD installation. Produces a report with instructions for fixing any issues.

When: once after installation, or when something stops working


/jira-repair [--full]

Reconciles the manifest with the real state of Jira when they go out of sync. Detects Issues missing from the manifest, stale statuses, Issues deleted from Jira, and Epic names not matching the GSD branch format.

When: if the manifest is corrupt, if you've manually edited Issues in Jira, or after a migration


Generated files

.planning/
└── jira-bridge/
    ├── manifest.json          ← current sync state
    └── archive/
        └── manifest-v1.0.0-[timestamp].json   ← previous milestones

The manifest.json is the core of the bridge: it maps every GSD entity (phase, wave, task) to the corresponding Jira Issue (epic key, story key, task key) and tracks its status.


Uninstall

./uninstall.sh

Removes all slash commands and the config file. Data in .planning/jira-bridge/ is preserved.


Compatibility

  • GSD: gsd-build/get-shit-done version 1.5+
  • Claude Code: any recent version
  • Jira: Cloud (Atlassian MCP)
  • GSD install type: both global and local supported

Author

Luigi Serra


License

MIT