Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jql-cli

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jql-cli

A minimal Jira CLI.

  • 0.6.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
2
Weekly downloads
 
Created
Source

A minimal Jira CLI.

Install it,

npm -g jql-cli

Configure it,

jql auth -u <username> -p <password> -h <hostname>

List some issues by created date,

jql ls --project NFT --created

... or priority,

jql ls --project NFT --priority

Ad-hoc JQL query,

jql ls -q 'resolution = Unresolved AND assignee in (currentUser()) ORDER BY priority DESC'

Create a new issue,

jql create --project NFT --important --summary 'Something broke'

Create a new issues with a description from stdin,

jql create -p NFT -s 'Uh-oh' < foo.txt 

Coment on an issue,

jql comment NFT-123 -m "do I not like this"

Open an issue (in your web browser),

jql show NFT-123

Obviously this integrates nicely with all the other shell tools,

Eg, Everything that's assigned to me,

alias me='jql ls -q "assignee = currentUser()"'

Eg, Top ten issues,

jql ls -p NFT --priority | head -n 10

Eg, Everything marked critical created this week,

alias p1='jql ls -q "priority = Critical AND createdDate > startOfWeek()"'

Eg, Create a issue for every error in your logs ;)

tail -f logs | grep 'error' | xargs -I % jql create -p NFT -s %

to-do

  • Close an issue, Eg. jql close NFT-123
  • Append a comment to an issue, Eg. jql comment NFT-123 -m "this is a comment"

FAQs

Package last updated on 09 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc