jira
Search, create, transition, and comment on Jira issues. Use when user mentions Jira, issue keys (PROJ-123), project boards, or wants to manage tasks in Atlassian.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search, create, transition, and comment on Jira issues. Use when user mentions Jira, issue keys (PROJ-123), project boards, or wants to manage tasks in Atlassian.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Create or edit Jira issues on boards the user has access to. Use this skill whenever the user asks to create, add, file, open, write, or edit a Jira issue/ticket/task, mentions `/jira-create-issue`, `jira 이슈 생성`, `지라 이슈 만들어`, `이슈 수정`, or asks to "티켓 올려줘", even when the project or issue key is not stated explicitly — the skill will infer the project from conversation context or present accessible boards for the user to pick. Always trigger this over generic jira lookup when the intent is to create or modify an issue.
Review changes, run lint/format, then create a git commit with English message. Use when user wants to commit, save changes, or says "커밋", "git commit", "git ci".
Explain programming language syntax in Korean with concise examples. Use when user asks about syntax like "python list comprehension", "go goroutine", "rust ownership", or any programming concept explanation.
Review GitHub PRs and track improvements as tasks. Use when user asks to review a PR, check a pull request, says "PR 리뷰해줘", "PR 봐줘", or provides a GitHub PR URL or number. Delegates both the review judgment and comment writing to the `reviewer` agent (run in the background).
Run language-specific linters, formatters, and static type checks with full command reference. Use when user asks to lint, format, type-check, check style, or says "린트", "포맷", "타입 체크", "lint", "format", "type check", "biome", "ruff", "pyright", "clippy", "golangci-lint", "rumdl", "prettier", "shfmt". Also use when needing detailed command variants (check-only, fix-only, partial scope) beyond the standard fix-everything command.
Create GitHub issues with auto-generated English titles and contextual body content. Use when the user wants to create an issue, report a bug, request a feature, file a ticket, or says "이슈 만들어줘", "이슈 생성", "버그 리포트", "feature request". Also trigger when the user discusses a bug or feature and then says "이거 이슈로 올려줘" or similar.
| name | jira |
| description | Search, create, transition, and comment on Jira issues. Use when user mentions Jira, issue keys (PROJ-123), project boards, or wants to manage tasks in Atlassian. |
| allowed-tools | mcp__atlassian__searchJiraIssuesUsingJql, mcp__atlassian__getJiraIssue, mcp__atlassian__createJiraIssue, mcp__atlassian__editJiraIssue, mcp__atlassian__addCommentToJiraIssue, mcp__atlassian__getTransitionsForJiraIssue, mcp__atlassian__transitionJiraIssue, mcp__atlassian__getVisibleJiraProjects, mcp__atlassian__getAccessibleAtlassianResources, mcp__atlassian__lookupJiraAccountId, mcp__atlassian__getJiraProjectIssueTypesMetadata, Bash(printf:*) |
| model | sonnet |
| effort | low |
Atlassian Jira 이슈를 조회, 생성, 수정한다.
Input: $ARGUMENTS
먼저 getAccessibleAtlassianResources로 Cloud ID를 조회한다.
첫 번째 인자가 대문자 프로젝트 키(예: PROJ, DUMMY, FOO)이면 해당 프로젝트를 대상으로 한다. 이슈 키(예: PROJ-1234)가 주어지면 프로젝트는 이슈 키에서 추출한다. 프로젝트를 지정하지 않으면 사용자에게 프로젝트를 물어본다.
/jira PROJ — PROJ 프로젝트 최근 이슈 목록 (진행 중 우선)/jira DUMMY — DUMMY 프로젝트 최근 이슈 목록/jira PROJ-1234 — 특정 이슈 상세 조회/jira PROJ 내 이슈 — PROJ 프로젝트에서 나에게 할당된 이슈/jira PROJ 생성 [제목] — 새 이슈 생성 (상세 내용은 대화로 확인)/jira PROJ 검색 [키워드] — 키워드로 이슈 검색/jira PROJ 상태변경 PROJ-1234 [상태] — 이슈 상태 전환/jira PROJ 댓글 PROJ-1234 [내용] — 이슈에 댓글 추가프로젝트만 지정하면 해당 프로젝트의 In Progress / In Test 이슈를 우선 표시한다
이슈 키가 주어지면 해당 이슈 상세 정보를 조회한다
"내 이슈" 요청 시 lookupJiraAccountId로 현재 사용자 계정 ID를 조회한 뒤 assignee로 필터링한다
이슈 생성/수정/댓글 작성/상태 전환 등 쓰기 작업 전에 사용자에게 내용을 미리 보여주고 확인을 받는다. 확인용 미리보기 본문(제목·설명·댓글 내용 등)은 printf에 ANSI 녹색(\033[32m ... \033[0m) escape 코드를 씌워 터미널에 녹색으로 출력한다:
printf '\033[32m%s\033[0m\n' "$(cat <<'EOF'
제목: ...
설명:
...
EOF
)"
결과는 테이블 형태로 간결하게 한국어로 표시한다. 각 이슈 키는 Jira URL로 링크를 건다 — 형식: https://<site>.atlassian.net/browse/<KEY> (site 는 getAccessibleAtlassianResources 응답의 url에서 추출). 마크다운 링크 형태 [PROJ-123](https://<site>.atlassian.net/browse/PROJ-123)로 표시한다.
프로젝트 목록을 출력할 때는 보드 URL도 함께 보여준다 — 형식: https://<site>.atlassian.net/jira/software/projects/<KEY>/boards 또는 /browse/<KEY>.
기본 조회 수는 20건. 사용자가 "더 보기"를 요청하면 startAt 파라미터로 다음 페이지를 조회한다
JQL 쿼리를 직접 입력할 수도 있다 (예: /jira project = PROJ AND status = "In Progress")
MCP 도구 연결 실패 시 사용자에게 Atlassian MCP 서버 연결 상태를 확인하도록 안내한다