Skip to content
Development
Skill

/create-issue

Create new Jira issues with jirac, including interactive prompts for project, issue type, summary, and custom fields

From plugin
jira-commands
4929 skills
Install
$ npx -y skills add mulhamna/jira-commands --skill create-issue --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/create-issue

Context preview

The summary Claude sees to decide when to auto-load this skill.

Create new Jira issues with jirac, including interactive prompts for project, issue type, summary, and custom fields

SKILL.md

create-issue.SKILL.md
description: Create new Jira issues with jirac, including interactive prompts for project, issue type, summary, and custom fields

Create a new Jira issue using `jirac`.

Steps: 1. Check that `jirac` is available by running `jirac --version`. If it is missing, tell the user to install it with `cargo install jira-commands`. 2. Extract from the user's request:

  • project key
  • issue type
  • summary
  • any explicit assignee, labels, priority, parent, or other fields

3. Map the request to supported flags:

  • `-p / --project`, `-s / --summary`, `-t / --issue-type`
  • `--assignee` (email or "me"), `--priority`, `--labels`, `--components`
  • `--parent <ISSUE-KEY>` for sub-tasks
  • `--sprint <ID|NAME>` to assign to a sprint on create
  • `--fix-versions`, `--description-file <FILE>`
  • `--field <ID=VALUE>` for custom fields (repeatable)
  • `--no-custom-fields` to skip required custom field prompts

4. Run `jirac issue create` with the fields that are already known. 5. Let `jirac` prompt for any missing required fields. 6. If custom fields are unclear, run `jirac issue fields -p <PROJECT> --issue-type '<TYPE>'` first. 7. Confirm the created issue key clearly.

Examples:

  • "create an issue in PROJ" → `jirac issue create -p PROJ`
  • "create a bug in PROJ called login page crashes" → `jirac issue create -p PROJ -t Bug -s 'login page crashes'`
  • "create sub-task under PROJ-100" → `jirac issue create -p PROJ -t Sub-task -s 'sub-task title' --parent PROJ-100`
  • "create story in Sprint 24" → `jirac issue create -p PROJ -t Story -s 'story title' --sprint 'Sprint 24'`
  • "create with story points 5" → `jirac issue create -p PROJ -t Story -s 'title' --field story_points=5`
  • "buat task baru di PROJ" → `jirac issue create -p PROJ -t Task`
Read more
Ships withjira-commands

Jira on the command line. jirac is a Jira command-line client written in Rust. It ships as a single binary with no runtime dependencies and runs on macOS, Linux, and Windows.

Get the whole plugin
Stats
49
Stars
14
Forks
Active
Maintenance
Rust
Language
7d ago
Last commit
5mo ago
Created

Repo: mulhamna/jira-commands

Other skills on jira-commands.