1.3 KiB
1.3 KiB
description, allowed-tools
| description | allowed-tools |
|---|---|
| Show current sprint and your assigned tasks | Bash |
My Sprint
Show the current sprint information and the user's assigned tickets.
Instructions
-
Get current sprint overview:
jira sprint list --current -p HYPERFLEET --plain 2>/dev/null || echo "Error: Could not fetch sprint. Is jira-cli configured?" -
Get user's assigned tickets in current sprint:
jira sprint list --current -p HYPERFLEET -a$(jira me) --plain 2>/dev/null -
Get ticket status breakdown:
jira issue list -q"project = HYPERFLEET AND assignee = currentUser()" --created-after "-30d" --plain 2>/dev/null
Output Format
Summarize the results in a clear 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 (if visible)
- Any blockers or high-priority items to highlight
If jira-cli is not installed or configured, inform the user they need to:
- Install jira-cli:
brew install ankitpokhrel/jira-cli/jira-cli - Configure it:
jira init