From jira-integration
Implement a Jira task based on plan/design documents. Loads Jira context, implements based on the design document, then posts progress to Jira. Use when user says "implement task", "start coding", "jira-task impl", "구현 시작", "코딩 시작", or wants to begin implementation based on design.
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.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
모든 출력을 한국어로 작성한다: 사용자 응답, 생성 문서, Jira 코멘트 내용 등 모든 텍스트가 대상이다. 예외: 코드, 변수명, 브랜치명, 파일명, 명령어는 영어를 유지한다. Jira 코멘트: 섹션 제목(##, ###)은 영어로, 내용(설명·요약·노트)은 한국어로 작성한다.
docs/design/<TASK-ID>.design.md (warn if missing)feature/<TASK-ID> should already exist (suggest /jira-task start if not).jira-context.json for active task infomcp__atlassian__jira_get_issue to fetch latest issue detailsdocs/design/<TASK-ID>.design.md if it existsdocs/plan/<TASK-ID>.plan.md if it existsdocs/design/<TASK-ID>.design.md의 Implementation Plan에 따라 구현.
구현 원칙:
Design 문서가 없으면, Jira 이슈 설명과 Acceptance Criteria 기반으로 구현.
Design 문서의 Test Plan 섹션에 명세된 단위테스트 케이스를 구현과 병행하여 작성한다.
원칙:
__tests__/, *.test.*, *.spec.* 등)Test Plan이 없는 경우:
테스트 프레임워크가 없는 프로젝트:
/jira-task test 단계에서 처리구현 완료 후 mcp__atlassian__jira_add_comment:
## Implementation Complete
**브랜치**: feature/<TASK-ID>
### Changes Made
- 생성: <신규 파일 목록>
- 수정: <변경 파일 목록>
- 테스트 추가: <테스트 파일 목록, 없으면 "없음">
### Implementation Notes
- <구현 중 주요 결정 사항>
- <설계와의 차이점>
### Next Steps
- 테스트 실행: `/jira-task test <TASK-ID>`
- 코드 리뷰: `/jira-task review <TASK-ID>`
.jira-context.json의 completedSteps에 "impl" 추가 후, 아래 형식으로 완료 요약 출력:
---
✅ **Implementation Complete** — <TASK-ID>
- 생성된 파일: <list>
- 수정된 파일: <list>
- Jira 코멘트 게시됨
**Progress**: init → start → plan → design → **impl ✓** → test → review → merge → pr → done
**Next**: `/jira-task test <TASK-ID>` — 테스트를 실행합니다
---
테스트 프레임워크가 없는 프로젝트면 /jira-task review <TASK-ID>를 대신 추천.