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 🙏

© 2025 – Pkg Stats / Ryan Hefner

jct-cli

v2.0.1

Published

**JCT** is a command-line interface tool designed to help developers efficiently manage **Jira issues**, keep their workflow aligned with **Git Flow**, and generate commit messages and branches following **Jira’s official formatting rules**.

Readme

⭐ JIRA Commit Tool CLI (JCT)

JCT is a command-line interface tool designed to help developers efficiently manage Jira issues, keep their workflow aligned with Git Flow, and generate commit messages and branches following Jira’s official formatting rules.

JCT automatically formats commit messages and creates branches using Jira issue keys, ensuring seamless integration — Jira will automatically detect and display your commits and branches inside each ticket.

🧠 Tip: If JCT is not configured, running jct for the first time will guide you through the setup.

If already configured, jct will display your sprint issues so you can pick one to work on.

JCT is optimized for Agile SCRUM workflows.


📦 Installation

Install globally with npm:

npm install -g jct-cli

🚀 Startup Banner

When running JCT command, you will see:

JCT V<Vesion>
░▀▀█░▀█▀░█▀▄░█▀█░░░█▀▀░█▀█░█▄█░█▄█░▀█▀░▀█▀░░░▀█▀░█▀█░█▀█░█░░
░░░█░░█░░█▀▄░█▀█░░░█░░░█░█░█░█░█░█░░█░░░█░░░░░█░░█░█░█░█░█░░
░▀▀░░▀▀▀░▀░▀░▀░▀░░░▀▀▀░▀▀▀░▀░▀░▀░▀░▀▀▀░░▀░░░░░▀░░▀▀▀░▀▀▀░▀▀▀
                                        by Ateriss

[Project not defined]     [Sprint not defined]

Sprint Goal:
[Not defined]
Ends on: [Not defined]

📘 Available Commands

Below is the complete list of JCT commands, aliases, options, and examples.


🔹 jct (main CLI command)

The main command used to create commits.

jct

Behavior:

✔ If JCT is not configured, it will automatically start the configuration wizard.
✔ If JCT is configured, it will:

  1. Fetch the current sprint
  2. List all issues assigned/to be worked on
  3. Ask you to choose an issue
  4. Ask for the type of commit (feat, fix, docs, etc.)
  5. Ask for a commit description
  6. Create (if needed) the branch following Jira specs
  7. Generate a properly formatted Jira commit

Example generated commit message:

JCT-123 feat: add validation for sprint selection

Example auto-generated branch (Jira standard):

JCT-123

🔹 version

Shows the current JCT configuration.

jct version

Alias:

jct v

🔹 config

Configure Jira and JCT settings manually.

jct config

Alias:

jct c

Options

| Option | Description | | :------ | :----------- | | --user, -u | Set your Jira user email | | --token, -t | Set your Jira API token | | --url, -or | Set your Jira base workspace URL | | --project, -p | Set your default Jira project | | --sprint, -s | Set the active sprint ID | | --issues, -i | Set specific issues to work on |

Example:

jct config --user
# or
jct c -u

🔹 lan

Changes the language of the CLI (EN / ES).

jct lan

🔹 help

Shows the help menu and current configuration.

jct help

Alias:

jct h

🌿 Git Flow Commit Types Used by JCT

These commit types follow Conventional Commits and Git Flow standards:

| Type | Meaning | | :---- | :------- | | feat | Adds a new feature | | fix | Fixes a bug | | docs | Documentation updates | | style | Code formatting, no logic changes | | refactor | Code restructure without changing behavior | | perf | Performance improvements | | test | New or updated tests |


🧩 JCT Commit & Branch Format (Jira Standard)

JCT formats commit messages and branches using Jira’s official convention:

✔ Commit Format

<ISSUE-KEY> <type>: <title>
<description>

Example:

JCT-204 refactor: improve validation utility
manage validations utils

✔ Branch Format

<ISSUE-KEY>

Example:

JCT-204

This ensures Jira automatically recognizes and links the branch and commits.


🛠 Recommended Workflow

Run:

jct

Then:

  1. Select your issue and create a commit and branch.
  2. Create a pull request as usual.

💡 Pro Tip:
JCT works best when integrated into your daily workflow — it keeps Jira, Git, and your team perfectly in sync.