1.4 KiB
1.4 KiB
description, allowed-tools
| description | allowed-tools |
|---|---|
| Find tickets with new comments you may have missed | Bash |
New Comments
Find JIRA tickets with recent comments that the user should be aware of.
Instructions
-
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
Output Format
Tickets with Recent Activity
For each ticket with new comments:
TICKET-KEY: Summary
- Last updated: [timestamp]
- Latest comment by: [author]
- Comment preview: [first 100 chars of comment]
Summary
- Tickets with new comments: X
- Comments requiring your response: X (where you were @mentioned)
Notes
- Focus on tickets updated in the last 24 hours by default
- If user specifies a different timeframe (e.g., "last week"), adjust the JQL accordingly
- Highlight any comments that directly mention the user
- Flag urgent/blocking discussions