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

@blumn-ai/swe-cli

v1.3.0

Published

Short, practical CLI tools for software engineering

Downloads

1,405

Readme

swe-cli

NPM Version License

English | 한국어

Short, practical CLI tools for software engineering.

| Command | Purpose | | --------------- | ----------------------------------------------------------------------- | | jiraget | Downloads Atlassian Jira issues as local Markdown files | | confluenceget | Downloads Atlassian Confluence pages and spaces as local Markdown files | | figmaq | Parse and search Figma-exported PDFs in Markdown and PNG formats |

Installation

The CLI requires Node.js 20 or later.

npm install --global @blumn-ai/swe-cli
swe-cli --version
jiraget --version
confluenceget --version
figmaq --version

Agent Skills

Install skills from npm package

Install the skills included in the npm package:

npx skills add https://unpkg.com/@blumn-ai/swe-cli@latest

To install one skill, add the ordinary --skill option:

npx skills add https://unpkg.com/@blumn-ai/swe-cli@latest --skill jiraget

Install skills from swe-cli

Export the packaged skills, then install them from the local directory:

swe-cli skills export -P ./swe-cli-skills
npx skills add ./swe-cli-skills

To install all exported skills globally for Codex and Claude Code without prompts:

npx skills add ./swe-cli-skills --skill '*' -g -a codex -a claude-code -y

jiraget

Usage:
  jiraget [-P DIR] ISSUE-KEY
  jiraget [--directory-prefix DIR] ISSUE-KEY
  jiraget search --limit N --title-only JQL
  jiraget search --limit N --with-content [-P DIR] JQL
  jiraget search --limit N --with-content [--directory-prefix DIR] JQL
  jiraget --help
  jiraget --version
$ jiraget ISS-1
/Users/home/ISS-1

$ ls /Users/home/ISS-1
ISS-1.md  attachments

Configuration

Create .jiragetrc.toml in the working directory or an ancestor.

base_url = "https://example.atlassian.net"
email = "[email protected]"
api_token = "ATATT..."

confluenceget

Usage:
  confluenceget [-P DIR] PAGE-ID
  confluenceget [--directory-prefix DIR] PAGE-ID
  confluenceget space --preview SPACE-ID
  confluenceget space SPACE-ID
  confluenceget space -P DIR SPACE-ID
  confluenceget space --directory-prefix DIR SPACE-ID
  confluenceget search --limit N --title-only CQL
  confluenceget search --limit N --with-content [-P DIR] CQL
  confluenceget search --limit N --with-content [--directory-prefix DIR] CQL
  confluenceget --help
  confluenceget --version
$ confluenceget space --preview 10001
{
  "spaceId": "10001",
  "pages": []
}

$ confluenceget space -P ./export 10001
/Users/home/export/10001

Create .confluencegetrc.toml in the working directory or an ancestor:

base_url = "https://example.atlassian.net"
email = "[email protected]"
api_token = "ATATT..."

figmaq

Usage:
  figmaq parse -P DIR PDF
  figmaq parse --directory-prefix DIR PDF
  figmaq search QUERY PDF
  figmaq --help
  figmaq --version
$ figmaq parse -P ./export design.pdf
/Users/home/export

$ figmaq search "처리 현황" design.pdf
{"source":"/Users/home/design.pdf","page":1,"region":"page-001-region-001","bounds":{"x":100,"y":120,"width":900,"height":600},"text":"처리 현황"}

Development

npm install
npm test
npm pack --dry-run

License

See LICENSE.