jira-ticket-creator

Create and manage Jira tickets for the RD project via CLI.

Updated Jul 8, 2024
One-click install
npx skills add https://github.com/alexismanuel/dotfiles --skill jira-ticket-creator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jira-ticket-creator
Source: https://github.com/alexismanuel/dotfiles/tree/main/.opencode/skill/jira-ticket-creator
Command: npx skills add https://github.com/alexismanuel/dotfiles --skill jira-ticket-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill enables creation and management of Jira tickets in the RD project using the Jira CLI. It supports three ticket types: Features, Bugs, and Tasks with PRD-like content.

Core Features & Use Cases

  • Create Feature Tickets: Feature tickets with PRD-like content
  • Create Bug Tickets: Bug tickets with problem analysis
  • Create Task Tickets: General task tickets
  • Template-driven: Uses reference ticket templates for consistency

Quick Start

  • Create feature: python scripts/jira_helper.py create-feature "<summary>" "<description>" [assignee] [team] [sprint]
  • Create bug: python scripts/jira_helper.py create-bug "<summary>" "<problem>" "<reproduction-steps>" "<resolution-hypothesis>" [assignee] [team] [sprint]
  • Create task: python scripts/jira_helper.py create-task "<summary>" "<description>" [assignee] [team] [sprint]
  • List tickets: python scripts/jira_helper.py list
  • Update ticket: jira issue update TICKET-123 --status "In Progress"

Frequently Asked Questions about jira-ticket-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Jira ticket creation for my RD project?

Automate Jira ticket creation using the Jira CLI with Python helper scripts that generate Features, Bugs, and Tasks. The Skill provides template-driven workflows to standardize fields like assignee, team, sprint, and status across ticket types.

Can I create Jira feature tickets with PRD-like content automatically?

Yes, create feature tickets with PRD-like content using templates via the Jira CLI. The Skill maps summary and description fields and optionally assigns team, assignee, and sprint automatically.

What's the fastest way to create bug tickets in Jira with problem analysis?

Create bug tickets directly via Python scripts with structured fields: problem statement, reproduction steps, and resolution hypothesis. The Skill handles field mapping and Jira CLI integration to standardize bug documentation.

Does this Skill support listing and updating existing Jira tickets?

Yes, list all RD project tickets and update ticket status using Jira CLI commands. The Skill wraps both operations—creation, listing, and updates—in a unified Python helper interface.

Can I assign team and sprint information when creating Jira tickets?

Yes, pass optional assignee, team, and sprint parameters to any ticket creation command. The Skill maps these fields to Jira's field structure and applies them consistently across Feature, Bug, and Task tickets.

What ticket types does this Skill support in Jira?

This Skill creates three ticket types: Features with PRD-like content, Bugs with problem analysis, and general Tasks. Each type uses templates to enforce consistent field population and structure.