jira-issues — community jira-issues, devkit, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Project Management Agents needing seamless Jira issue integration and automation. Unified multi-agent skill system for AI coding assistants (Claude Code, Cursor, Copilot, Gemini) with 414+ skills, 38 agents, and 57 commands. Features smart tech detection, per-project installation, and auto-sync from upstream sources.

ngxtm ngxtm
[0]
[0]
Updated: 2/20/2026

Agent Capability Analysis

The jira-issues skill by ngxtm 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

Ideal for Project Management Agents needing seamless Jira issue integration and automation.

Core Value

Empowers agents to create and manage Jira issues using the Jira REST API or MCP, providing smart tech detection, per-project installation, and auto-sync from upstream sources, streamlining project management workflows with environment variables and API tokens.

Capabilities Granted for jira-issues

Automating Jira issue creation
Managing project workflows with Jira MCP server
Syncing issues from upstream sources

! Prerequisites & Limits

  • Requires Jira API token
  • Needs environment variables setup
  • Dependent on Jira REST API or MCP server installation
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-issues

Install jira-issues, 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 Issue Management

Create and manage Jira issues using the Jira REST API or MCP.

Setup

Option 1: Jira MCP Server

Install the Jira MCP server for seamless integration:

bash
1npx @anthropic/create-mcp-server jira

Option 2: Direct API

Set environment variables:

bash
1export JIRA_BASE_URL="https://yourcompany.atlassian.net" 2export JIRA_EMAIL="your-email@company.com" 3export JIRA_API_TOKEN="your-api-token"

Get your API token: https://id.atlassian.com/manage-profile/security/api-tokens

Creating Issues

Basic Issue

python
1import requests 2from requests.auth import HTTPBasicAuth 3import os 4 5def create_issue(project_key, summary, description, issue_type="Task"): 6 url = f"{os.environ['JIRA_BASE_URL']}/rest/api/3/issue" 7 8 auth = HTTPBasicAuth( 9 os.environ['JIRA_EMAIL'], 10 os.environ['JIRA_API_TOKEN'] 11 ) 12 13 payload = { 14 "fields": { 15 "project": {"key": project_key}, 16 "summary": summary, 17 "description": { 18 "type": "doc", 19 "version": 1, 20 "content": [{ 21 "type": "paragraph", 22 "content": [{"type": "text", "text": description}] 23 }] 24 }, 25 "issuetype": {"name": issue_type} 26 } 27 } 28 29 response = requests.post(url, json=payload, auth=auth) 30 return response.json() 31 32# Example 33issue = create_issue("PROJ", "Fix login bug", "Users can't login with SSO", "Bug") 34print(f"Created: {issue['key']}")

With Labels and Priority

python
1def create_detailed_issue(project_key, summary, description, 2 issue_type="Task", priority="Medium", 3 labels=None, assignee=None): 4 payload = { 5 "fields": { 6 "project": {"key": project_key}, 7 "summary": summary, 8 "description": { 9 "type": "doc", 10 "version": 1, 11 "content": [{ 12 "type": "paragraph", 13 "content": [{"type": "text", "text": description}] 14 }] 15 }, 16 "issuetype": {"name": issue_type}, 17 "priority": {"name": priority}, 18 } 19 } 20 21 if labels: 22 payload["fields"]["labels"] = labels 23 if assignee: 24 payload["fields"]["assignee"] = {"accountId": assignee} 25 26 # ... make request

Common Issue Types

TypeUse For
BugSomething broken
TaskWork item
StoryUser-facing feature
EpicLarge initiative
Sub-taskPart of larger task

Updating Issues

Change Status

python
1def transition_issue(issue_key, transition_name): 2 # Get available transitions 3 url = f"{JIRA_BASE_URL}/rest/api/3/issue/{issue_key}/transitions" 4 transitions = requests.get(url, auth=auth).json() 5 6 # Find matching transition 7 transition_id = None 8 for t in transitions['transitions']: 9 if t['name'].lower() == transition_name.lower(): 10 transition_id = t['id'] 11 break 12 13 # Execute transition 14 requests.post(url, json={"transition": {"id": transition_id}}, auth=auth)

Add Comment

python
1def add_comment(issue_key, comment_text): 2 url = f"{JIRA_BASE_URL}/rest/api/3/issue/{issue_key}/comment" 3 4 payload = { 5 "body": { 6 "type": "doc", 7 "version": 1, 8 "content": [{ 9 "type": "paragraph", 10 "content": [{"type": "text", "text": comment_text}] 11 }] 12 } 13 } 14 15 requests.post(url, json=payload, auth=auth)

Searching Issues

JQL Queries

python
1def search_issues(jql): 2 url = f"{JIRA_BASE_URL}/rest/api/3/search" 3 params = {"jql": jql, "maxResults": 50} 4 response = requests.get(url, params=params, auth=auth) 5 return response.json()['issues'] 6 7# Examples 8my_bugs = search_issues("project = PROJ AND type = Bug AND assignee = currentUser()") 9open_items = search_issues("project = PROJ AND status != Done") 10recent = search_issues("project = PROJ AND created >= -7d")

Quick Commands

When user says... create this:

CommandAction
"log bug about X"Bug issue with description
"create task for X"Task issue
"what's on my plate"JQL: assignee = currentUser() AND status != Done
"move X to done"Transition issue to Done
"add comment to X"Add comment to issue

Best Practices

  1. Summary: Keep under 80 chars, start with verb (Fix, Add, Update)
  2. Description: Include steps to reproduce for bugs
  3. Labels: Use for categorization (frontend, backend, urgent)
  4. Links: Reference related issues when relevant

FAQ & Installation Steps

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

? Frequently Asked Questions

What is jira-issues?

Ideal for Project Management Agents needing seamless Jira issue integration and automation. Unified multi-agent skill system for AI coding assistants (Claude Code, Cursor, Copilot, Gemini) with 414+ skills, 38 agents, and 57 commands. Features smart tech detection, per-project installation, and auto-sync from upstream sources.

How do I install jira-issues?

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

What are the use cases for jira-issues?

Key use cases include: Automating Jira issue creation, Managing project workflows with Jira MCP server, Syncing issues from upstream sources.

Which IDEs are compatible with jira-issues?

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-issues?

Requires Jira API token. Needs environment variables setup. Dependent on Jira REST API or MCP server installation.

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 ngxtm/devkit/jira-issues. 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-issues immediately in the current project.

Related Skills

Looking for an alternative to jira-issues 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