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

@stonerzju/jira-cli-tool

v1.0.0

Published

JiraCLI - Feature-rich interactive Jira command line tool with OpenCode/OpenClaw skill integration

Readme

JiraCLI Tool

Feature-rich interactive Jira command line tool with OpenCode/OpenClaw skill integration.

Installation

npm install -g jira-cli-tool

This will:

  1. Download the appropriate jira binary for your platform
  2. Install it to your PATH
  3. Set up the OpenCode/OpenClaw skill

Quick Start

# Initialize configuration
jira init

# List your issues
jira issue list

# Create an issue
jira issue create -tBug -s"Bug title" -yHigh

# View issue details
jira issue view ISSUE-123

Supported Platforms

  • Linux (x64, arm64)
  • macOS (x64, arm64)
  • Windows (x64)

Authentication

Jira Cloud

jira init
# Enter email and API token from https://id.atlassian.com/manage-profile/security/api-tokens

Jira Server/Data Center (PAT)

export JIRA_AUTH_TYPE=bearer
export JIRA_API_TOKEN=<your-token>
jira init

Commands

Issue Management

  • jira issue list — Search and list issues
  • jira issue create — Create new issue
  • jira issue edit — Edit existing issue
  • jira issue view — View issue details
  • jira issue assign — Assign user to issue
  • jira issue move — Transition issue state
  • jira issue delete — Delete issue
  • jira issue clone — Clone issue
  • jira issue link — Link issues
  • jira issue comment add — Add comment
  • jira issue worklog add — Add worklog

Epic Management

  • jira epic list — List epics
  • jira epic create — Create epic
  • jira epic add — Add issues to epic
  • jira epic remove — Remove issues from epic

Sprint Management

  • jira sprint list — List sprints
  • jira sprint add — Add issues to sprint
  • jira sprint close — Close sprint

Other

  • jira board list — List boards
  • jira project list — List projects
  • jira release list — List releases
  • jira me — Show current user
  • jira serverinfo — Show server info

OpenCode/OpenClaw Skill

This package includes a skill for AI agents. After installation, the skill is automatically installed to:

  • ~/.config/opencode/skills/jira-cli/
  • ~/.openclaw/skills/jira-cli/

The skill provides:

  • Complete command reference
  • Safety rules for destructive operations
  • Authentication setup guide
  • Output format documentation

Environment Variables

  • JIRA_API_TOKEN — API token or PAT
  • JIRA_AUTH_TYPE — Auth type: basic, bearer, mtls
  • JIRA_CONFIG_FILE — Custom config file path
  • JIRA_CLI_VERSION — Specific version to install

License

MIT

Links