JiraCLI is an interactive command line tool for Atlassian Jira that will help you avoid Jira UI to some extent. This tool is not yet considered complete but has all the essential features required to improve your workflow with Jira.
The tool started with the idea of making issue search and navigation as straightforward as possible. However, with the help of outstanding supporters like you, we evolved, and the tool now includes all necessary features like issue creation, cloning, linking, ticket transition, and much more.
The TUI is heavily inspired by the GitHub CLI.
Note that some features might work slightly differently in cloud installation versus on-premise installation due to the nature of the data. Yet, we've attempted to make the experience as similar as possible.
Platform | |
---|---|
Jira |
jira-cli
is available as a downloadable binary for Linux, macOS, and Windows from the releases page.
You can use Homebrew tap in macOS to install jira-cli
.
brew tap ankitpokhrel/jira-cli
brew install jira-cli
You can install it from the ports tree using the following command
cd /usr/ports/www/jira-cli/ && make install clean
or directly from the binary package repository using the command
pkg install jira-cli
You can install it from pkgsrc using the following command
cd /usr/pkgsrc/www/jira-cli/ && make install clean
or directly from the binary package repository using the command
pkgin install jira-cli
You can also install the runnable binary to your $GOPATH/bin
(go1.16+).
go install github.com/ankitpokhrel/jira-cli/cmd/jira@latest
See releases page for more info. Other installation options will be available later.
- Get a Jira API token and export it to your shell as
a
JIRA_API_TOKEN
variable. Add it to your shell configuration file, for instance,$HOME/.bashrc
, so that the variable is always available. - Run
jira init
, select installation type asCloud
, and provide required details to generate a config file required for the tool.
-
Export the password you use to login to Jira as a
JIRA_API_TOKEN
variable. Add it to your shell configuration file, for instance,$HOME/.bashrc
, so that the variable is always available. -
Run
jira init
, select installation type asLocal
, and provide required details to generate a config file required for the tool.Note: If your on-premise Jira installation is using a language other than
English
, then the issue/epic creation may not work because the older version of Jira API doesn't return untranslated name forissuetypes
. In that case, you will have to fill inepic.name
,epic.link
andissue.types.*.handle
fields manually in the generated config to get the expected behavior.
See FAQs for frequently asked questions.
Check jira completion --help
for more info on setting up a bash/zsh shell completion.
The tool currently comes with an issue, epic, and sprint explorer. The flags are POSIX-compliant.
You can combine available flags in any order to create a unique query. For example, the command below will give you high priority issues created this month
with status To Do
that are assigned to you and has a label backend
.
jira issue list -yHigh -s"To Do" --created month -lbackend -a$(jira me)
The lists are displayed in an interactive UI by default.
- Use arrow keys or
j, k, h, l
characters to navigate through the list. - Use
g
andSHIFT+G
to quickly navigate to the top and bottom respectively. - Press
v
to view selected issue details. - Hit
ENTER
to open the selected issue in the browser. - Press
c
to copy issue URL to the system clipboard. This requiresxclip
/xsel
in linux. - Press
CTRL+K
to copy issue key to the system clipboard. - In an explorer view, press
w
orTab
to toggle focus between the sidebar and the contents screen. - Press
q
/ESC
/CTRL+C
to quit.
Issues are displayed in an interactive table view by default. You can output the results in a plain view using the --plain
flag.
The list
command lets you search and navigate the issues. The issues are sorted by created
field in descending order by default.
# List recent issues
$ jira issue list
# List issues created in last 7 days
$ jira issue list --created -7d
# List issues in status "To Do"
$ jira issue list -s"To Do"
# List recent issues in plain mode
$ jira issue list --plain
# List issue in the same order as you see in the UI
$ jira issue list --order-by rank --reverse
# You can execute raw JQL within a given project context using `--jql/-q` option.
# For instance, the following command will list issues in current project whose
# summary has a word cli.
$ jira issue list -q "summary ~ cli"
Check some more examples/use-cases below.
List issues that I am watching
jira issue list -w
List issues assigned to me
jira issue list -a$(jira me)
List issues assigned to a user and are reported by another user
jira issue list -a"User A" -r"User B"
List issues assigned to me, is of high priority and is open
jira issue list -a$(jira me) -yHigh -sopen
List issues assigned to no one and are created this week
jira issue list -ax --created week
List issues with resolution won't do
jira issue list -R"Won't do"
List issues whose status is not done and is created before 6 months and is assigned to someone
# Tilde (~) acts as a not operator
jira issue list -s~Done --created-before -24w -a~x
List issues created within an hour and updated in the last 30 minutes β±οΈ
jira issue list --created -1h --updated -30m
Give me issues that are of high priority, is in progress, was created this month, and has given labels π₯
jira issue list -yHigh -s"In Progress" --created month -lbackend -l"high prio"
Wait, what was that ticket I opened earlier today? π«
jira issue list --history
What was the first issue I ever reported on the current board? π€
jira issue list -r$(jira me) --reverse
What was the first bug I ever fixed in the current board? πͺ²
jira issue list -a$(jira me) -tBug sDone -rFixed --reverse
What issues did I report this week? π€·ββοΈ
jira issue list -r$(jira me) --created week
Am I watching any tickets in project XYZ? π§
jira issue list -w -pXYZ
The create
command lets you create an issue.
# Create an issue using interactive prompt
$ jira issue create
# Pass required parameters and use --no-input option to skip prompt
$ jira issue create -tBug -s"New Bug" -yHigh -lbug -lurgent -b"Bug description" --fix-version v2.0 --no-input
To attach epic to an issue on creation, you can use -P/--parent
field. We call it parent because the semantics of epic
has been changed in next-gen
project.
# Create an issue of type Story and attach it to epic with key EPIC-42
$ jira issue create -tStory -s"Epic during creation" -PEPIC-42
The command supports both Github-flavored
and Jira-flavored markdown for writing
description. You can load pre-defined templates using --template
flag.
# Load description from template file
$ jira issue create --template /path/to/template.tmpl
# Get description from standard input
$ jira issue create --template -
# Or, use pipe to read input directly from standard input
$ echo "Description from stdin" | jira issue create -s"Summary" -tTask
Note: For issue description, the flag --body/-b
always takes precedence over the --template
flag if both of them are passed.
The preview above shows markdown template passed in Jira CLI and how it is rendered in the Jira UI.
The edit
command lets you edit an issue.
$ jira issue edit ISSUE-1
# Edit issue in the configured project
$ jira issue edit ISSUE-1 -s"New Bug" -yHigh -lbug -lurgent -CBackend -b"Bug description"
# Use --no-input option to disable interactive prompt
$ jira issue edit ISSUE-1 -s"New updated summary" --no-input`
The assign
command lets you assign user to an issue.
# Assign user to an issue using interactive prompt
$ jira issue assign
# Pass required parameters to skip prompt
$ jira issue assign ISSUE-1 "Jon Doe"
# Assign to self
$ jira issue assign ISSUE-1 $(jira me)
# Will prompt for selection if keyword suffix returns multiple entries
$ jira issue assign ISSUE-1 suffix
# Assign to default assignee
$ jira issue assign ISSUE-1 default
# Unassign
$ jira issue assign ISSUE-1 x
The move
command lets you transition issue from one state to another.
# Move an issue using interactive prompt
$ jira issue move
# Pass required parameters to skip prompt
$ jira issue move ISSUE-1 "In Progress"
The view
command lets you see issue details in a terminal. Atlassian document is roughly converted to a markdown
and is nicely displayed in the terminal.
$ jira issue view ISSUE-1
The view screen will display linked issues and the latest comment after description. Note that the displayed comment may not be the latest one if you for some reason have more than 5k comments in a ticket.
# Show 5 recent comments when viewing the issue
$ jira issue view ISSUE-1 --comments 5
The link
command lets you link two issues.
# Link an issue using interactive prompt
$ jira issue link
# Pass required parameters to skip prompt
$ jira issue link ISSUE-1 ISSUE-2 Blocks
The clone
command lets you clone an issue. You can update fields like summary, priority, assignee, labels, and
components when cloning the issue. The command also allows you to replace a part of the string (case-sensitive)
in summary and description using --replace/-H
option.
# Clone an issue
$ jira issue clone ISSUE-1
# Clone issue and modify the summary, priority and assignee
$ jira issue clone ISSUE-1 -s"Modified summary" -yHigh -a$(jira me)
# Clone issue and replace text from summary and description
$ jira issue clone ISSUE-1 -H"find me:replace with me"
The comment
command provides a list of sub-commands to manage issue comments.
The add
command lets you add comment to an issue. The command supports both Github-flavored
and Jira-flavored markdown for writing
comment. You can load pre-defined templates using --template
flag.
# Add a comment using interactive prompt
$ jira issue comment add
# Pass required parameters to skip prompt
$ jira issue comment add ISSUE-1 "My comment body"
# Load comment from template file
$ jira issue comment add ISSUE-1 --template /path/to/template.tmpl
# Get comment from standard input
$ jira issue comment add ISSUE-1 --template -
# Or, use pipe to read input directly from standard input
$ echo "Comment from stdin" | jira issue comment add ISSUE-1
Note: For comment body, the positional argument always takes precedence over the --template
flag if both of them are passed. In the
example below, the body will be picked from positional argument instead of the template.
jira issue comment add ISSUE-42 "comment body positional" --template - <<'EOF'
comment body template
EOF
Epics are displayed in an explorer view by default. You can output the results in a table view using the --table
flag.
When viewing epic issues, you can use all filters available for the issue command.
See usage to learn more about UI interaction.
You can use all flags supported by issue list
command here except for the issue type.
# List epics
$ jira epic list
# List epics in a table view
$ jira epic list --table
# List epics reported by me and are open
$ jira epic list -r$(jira me) -sOpen
# List issues in an epic
$ jira epic list KEY-1
# List all issue in an epic KEY-1 that is unassigned and has a high priority
$ jira epic list KEY-1 -ax -yHigh
# List high priority epics
$ jira epic list KEY-1 -yHigh
# List epic issues order by the rank in ASC order
$ jira epic list KEY-1 --order-by rank --reverse
Creating an epic is same as creating the issue except you also need to provide an epic name.
# Create an issue using interactive prompt
$ jira epic create
# Pass required parameters to skip prompt or use --no-input flag to skip prompt for non-mandatory params
$ jira epic create -n"Epic epic" -s"Everything" -yHigh -lbug -lurgent -b"Epic description"
The add
command allows you to add issues to the epic. You can add up to 50 issues to the epic at once.
# Add issues to the epic using interactive prompt
$ jira epic add
# Pass required parameters to skip prompt
$ jira epic add EPIC-KEY ISSUE-1 ISSUE-2
The remove
command allows you to remove issues from the epic. You can remove up to 50 issues from the epic at once.
# Remove issues to the epic using interactive prompt
$ jira epic remove
# Pass required parameters to skip prompt
$ jira epic remove ISSUE-1 ISSUE-2
Sprints are displayed in an explorer view by default. You can output the results in a table view using the --table
flag.
When viewing sprint issues, you can use all filters available for the issue command. The tool only shows 25 recent sprints.
See usage to learn more about UI interaction.
You can use all flags supported by issue list
command to filter issues in the sprint.
# List sprints in an explorer view
$ jira sprint list
# List sprints in a table view
$ jira sprint list --table
# List issues in current active sprint
$ jira sprint list --current
# List issues in current active sprint that are assigned to me
$ jira sprint list --current -a$(jira me)
# List issues in previous sprint
$ jira sprint list --prev
# List issues in next planned sprint
$ jira sprint list --next
# List future and active sprints
$ jira sprint list --state future,active
# List issues in a particular sprint. You can use all flags supported by issue list command here.
# To get sprint id use `jira sprint list` or `jira sprint list --table`
$ jira sprint list SPRINT_ID
# List high priority issues in a sprint are assigned to me
$ jira sprint list SPRINT_ID -yHigh -a$(jira me)
# List sprint issues order by the rank in ASC order
$ jira sprint list SPRINT_ID --order-by rank --reverse
The add
command allows you to add issues to the sprint. You can add up to 50 issues to the sprint at once.
# Add issues to the sprint using interactive prompt
$ jira sprint add
# Pass required parameters to skip prompt
$ jira sprint add SPRINT_ID ISSUE-1 ISSUE-2
Navigate to the project
jira open
Navigate to the issue
jira open KEY-1
List all projects you have access to
jira project
List all boards in a project
jira board
Often times, you may want to use the output of the command to do something cool. However, the default interactive UI might not allow you to do that.
The tool comes with the --plain
flag that displays results in a simple layout that can then be manipulated from the shell script.
Some example scripts are listed below.
Tickets created per day this month
#!/usr/bin/env bash
tickets=$(jira issue list --created month --plain --columns created --no-headers | awk '{print $1}' | awk -F'-' '{print $3}' | sort -n | uniq -c)
echo "${tickets}" | while IFS=$'\t' read -r line; do
day=$(echo "${line}" | awk '{print $2}')
count=$(echo "${line}" | awk '{print $1}')
printf "Day #%s: %s\n" "${day}" "${count}"
done
# Output
Day #01: 19
Day #02: 10
Day #03: 21
...
Number of tickets per sprint
#!/usr/bin/env bash
sprints=$(jira sprint list --table --plain --columns id,name --no-headers)
echo "${sprints}" | while IFS=$'\t' read -r id name; do
count=$(jira sprint list "${id}" --plain --no-headers 2>/dev/null | wc -l)
printf "%10s: %3d\n" "${name}" $((count))
done
# Output
Sprint 3: 55
Sprint 2: 40
Sprint 1: 30
...
Number of unique assignee per sprint
#!/usr/bin/env bash
sprints=$(jira sprint list --table --plain --columns id,name --no-headers)
echo "${sprints}" | while IFS=$'\t' read -r id name; do
count=$(jira sprint list "${id}" --plain --columns assignee --no-headers 2>/dev/null | sort -n | uniq | wc -l)
printf "%10s: %3d\n" "${name}" $((count))
done
# Output
Sprint 3: 5
Sprint 2: 4
Sprint 1: 3
- Not all Atlassian nodes are translated properly at the moment which can cause formatting issue sometimes.
Please open a discussion in ideas
category for the proposed feature.
- The feature that is straightforward to implement, doesn't require too much mental power, and can be done even I am lazy will be picked first.
- If the feature is something that I am missing in my day-to-day work, it might be done first.
- Rest of the features will be picked based on the number of votes on the particular feature.
-
Clone the repo.
git clone git@github.com:ankitpokhrel/jira-cli.git
-
Optional: If you want to run a Jira instance locally, you can use the following make recipe. The trial license key can be generated from "Licenses" section in the atlassian admin.
make jira.server
-
Make changes, build the binary, and test your changes.
make deps install
-
Run CI steps locally before submitting a PR.
make ci
Your suggestions and feedbacks are highly appreciated. Feel free to start a discussion or create an issue to share your experience about the tool or to discuss a feature/issue.
If you think this tool is useful, saves you a lot of work, and lets you sleep much better, then consider supporting the project by any of the following means:
- Star the repo.
- Spread the word by sharing the project on social media or with friends.
- Report bugs or propose solutions.
- Donate a small amount.
Made with π