_ _ _
| | __ _ ____ _ _ (_)(_) _ __ __ _
| | / _` ||_ /| | | || || || '__|/ _` |
| || (_| | / / | |_| || || || | | (_| |
|_| \__,_|/___| \__, ||_||_||_| \__,_|
|___/
Like lazygit, but for Jira. Zero-dependency CLI that makes Jira bearable.
Installation Β· Quick Start Β· Commands Β· Configuration Β· Contributing Β· Promotion
Jira's web UI is slow. Existing CLIs are either abandoned, heavy, or missing features you need.
| lazyjira | jira-cli | go-jira | |
|---|---|---|---|
| Language | Python | Go | Go |
| Dependencies | 0 (pure stdlib) | Multiple | Multiple |
| Install | pip install lazyjira |
brew / go install |
go install |
| Status | π’ Active | π’ Active | π΄ Abandoned |
| Jira Cloud | β | β | β |
| JPD Support | β | β | β |
| Markdown β ADF | β Built-in | β | β |
| Config | env / TOML / token file | YAML | YAML |
Zero dependencies means no requests, no click, no rich β just Python's standard library. Install it anywhere Python runs. No compiling, no cgo, no nonsense.
# PyPI (recommended)
pip install lazyjira
# pipx (isolated install)
pipx install lazyjira
# uv tool (fast isolated install)
uv tool install lazyjira
# One-liner
curl -fsSL https://raw.githubusercontent.com/exisz/lazyjira/main/install.sh | bash
# From source
git clone https://github.com/exisz/lazyjira.git
cd lazyjira
pip install .1. Configure your credentials:
export JIRA_URL="https://your-instance.atlassian.net"
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"Or use a config file (see Configuration).
2. List your projects:
lazyjira projects3. Start working:
# Search issues
lazyjira issues list -p MYPROJ
# Create an issue
lazyjira issues create "Fix login timeout" -p MYPROJ -d "Users report 30s delays"
# Move to In Progress
lazyjira move MYPROJ-42 "In Progress"
# Add a comment
lazyjira comments create MYPROJ-42 --body "Root cause found: connection pool exhaustion"lazyjira issues list -p PROJECT # List issues (table format)
lazyjira issues list -p PROJECT --plain # List issues (JSON)
lazyjira issues search "login bug" -p P # Full-text search
lazyjira issues read PROJ-123 # Read full issue details
lazyjira issues create TITLE -p PROJECT # Create issue
lazyjira issues update KEY --summary X # Update fieldsStatus changes and comments have dedicated canonical commands:
lazyjira move KEY "Done" # Canonical: transition status
lazyjira comments create KEY --body "..." # Canonical: add commentLegacy aliases are still supported for compatibility:
lazyjira issues status KEY "Done" # Alias for lazyjira move
lazyjira issues comment KEY --body "..." # Alias for lazyjira comments createFiltering:
lazyjira issues list -p PROJ --status "In Progress"
lazyjira issues list -p PROJ --status-in "To Do,In Progress"
lazyjira issues list -p PROJ --status-ne "Done"
lazyjira issues list -p PROJ --label bug --assignee me
lazyjira issues list -p PROJ --priority 1 # Highest only
lazyjira issues list -p PROJ --order "created DESC"
lazyjira issues list -p PROJ --limit 10lazyjira comments create KEY --body "text" # Add comment
lazyjira comments list KEY # List commentslazyjira move KEY "In Progress" # Transition issue
lazyjira move KEY "Done" # Close issuelazyjira projects # List all projects
lazyjira labels -p PROJECT # List labels in project
lazyjira link PROJ-1 PROJ-2 # Link two issues
lazyjira link PROJ-1 PROJ-2 -t "is blocked by"
lazyjira open PROJ-123 # Open in browser
lazyjira query "project=X AND status='To Do' ORDER BY priority" # Raw JQLlazyjira issues create "Title" \
-p PROJECT \
-d "Description in **markdown** β auto-converted to ADF" \
--type Story \
--priority 2 \
--labels bug urgent \
--parent PROJ-100 \
--status "In Progress" \
--duedate 2025-12-31lazyjira resolves configuration in this order:
export JIRA_URL="https://your-instance.atlassian.net"
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"
export JIRA_PROJECT="MYPROJ" # optional default projectmkdir -p ~/.config/lazyjira
cat > ~/.config/lazyjira/config.toml << 'EOF'
[jira]
url = "https://your-instance.atlassian.net"
email = "you@example.com"
[defaults]
project = "MYPROJ"
EOFecho "your-api-token" > ~/.config/lazyjira/token
chmod 600 ~/.config/lazyjira/tokenπ‘ Tip: Generate your API token at id.atlassian.com/manage-profile/security/api-tokens
A typical Jira cleanup goes from browser-clicking to a repeatable terminal loop:
# 1. Find stale work
lazyjira issues list -p PLATFORM --status "To Do" --order "updated ASC" --limit 10
# 2. Inspect one issue without opening Jira
lazyjira issues read PLATFORM-42
# 3. Move the ticket and leave an audit trail
lazyjira move PLATFORM-42 "In Progress"
lazyjira comments create PLATFORM-42 --body "Taking this from CLI triage; first pass is checking API timeouts."
# 4. Link duplicate or blocking work
lazyjira link PLATFORM-42 PLATFORM-17 -t "is blocked by"Before lazyjira, the same workflow usually means switching between Jira search, ticket pages, transition dialogs, and comment boxes. With lazyjira it is shell history, scripts, and copy-pasteable runbooks.
Current release: 0.2.1 on PyPI.
Recent improvements:
- Python 3.9β3.13 CI and release workflow coverage.
- Canonical
moveandcomments createcommands, with legacy aliases kept for compatibility. - GitHub Pages docs, style guide, and safe promotion-lead workflow.
Near-term roadmap:
- Shell completion documentation for Bash, Zsh, and Fish.
- More adoption proof: terminal GIF/asciinema and real team runbooks.
- Safer promotion leads with relevance levels and manual-review templates.
- Homebrew tap evaluation after external usage signals appear.
lazyjira automatically converts Markdown to Atlassian Document Format when creating or updating descriptions and comments.
Write this:
lazyjira issues create "Fix bug" -p PROJ -d "## Steps\n1. Open the app\n2. Click **login**\n3. See error"Jira sees properly formatted headings, lists, and bold text β not raw markdown.
lazyjira auto-detects Jira Product Discovery projects and handles their unique issue types and workflows. No extra configuration needed.
# Bash
eval "$(register-python-argcomplete lazyjira 2>/dev/null)" || true
# Or add to ~/.bashrc for persistenceSee CONTRIBUTING.md for development setup, code style, and PR guidelines.