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.
npx claudepluginhub mulhamna/jira-commands --plugin jiraThis skill uses the workspace's default tool permissions.
Create a new Jira issue using `jirac`.
Use this skill only when the user explicitly invokes /create-jira-issue to create a new Jira issue. This is a write skill with irreversible side effects — it must never be auto-invoked from conversational context. Accepts a project key, issue type, summary, optional Markdown body, and optional fields (assignee, priority, labels, components, parent, custom fields). Converts the body to ADF, shows a payload preview, requires explicit confirmation, then POSTs to Jira and returns the new issue key.
Creates Jira tickets interactively: prompts for project, type, summary, description, priority, assignee, labels; confirms before Atlassian API creation.
Creates Jira issues in the AIPCC project by inferring summary, description, type, component, and optional parent epic from context, confirming with user before using acli CLI via Bash.
Share bugs, ideas, or general feedback.
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 Task