Show current sprint and your assigned tasks
Displays current sprint information and assigned Jira tickets grouped by status.
/plugin marketplace add openshift-hyperfleet/hyperfleet-claude-plugins/plugin install hyperfleet-jira@hyperfleet-claude-pluginsShow the current sprint information and the user's assigned tickets.
Get current sprint overview:
jira sprint list --current -p HYPERFLEET --plain 2>/dev/null || echo "Error: Could not fetch sprint. Is jira-cli configured?"
Get user's assigned tickets in current sprint:
jira sprint list --current -p HYPERFLEET -a$(jira me) --plain 2>/dev/null
Get ticket status breakdown:
jira issue list -q"project = HYPERFLEET AND assignee = currentUser()" --created-after "-30d" --plain 2>/dev/null
Summarize the results in a clear format:
Group by status:
If jira-cli is not installed or configured, inform the user they need to:
brew install ankitpokhrel/jira-cli/jira-clijira init