Taskra is a powerful command-line tool for managing Jira projects, issues, worklogs, and generating reports directly from your terminal. It streamlines your workflow by providing fast, scriptable access to Jira, saving you time and reducing context switching.
The recommended way to install Taskra is with pipx, which keeps it isolated and easy to upgrade or uninstall:
pipx install taskraThis will install the latest stable release published on PyPI.
If you'd like to try the latest development version, you can clone the develop branch and install it locally:
git clone --branch develop https://github.com/yourusername/taskra.git
cd taskra
poetry installAlternatively, to install the stable release manually from main:
git clone https://github.com/yourusername/taskra.git
cd taskra
poetry installNote: This project uses Poetry for dependency management. Make sure you have Poetry installed before running the above commands.
Before using Taskra, configure your Jira account:
taskra config addYou will be prompted for:
- Jira URL (e.g.,
https://yourcompany.atlassian.net) - Email address
- API token (create at Atlassian API tokens)
Manage accounts:
taskra config list
taskra config remove <account-name>
taskra config set-default <account-name>List all accessible Jira projects:
taskra projectsFetch details of a specific issue:
taskra issue <ISSUE-KEY>Create a new issue interactively:
taskra issue createUpdate an issue:
taskra issue update <ISSUE-KEY>Add a comment to an issue:
taskra issue comment <ISSUE-KEY> --message "Your comment here"Generate a report of tickets in a project with filters:
taskra tickets <PROJECT-KEY> --start-date YYYY-MM-DD --end-date YYYY-MM-DD --status "In Progress" --assignee "john.doe"Options:
--group-by status|assignee|none--sort-by created|updated|status|assignee|priority--format table|json|csv--reverse/--no-reverse(sort order)
List your worklogs within a date range:
taskra worklogs list --start YYYY-MM-DD --end YYYY-MM-DDAdd a worklog to an issue:
taskra worklogs add <ISSUE-KEY> <time-spent> --comment "Worked on feature X"Example:
taskra worklogs add PROJ-123 2h30m --comment "Bug fixes and testing"Generate cross-project reports:
taskra report cross --projects PROJ1,PROJ2 --start-date YYYY-MM-DD --end-date YYYY-MM-DDEnable debug output to troubleshoot API calls:
taskra --debug verbose <command>Debug levels:
none(default)errorinfoverbose
- Use shell completion for faster command entry (see
scripts/taskra-completion.bash). - Combine filters to narrow down results.
- Use
--jsonto get raw API data for scripting.
MIT License
Contributions, bug reports, and feature requests are welcome! Please open an issue or submit a pull request.