From jira-integration
Generate a status report of my assigned Jira issues. Shows issue breakdown by status, assignee summary, and blockers. Works with both Scrum (sprint) and Kanban (no sprint) workflows. Use when user says "report", "status report", "jira-task report", "현황 리포트", "진행 상황", or wants to see assigned issue status.
npx claudepluginhub mzd-hseokkim/jira-claude-code-integration --plugin jira-integrationThis skill is limited to using the following tools:
모든 출력을 한국어로 작성한다: 사용자 응답, 생성 문서, Jira 코멘트 내용 등 모든 텍스트가 대상이다.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides TDD-style skill creation: pressure scenarios as tests, baseline agent failures, write docs to enforce compliance, verify with RED-GREEN-REFACTOR.
모든 출력을 한국어로 작성한다: 사용자 응답, 생성 문서, Jira 코멘트 내용 등 모든 텍스트가 대상이다. 예외: 코드, 변수명, 브랜치명, 파일명, 명령어는 영어를 유지한다. Jira 코멘트: 섹션 제목(##, ###)은 영어로, 내용(설명·요약·노트)은 한국어로 작성한다.
먼저 스프린트 유무를 확인하고, 적절한 JQL로 이슈를 검색:
스프린트가 있는 경우 (Scrum):
mcp__atlassian__jira_get_agile_boards to list available boardsmcp__atlassian__jira_get_sprints_from_board with the boardId to find the active sprintproject = <JIRA_DEFAULT_PROJECT> AND sprint = <sprint-id> AND assignee = currentUser() ORDER BY status ASC, priority DESC스프린트가 없는 경우 (Kanban / 기타):
Use mcp__atlassian__jira_search with JQL:
project = <JIRA_DEFAULT_PROJECT> AND assignee = currentUser() AND status != Done ORDER BY priority DESC
Group issues by status:
Calculate:
Read templates/report.template.md for structure.
Create a markdown report with:
Save to docs/reports/status-<YYYY-MM-DD>.report.md
리포트를 인라인으로 표시한 뒤 완료 요약 출력:
---
✅ **Report Generated**
- 리포트 저장: `docs/reports/status-<YYYY-MM-DD>.report.md`
- 전체 이슈: <N>개 (완료: <N>개, 진행중: <N>개, 대기: <N>개)
- 완료율: <N>%
---