From jira
Creates new Jira issues using jirac CLI, extracting project key, issue type, summary, assignee, labels, priority, and custom fields from requests with interactive prompts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jira:create-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a new Jira issue using `jirac`.
Create a new Jira issue using jirac.
Steps:
jirac is available by running jirac --version. If it is missing, tell the user to install it with cargo install jira-commands.jirac issue create with the fields that are already known.jirac prompt for any missing required fields.jirac issue fields -p <PROJECT> --issue-type '<TYPE>' first.Examples:
jirac issue create -p PROJjirac issue create -p PROJ --type Bug --summary 'login page crashes'jirac issue create -p PROJ --type Tasknpx claudepluginhub mulhamna/jira-commands --plugin jiraCreates Jira tickets interactively: prompts for project, type, summary, description, priority, assignee, labels; confirms before Atlassian API creation.
Creates Jira issues via CLI flags or work-item files. Converts Markdown body to ADF, previews payload, requires confirmation, then POSTs to Jira.
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).