jira — community community, ide skills

v1.0.0

이 스킬 정보

고급 Jira 프로젝트 관리 및 문제 추적 기능이 필요한 개발 에이전트에게 적합합니다. Jira project management including issues, sprints, boards, and workflows. Activate for Jira tickets, sprint planning, backlog management, and Atlassian integration.

markus41 markus41
[6]
[0]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
41
Canonical Locale
en
Detected Body Locale
en

고급 Jira 프로젝트 관리 및 문제 추적 기능이 필요한 개발 에이전트에게 적합합니다. Jira project management including issues, sprints, boards, and workflows. Activate for Jira tickets, sprint planning, backlog management, and Atlassian integration.

이 스킬을 사용하는 이유

에이전트가 Python 라이브러리('jira'와 같은)를 사용하여 Jira 워크플ロー 자동화, 문제 생성 및 관리, Jira API를 사용한 사용자 지정 워크플로 자동화를 통해 효율적인 프로젝트 관리 및 스프린트 계획을 수행할 수 있습니다.

최적의 용도

고급 Jira 프로젝트 관리 및 문제 추적 기능이 필요한 개발 에이전트에게 적합합니다.

실행 가능한 사용 사례 for jira

문제 자동 생성 및 할당
스프린트 계획 생성 및 진행 상황 추적
Jira API와의 통합을 통한 사용자 지정 워크플로 자동화

! 보안 및 제한 사항

  • Jira API 액세스 및 인증이 필요합니다
  • Python 3.x 호환성이 필요합니다('jira' 라이브러리 사용을 위해)
  • Jira 프로젝트 관리 기능만으로 제한됩니다

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is jira?

고급 Jira 프로젝트 관리 및 문제 추적 기능이 필요한 개발 에이전트에게 적합합니다. Jira project management including issues, sprints, boards, and workflows. Activate for Jira tickets, sprint planning, backlog management, and Atlassian integration.

How do I install jira?

Run the command: npx killer-skills add markus41/claude. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for jira?

Key use cases include: 문제 자동 생성 및 할당, 스프린트 계획 생성 및 진행 상황 추적, Jira API와의 통합을 통한 사용자 지정 워크플로 자동화.

Which IDEs are compatible with jira?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for jira?

Jira API 액세스 및 인증이 필요합니다. Python 3.x 호환성이 필요합니다('jira' 라이브러리 사용을 위해). Jira 프로젝트 관리 기능만으로 제한됩니다.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add markus41/claude. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use jira immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

jira

Install jira, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Jira Skill

Provides comprehensive Jira project management capabilities for the Golden Armada AI Agent Fleet Platform.

When to Use This Skill

Activate this skill when working with:

  • Issue creation and management
  • Sprint planning and execution
  • Backlog grooming
  • Jira API integration
  • Workflow automation

Jira API Quick Reference

Authentication

```python from jira import JIRA

Basic auth

jira = JIRA( server='https://your-domain.atlassian.net', basic_auth=('email@example.com', 'API_TOKEN') )

OAuth

jira = JIRA( server='https://your-domain.atlassian.net', oauth={ 'access_token': 'ACCESS_TOKEN', 'access_token_secret': 'ACCESS_TOKEN_SECRET', 'consumer_key': 'CONSUMER_KEY', 'key_cert': 'KEY_CERT' } ) ```

Issue Operations

```python

Create issue

new_issue = jira.create_issue( project='GA', summary='Implement agent health monitoring', description='Add health check endpoints and monitoring dashboards', issuetype={'name': 'Story'}, priority={'name': 'High'}, labels=['backend', 'monitoring'], components=[{'name': 'Agent Platform'}] ) print(f"Created: {new_issue.key}")

Get issue

issue = jira.issue('GA-123') print(f"Summary: {issue.fields.summary}") print(f"Status: {issue.fields.status.name}")

Update issue

issue.update( summary='Updated summary', description='Updated description', priority={'name': 'Critical'} )

Add comment

jira.add_comment(issue, 'This is a comment')

Transition issue

jira.transition_issue(issue, 'In Progress')

Assign issue

jira.assign_issue(issue, 'username')

Link issues

jira.create_issue_link('Blocks', 'GA-123', 'GA-124') ```

Search (JQL)

```python

Basic search

issues = jira.search_issues('project = GA AND status = "In Progress"')

With fields

issues = jira.search_issues( 'project = GA', fields='summary,status,assignee', maxResults=50 )

Common JQL queries

queries = { 'my_open': 'assignee = currentUser() AND status != Done', 'sprint_backlog': 'project = GA AND sprint in openSprints()', 'high_priority': 'project = GA AND priority = High AND status != Done', 'recently_updated': 'project = GA AND updated >= -7d ORDER BY updated DESC', 'unassigned': 'project = GA AND assignee is EMPTY AND status != Done', 'bugs': 'project = GA AND issuetype = Bug AND status != Done' }

for name, jql in queries.items(): results = jira.search_issues(jql) print(f"{name}: {len(results)} issues") ```

Sprint Management

```python

Get board

board = jira.boards(name='GA Board')[0]

Get sprints

sprints = jira.sprints(board.id) active_sprint = next(s for s in sprints if s.state == 'active')

Get sprint issues

sprint_issues = jira.search_issues(f'sprint = {active_sprint.id}')

Create sprint

new_sprint = jira.create_sprint( name='Sprint 15', board_id=board.id, startDate='2024-01-15', endDate='2024-01-29' )

Add issues to sprint

jira.add_issues_to_sprint(active_sprint.id, ['GA-123', 'GA-124'])

Start/Complete sprint

jira.update_sprint(sprint.id, state='active') jira.update_sprint(sprint.id, state='closed') ```

Bulk Operations

```python

Bulk create

issues_to_create = [ { 'project': {'key': 'GA'}, 'summary': f'Task {i}', 'issuetype': {'name': 'Task'} } for i in range(1, 6) ] created = jira.create_issues(issues_to_create)

Bulk transition

issues = jira.search_issues('project = GA AND status = "To Do"') for issue in issues: jira.transition_issue(issue, 'In Progress') ```

Issue Templates

Story Template

```markdown

User Story

As a [type of user], I want [goal] So that [benefit]

Acceptance Criteria

  • Criterion 1
  • Criterion 2
  • Criterion 3

Technical Notes

  • Implementation details
  • Dependencies

Definition of Done

  • Code complete
  • Tests written
  • Documentation updated
  • Code reviewed ```

Bug Template

```markdown

Description

Brief description of the bug

Steps to Reproduce

  1. Step 1
  2. Step 2
  3. Step 3

Expected Behavior

What should happen

Actual Behavior

What actually happens

Environment

  • OS:
  • Browser:
  • Version:

Screenshots/Logs

Attach relevant screenshots or logs ```

Workflow States

``` ┌──────────┐ ┌─────────────┐ ┌────────────┐ ┌────────┐ │ To Do │ -> │ In Progress │ -> │ In Review │ -> │ Done │ └──────────┘ └─────────────┘ └────────────┘ └────────┘ ^ │ └────────────────────────────────────┘ (Rejected) ```

Golden Armada Jira Commands

```bash

Create issue from CLI

/jira-create --type story --summary "Implement feature X" --priority high

Get sprint status

/jira-status --sprint current

Transition issue

/jira-transition GA-123 --status "In Progress"

Sync with development

/atlassian-sync --commits --branch main ```

관련 스킬

Looking for an alternative to jira or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자