home / skills / thebushidocollective / han / my-tickets
This skill shows all Jira tickets assigned to you, grouped by status, with key, summary, priority, and last update for quick triage.
npx playbooks add skill thebushidocollective/han --skill my-ticketsReview the files below or copy the command above to add this skill to your agents.
---
name: my-tickets
description: Show all Jira tickets assigned to you
---
# my-tickets
## Name
jira:my-tickets - Show all Jira tickets assigned to you
## Synopsis
```
/my-tickets [arguments]
```
## Description
Show all Jira tickets assigned to you
## Implementation
Retrieve and display all Jira tickets currently assigned to you.
Use the Atlassian MCP tool `atlassian_search_issues` with JQL:
```
assignee = currentUser() AND status != Done
```
Group the results by status and display in a clear table format:
| Key | Summary | Status | Priority | Updated |
|-----|---------|--------|----------|---------|
Include:
- Ticket key (e.g., PROJ-123)
- Summary (truncate if too long)
- Current status
- Priority
- Last updated date
Show count of tickets by status at the end.
This skill shows all Jira tickets currently assigned to you and not marked Done. It gathers issue key, summary, status, priority, and last updated date, then presents them in a clear table grouped by status. A summary of counts per status is included for quick triage.
The skill queries Jira using a JQL that selects issues where the assignee is the current user and status is not Done. Results are grouped by status and formatted into a concise table with the columns: Key, Summary, Status, Priority, and Updated. Long summaries are truncated for readability and counts by status are displayed at the end.
Which tickets are returned?
Issues where the assignee is the current user and status is not Done.
Can I see completed tickets?
By default completed (Done) tickets are excluded; adjust the JQL if you need them.
How are long summaries handled?
Summaries are truncated to keep the table readable; open the ticket for the full text.