.claude/skills/jira/SKILL.md
Use jira CLI for Jira operations including issue management, project queries, transitions, and JQL search
npx skillsauth add msbaek/dotfiles jiraInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a Jira specialist using the jira CLI tool. This skill provides comprehensive guidance for working with Jira through a custom CLI.
# Check authentication status
jira auth check
# Login to Jira
jira auth login
# View issue details
jira issue get ISSUE-123
# Create new issue
jira issue create --project PROJ --type Bug --summary "Issue summary" --description "Description"
# Update issue
jira issue update ISSUE-123 --summary "New summary"
# Add comment to issue
jira comment add ISSUE-123 "Comment text"
# List comments on issue
jira comment list ISSUE-123
# List available transitions for an issue
jira transition list ISSUE-123
# Transition issue to new status
jira transition ISSUE-123 "In Progress"
# Search issues with JQL
jira search "project = PROJ AND status = Open"
# Search with output format
jira search "assignee = currentUser()" --format json
# Search with field selection
jira search "project = PROJ" --fields summary,status,assignee
# List all projects
jira project list
# Get project details
jira project get PROJ
# Watch an issue
jira watch add ISSUE-123
# Stop watching an issue
jira watch remove ISSUE-123
# Assign issue
jira assign ISSUE-123 username
# Assign to self
jira assign ISSUE-123 me
# View issues assigned to you
jira search "assignee = currentUser() AND status != Done"
# View issues you're watching
jira search "watcher = currentUser()"
# View recent activity
jira search "updatedDate >= -7d AND assignee = currentUser()"
# Create a bug
jira issue create --project PROJ --type Bug \
--summary "Login button not working" \
--description "Steps to reproduce..."
# Update priority
jira issue update ISSUE-123 --priority High
# Add labels
jira issue update ISSUE-123 --labels bug,frontend
# Link issues
jira link add ISSUE-123 ISSUE-456 "blocks"
# Start work on issue
jira transition ISSUE-123 "In Progress"
# Mark as done
jira transition ISSUE-123 "Done"
# Reopen issue
jira transition ISSUE-123 "Reopen"
# Issues in specific project
jira search "project = MYPROJ"
# Open issues assigned to you
jira search "assignee = currentUser() AND status in (Open, 'In Progress')"
# High priority bugs
jira search "type = Bug AND priority = High"
# Recently updated issues
jira search "updated >= -1w"
# Issues created this sprint
jira search "sprint in openSprints() AND created >= startOfWeek()"
# Issues with specific label
jira search "labels = urgent"
# Issues in epic
jira search "'Epic Link' = EPIC-123"
project - Project key or namestatus - Issue status (Open, In Progress, Done, etc.)assignee - Assigned user (use currentUser() for yourself)reporter - Issue reporterpriority - Priority level (Highest, High, Medium, Low, Lowest)type - Issue type (Bug, Story, Task, Epic, etc.)labels - Issue labelscreated - Creation dateupdated - Last update dateresolution - Resolution statuscurrentUser() - Current logged-in userstartOfDay(), startOfWeek(), startOfMonth() - Date functionsnow() - Current timestampopenSprints() - Currently active sprintsclosedSprints() - Completed sprints# JSON output (for scripting)
jira search "project = PROJ" --format json
# Table output (human-readable, default)
jira search "project = PROJ" --format table
# CSV output
jira search "project = PROJ" --format csv
jira auth check before operations--format json for scripting--fields to limit returned datajira transition list before transitioning# What you worked on yesterday
jira search "assignee = currentUser() AND updated >= -1d"
# What you're working on today
jira search "assignee = currentUser() AND status = 'In Progress'"
# Unassigned bugs
jira search "type = Bug AND assignee is EMPTY AND status = Open"
# Critical bugs in project
jira search "project = PROJ AND type = Bug AND priority in (Highest, High)"
# Issues in backlog
jira search "project = PROJ AND status = 'To Do' AND sprint is EMPTY"
# Issues in current sprint
jira search "project = PROJ AND sprint in openSprints()"
# Completed this sprint
jira search "project = PROJ AND sprint in openSprints() AND status = Done"
If you encounter authentication errors:
jira auth login
If JQL syntax errors occur:
AND, OR, NOT operators (uppercase)# View issue
jira issue get ISSUE-123
# Search
jira search "JQL query here"
# Create
jira issue create --project PROJ --type TYPE --summary "text"
# Update
jira issue update ISSUE-123 --field value
# Transition
jira transition ISSUE-123 "Status Name"
# Comment
jira comment add ISSUE-123 "Comment text"
# Assign
jira assign ISSUE-123 username
tools
Obsidian vault에서 이번 주(토~금) 작성/수정된 글들을 모아 뉴스레터 생성. 서브 에이전트 기반 병렬 처리로 메인 컨텍스트 절약. 기술적, 리더십적으로 외부에 공유할 만한 내용을 선별하여 정리. "뉴스레터 만들어줘", "이번 주 글 정리해줘", "weekly digest" 등의 요청 시 자동 적용.
tools
Vault Intelligence System (vis) CLI를 활용한 Obsidian vault 시맨틱 검색, 자동 태깅, MOC 생성, 관련 문서 연결, 주제별 문서 연결, 주제 수집, 태그 통계, 지식 공백 분석, 중복 감지, 학습 리뷰 등 vault 지식 관리 전반을 지원하는 skill. vault 검색, 문서 정리, 태그, MOC, 관련 문서, 주제 수집, 중복 검사, 학습 리뷰, 지식 공백, 클러스터링, 인덱싱, 주제별 문서 연결, 태그 통계 관련 작업 시 자동 적용.
data-ai
Load context from vault memory. Temporal queries (yesterday, last week, session history) use agf (history.jsonl) for fast session lookup. Topic queries use vis semantic search. "recall graph" generates interactive temporal graph of sessions and files. Every recall ends with "One Thing" - the single highest-leverage next action synthesized from results. Use when user says "recall", "what did we work on", "load context about", "remember when we", "prime context", "yesterday", "what was I doing", "last week", "session history", "recall graph", "session graph".
development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.