| name | my-sprint |
| description | Show current sprint and your assigned tasks |
| allowed-tools | ["mcp__atlassian__jira_get_agile_boards","mcp__atlassian__jira_get_sprints_from_board","mcp__atlassian__jira_get_sprint_issues","mcp__atlassian__jira_search"] |
My Sprint
Show the current sprint information and the user's assigned tickets. Uses mcp__atlassian__* MCP tools exclusively (not jira-cli).
Story Points Field
Story points live in customfield_10028 on this JIRA instance. If the field has no value, treat the issue as 0 story points.
Important: This field is NOT returned by default by MCP tools. When calling mcp__atlassian__jira_search or mcp__atlassian__jira_get_sprint_issues, you must include it in the fields parameter:
fields: "summary,description,issuetype,status,priority,labels,assignee,reporter,created,updated,components,customfield_10028"
Behavior
1. Find the Active Sprint
- Use
mcp__atlassian__jira_get_agile_boards to find the board for project HYPERFLEET
- Use
mcp__atlassian__jira_get_sprints_from_board to find the active sprint (state = "active")
- If no active sprint, report that and stop
2. Get Sprint Issues
- Use
mcp__atlassian__jira_get_sprint_issues to pull all issues in the active sprint
- Note sprint name, start date, end date, and goal (if available)
3. Get Your Assigned Tickets
Output Format
Sprint Overview
- Sprint name and goal (if available)
- Days remaining in sprint
- Sprint progress indicator
Your Tickets
Group by status:
- To Do: List tickets not yet started
- In Progress: List tickets being worked on
- In Review/QA: List tickets awaiting review
- Done: List completed tickets
Summary
- Total tickets assigned: X
- Story points assigned: X
- Any blockers or high-priority items to highlight
Notes
- Apply the ghostwriter skill for tone
- Do NOT use jira-cli or Bash for JIRA queries — use the mcp__atlassian__ MCP tools only