From sprint-jira
Fetches all issues in the active sprint for the configured Jira board using paginated REST API calls. Handles boards with more than 50 issues via startAt iteration. Returns { noActiveSprint: true } when no active sprint is found.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sprint-jira:sprint-fetcherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetches all issues in the current active sprint for the configured board. Handles pagination transparently and returns a complete issue array.
Fetches all issues in the current active sprint for the configured board. Handles pagination transparently and returns a complete issue array.
GET {baseUrl}/rest/agile/1.0/board/{boardId}/sprint?state=active
Response contains values array of active sprints. Use the first result.
If values is empty: return { noActiveSprint: true, sprintName: null }. The ticket-ingestion skill handles this as an early exit with an informational message — not an error.
GET {baseUrl}/rest/agile/1.0/sprint/{sprintId}/issue
?startAt=0
&maxResults=50
&fields=summary,description,issuetype,labels,components,issuelinks,priority,assignee
Pagination loop:
startAt=0issues from responsestartAt + issues.length < total: increment startAt by 50, repeatissues arraysFollow the rate-limiting guidance in connector-guidelines.md (100ms delay between pages for sprints > 200 issues).
Pagination failure (mid-fetch): If any page request fails after the first page succeeds, halt with:
ERROR: Jira API pagination failed at startAt={n} (fetched {n} of {total} issues).
Retry /sprint-plan to re-fetch.
{
"noActiveSprint": false,
"sprintId": 123,
"sprintName": "Sprint 5",
"sprintState": "active",
"total": 24,
"issues": [ ... ]
}
npx claudepluginhub gagandeepp/software-agent-teams --plugin sprint-jiraGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.