I've been working on (and using) a command-line utility for Atlassian Jira for the past few months. The initial release is available now: https://github.com/ankitpokhrel/jira-cli/releases
Project Link: https://github.com/ankitpokhrel/jira-cli
Some of the features include:
1. Interactive mode + an option to easily integrate with shell/automation scripts using standard POSIX-complaint flags.
2. Easy search and navigation. For instance, you can easily search for something like "Issues that are of high priority, is in progress, was created this month, and has a label called backend" with `jira issue list -yHigh -s"In Progress" --created month -lbackend`
3. Create a neat Jira ticket (and comment) using Github-flavored + Jira-flavored markdown as a template. Supports pre-defined templates.
4. The ticket details are translated to markdown from the Atlassian document and is beautifully displayed on the screen when you view it.
5. Easy sprint and epic navigation. You can quickly view tickets in previous, current, and next sprint tickets using flags like --prev, --next, and --current eg: `jira sprint list --current`.
6. Fast and straightforward ticket cloning with the ability to replace text in summary and description. 7. You can edit, link, assign and transition the issues with ease.
Check out the project for more details: https://github.com/ankitpokhrel/jira-cli
Your suggestions and feedback is 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.