Find tickets with new comments you may have missed
Finds JIRA tickets with recent comments you may have missed and highlights mentions.
/plugin marketplace add openshift-hyperfleet/hyperfleet-claude-plugins/plugin install hyperfleet-jira@hyperfleet-claude-pluginsFind JIRA tickets with recent comments that the user should be aware of.
Find tickets you're involved with that have recent comments:
jira issue list -q"project = HYPERFLEET AND (assignee = currentUser() OR reporter = currentUser() OR watcher = currentUser()) AND updated >= -1d" --order-by updated --reverse --plain 2>/dev/null
Alternative - find recently updated tickets you're assigned to:
jira issue list -q"project = HYPERFLEET AND assignee = currentUser()" --updated-after "-1d" --order-by updated --reverse --plain 2>/dev/null
View specific ticket to see comments (for each relevant ticket):
jira issue view TICKET-KEY --comments 5 --plain 2>/dev/null
For each ticket with new comments:
TICKET-KEY: Summary