jira — community lobbi-design-system, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Project Management Agents needing advanced Jira API integration and workflow automation capabilities. 120 Style Design System Gallery - ULTRATHINK Curated Styles for Member Management Platforms

markus41 markus41
[0]
[0]
Updated: 12/11/2025

Agent Capability Analysis

The jira skill by markus41 is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Project Management Agents needing advanced Jira API integration and workflow automation capabilities.

Core Value

Empowers agents to create and manage Jira issues, automate workflows, and integrate with the Jira API using Python libraries like 'jira' and protocols such as OAuth and Basic Auth, enabling seamless project management and team collaboration.

Capabilities Granted for jira

Automating issue creation and management for agile project planning
Generating Jira reports and dashboards for project monitoring and analysis
Debugging Jira workflow automation scripts for optimized project execution

! Prerequisites & Limits

  • Requires Jira API credentials and access token
  • Python 3.x compatibility required for 'jira' library integration
  • Limited to Jira-specific project management features and workflows
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

jira

Install jira, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

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 ```

FAQ & Installation Steps

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

? Frequently Asked Questions

What is jira?

Perfect for Project Management Agents needing advanced Jira API integration and workflow automation capabilities. 120 Style Design System Gallery - ULTRATHINK Curated Styles for Member Management Platforms

How do I install jira?

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

What are the use cases for jira?

Key use cases include: Automating issue creation and management for agile project planning, Generating Jira reports and dashboards for project monitoring and analysis, Debugging Jira workflow automation scripts for optimized project execution.

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?

Requires Jira API credentials and access token. Python 3.x compatibility required for 'jira' library integration. Limited to Jira-specific project management features and workflows.

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/lobbi-design-system/jira. 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.

Related Skills

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

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI