From jira-tools
Create a well-structured Jira Bug with consistent formatting optimized for both human readers and AI agents. Invoked internally by the /jira-create command. Handles clarifying questions, optional codebase investigation, and MCP-based ticket creation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jira-tools:create-jira-bugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Every bug MUST use this exact structure. Do not deviate.
Every bug MUST use this exact structure. Do not deviate.
## Description
[One paragraph. What is broken and what is the impact. Short as possible.]
## Steps to Reproduce
1. [Step one]
2. [Step two]
3. [Observe: what happens vs what should happen]
## Additional Information / Links
* [Logs, screenshots, environment, related tickets]
h2., {{code}}, {code}, # for numbered lists). Use ## Heading, `code`, triple-backtick fenced code blocks, and 1. for numbered lists.fix: prefix.Extract from the user's message:
Use AskUser when genuinely ambiguous. Common questions:
Do NOT ask about format -- the format is fixed. Do NOT ask questions you can answer by investigating the codebase.
When the bug involves code in the current repo:
Skip this step for bugs in external systems or a different repo.
Write the description following the mandatory format. Before creating, review:
Use atlassian___createJiraIssue via the manage-jira skill for API mechanics:
issueTypeName: Always "Bug"parent: Set when provided by the userassignee_account_id: Set when the user requests assignment (look up from an existing ticket if needed)projectKey: Derive from the parent ticket's project, or ask the userAfter creating the ticket, follow any post-creation steps defined by the active project skill (e.g. cars-project). These may include setting required custom fields such as team. If no project skill is active, skip this step.
manage-jira skill.manage-jira skill.npx claudepluginhub mbensch/mb-ai-tools --plugin jira-toolsCreates Jira issues via CLI flags or work-item files. Converts Markdown body to ADF, previews payload, requires confirmation, then POSTs to Jira.
Creates, updates, and manages Jira issues from natural language via REST API or MCP server. Use for logging bugs, creating tickets, updating status, or handling backlogs.
Core JIRA issue CRUD - create bugs/tasks/stories, get issue details, update fields, delete issues. TRIGGERS: 'show me [KEY]', 'get issue [KEY]', 'view issue', 'create a bug/task/story', 'update [KEY]', 'delete [KEY]', 'details of [KEY]', 'look up [KEY]', 'what's in [KEY]'. NOT FOR: epics (use jira-agile), transitions/status changes (use jira-lifecycle), comments/attachments (use jira-collaborate), time tracking (use jira-time), bulk operations on 10+ issues (use jira-bulk), dependencies/blockers (use jira-relationships), branch names/PR descriptions (use jira-dev).