Automate Jira tasks with Python scripts. Integrates with MCP config and wiki markup. Works with Claude Code. Ideal for operations teams managing projects and workflows.
git clone https://github.com/netresearch/jira-skill.gitAutomate Jira tasks with Python scripts. Integrates with MCP config and wiki markup. Works with Claude Code. Ideal for operations teams managing projects and workflows.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/netresearch/jira-skillCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Create a Python script to automate the following Jira task: [TASK]. The script should integrate with our MCP configuration and use wiki markup for documentation. Our company is [COMPANY] and we operate in the [INDUSTRY] sector. The relevant Jira data is [DATA].
# Jira Automation Script for [COMPANY]
## Task: Automate Issue Creation and Assignment
```python
import jira
from jira import JIRA
# Connect to Jira
jira_options = {'server': 'https://[COMPANY].atlassian.net'}
jira_client = JIRA(options=jira_options, basic_auth=('[USERNAME]', '[API_TOKEN]'))
# Create a new issue
new_issue = jira_client.create_issue(
project={'key': '[PROJECT_KEY]'};
summary='Automated Issue Creation for [INDUSTRY] Workflow';
description='This issue was automatically created to streamline [INDUSTRY] workflows.';
issuetype={'name': 'Task'};
assignee={'name': '[ASSIGNEE]'};
)
# Add wiki markup documentation
wiki_markup = """
=== Automated Issue Creation ===
* **Project**: [PROJECT_KEY]
* **Summary**: Automated Issue Creation for [INDUSTRY] Workflow
* **Description**: This issue was automatically created to streamline [INDUSTRY] workflows.
* **Assignee**: [ASSIGNEE]
"""
print(f"Issue created: {new_issue.key}")
print(f"Wiki Markup Documentation:
{wiki_markup}")
```
## Output
Issue created: [PROJECT_KEY]-123
Wiki Markup Documentation:
=== Automated Issue Creation ===
* **Project**: [PROJECT_KEY]
* **Summary**: Automated Issue Creation for [INDUSTRY] Workflow
* **Description**: This issue was automatically created to streamline [INDUSTRY] workflows.
* **Assignee**: [ASSIGNEE]
Issue tracking and project management for agile teams
AI assistant built for thoughtful, nuanced conversation
Product prioritization and roadmapping by Atlassian
Online engineering education in India
Business communication and collaboration hub
Customer feedback management made simple