Skip to main content
Business & ProductivityTheBushidoCollective

my-tickets

Show all Jira tickets assigned to you

Stars
162
Source
TheBushidoCollective/han
Updated
2026-04-28
Slug
TheBushidoCollective--han--my-tickets
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/TheBushidoCollective/han/HEAD/plugins/services/jira/skills/my-tickets/SKILL.md -o .claude/skills/my-tickets.md

Drops the SKILL.md into .claude/skills/my-tickets.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

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.