jpskill.com
💼 ビジネス コミュニティ

jira-cli

コマンドラインからJiraを操作し、課題の作成・一覧表示・編集、スプリントやEpicの管理、一般的なワークフロー実行など、プロジェクトのタスクやチケットに関する作業を効率化するSkill。

📜 元の英語説明(参考)

Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.

🇯🇵 日本人クリエイター向け解説

一言でいうと

コマンドラインからJiraを操作し、課題の作成・一覧表示・編集、スプリントやEpicの管理、一般的なワークフロー実行など、プロジェクトのタスクやチケットに関する作業を効率化するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o jira-cli.zip https://jpskill.com/download/17971.zip && unzip -o jira-cli.zip && rm jira-cli.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17971.zip -OutFile "$d\jira-cli.zip"; Expand-Archive "$d\jira-cli.zip" -DestinationPath $d -Force; ri "$d\jira-cli.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して jira-cli.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → jira-cli フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Jira CLI

jira-cli を使用して、コマンドラインから Atlassian Jira を操作します。

どのような時に使うか

  • ユーザーが Jira の課題/チケットの作成、表示、編集、または検索を要求する場合
  • ユーザーがワークフローの状態(To Do → In Progress → Done)を通じて課題を移行する必要がある場合
  • ユーザーがスプリント、エピック、またはボードを管理したい場合
  • ユーザーが課題の割り当て、コメントの追加、または作業時間の記録を必要とする場合
  • ユーザーが現在のタスクまたはスプリントの進捗状況について質問する場合

前提条件

  1. jira-cli をインストールします: brew install ankitpokhrel/jira-cli/jira-cli (macOS) または releases からダウンロード
  2. API トークンを設定します: export JIRA_API_TOKEN="your-token"
  3. 初期化します: jira init を実行し、プロンプトに従います

課題コマンド

課題一覧

# 現在のプロジェクトの課題を一覧表示
jira issue list

# 自分が担当する課題を一覧表示
jira issue list -a$(jira me)

# ステータスで課題を一覧表示
jira issue list -s"In Progress"

# 優先度の高い課題を一覧表示
jira issue list -yHigh

# 複数のフィルターで課題を一覧表示
jira issue list -a$(jira me) -s"To Do" -yHigh --created week

# 生の JQL で課題を一覧表示
jira issue list -q "project = PROJ AND status = 'In Progress'"

# スクリプト用のプレーンテキスト出力
jira issue list --plain --columns key,summary,status --no-headers

課題の作成

# インタラクティブな課題作成
jira issue create

# すべてのオプションを指定して作成
jira issue create -tBug -s"Login button not working" -b"Description here" -yHigh --no-input

# ストーリーを作成
jira issue create -tStory -s"Add user authentication" -yMedium

# ラベルとコンポーネントを使用して作成
jira issue create -tTask -s"Update dependencies" -lmaintenance -l"tech-debt" -Cbackend

# 作成して自分に割り当てる
jira issue create -tBug -s"Fix crash on startup" -a$(jira me) --no-input

課題の表示

# 課題の詳細を表示
jira issue view ISSUE-123

# コメント付きで表示
jira issue view ISSUE-123 --comments 10

# プレーンテキストで表示
jira issue view ISSUE-123 --plain

# ブラウザで課題を開く
jira open ISSUE-123

課題の編集

# 要約を編集
jira issue edit ISSUE-123 -s"Updated summary"

# 説明を編集
jira issue edit ISSUE-123 -b"New description"

# 優先度を編集
jira issue edit ISSUE-123 -yHigh

# ラベルを追加
jira issue edit ISSUE-123 -lnew-label

課題の移行

# 課題を新しいステータスに移動
jira issue move ISSUE-123 "In Progress"

# コメント付きで移動
jira issue move ISSUE-123 "Done" --comment "Completed the task"

# 移動して解決策を設定
jira issue move ISSUE-123 "Done" -RFixed

課題の割り当て

# 自分に割り当てる
jira issue assign ISSUE-123 $(jira me)

# 特定のユーザーに割り当てる
jira issue assign ISSUE-123 username

# 割り当てを解除
jira issue assign ISSUE-123 x

コメント

# コメントを追加
jira issue comment add ISSUE-123 "This is my comment"

# エディターからコメントを追加
jira issue comment add ISSUE-123

作業時間の記録

# 時間を記録
jira issue worklog add ISSUE-123 "2h 30m"

# コメント付きで時間を記録
jira issue worklog add ISSUE-123 "1d 4h" --comment "Completed feature implementation" --no-input

課題のリンクとクローン

# 2 つの課題をリンク
jira issue link ISSUE-123 ISSUE-456 Blocks

# 課題のリンクを解除
jira issue unlink ISSUE-123 ISSUE-456

# 課題をクローン
jira issue clone ISSUE-123 -s"Cloned: New summary"

# 課題を削除
jira issue delete ISSUE-123

エピックコマンド

# エピックを一覧表示
jira epic list

# テーブル形式でエピックを一覧表示
jira epic list --table

# エピックを作成
jira epic create -n"Q1 Features" -s"Epic summary" -b"Epic description"

# エピックに課題を追加
jira epic add EPIC-1 ISSUE-123 ISSUE-456

# エピックから課題を削除
jira epic remove ISSUE-123 ISSUE-456

スプリントコマンド

# スプリントを一覧表示
jira sprint list

# 現在/アクティブなスプリントを一覧表示
jira sprint list --current

# 現在のスプリントで自分が担当する課題を一覧表示
jira sprint list --current -a$(jira me)

# スプリントに課題を追加
jira sprint add SPRINT_ID ISSUE-123 ISSUE-456

プロジェクトとボードのコマンド

# プロジェクトを一覧表示
jira project list

# ボードを一覧表示
jira board list

# リリース/バージョンを一覧表示
jira release list

# ブラウザでプロジェクトを開く
jira open

ユーティリティコマンド

# 現在のユーザー名を取得
jira me

# ヘルプを表示
jira --help
jira issue --help

# シェル補完を設定
jira completion bash  # or zsh, fish, powershell

共通フラグ

フラグ 説明
--plain プレーンテキスト出力 (インタラクティブ UI なし)
--raw 生の JSON 出力
--csv CSV 出力
--no-input インタラクティブなプロンプトをスキップ
-t, --type 課題タイプ (Bug, Story, Task, Epic)
-s, --summary 課題の要約/タイトル
-b, --body 課題の説明
-y, --priority 優先度 (Highest, High, Medium, Low, Lowest)
-l, --label ラベル (繰り返し可能)
-a, --assignee 担当者のユーザー名
-r, --reporter 報告者のユーザー名
-C, --component コンポーネント名
-P, --parent 親課題/エピックキー
-q, --jql 生の JQL クエリ
--created 作成日でフィルタリング (-7d, week, month)
--order-by ソートフィールド
--reverse 逆ソート順

一般的なワークフロー

課題の作業を開始する

# 自分に割り当てて In Progress に移動
jira issue assign ISSUE-123 $(jira me)
jira issue move ISSUE-123 "In Progress"

課題を完了する

# 作業時間を記録してクローズ
jira issue worklog add ISSUE-123 "4h" --no-input
jira issue move ISSUE-123 "Done" --comment "Completed" -RFixed

毎日のスタンドアップレビュー

# 現在のスプリントで自分が担当するタスクを表示
jira sprint list --current -a$(jira me)

バグを作成して追跡する

# バグを作成
jira issue create -tBug -s"App crashes on login" -yHigh -lbug --no-input
# 返された課題キーをメモし、割り当てる
jira issue assign BUG-123 $(jira me)
jira issue move BUG-123 "In Progress"

出力例

コマンド ユースケース
jira issue list --plain スクリプトフレンドリーな出力
jira issue list --raw JSON
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Jira CLI

Interact with Atlassian Jira from the command line using jira-cli.

When to Use

  • User asks to create, view, edit, or search Jira issues/tickets
  • User needs to transition issues through workflow states (To Do → In Progress → Done)
  • User wants to manage sprints, epics, or boards
  • User needs to assign issues, add comments, or log work time
  • User asks about their current tasks or sprint progress

Prerequisites

  1. Install jira-cli: brew install ankitpokhrel/jira-cli/jira-cli (macOS) or download from releases
  2. Set API token: export JIRA_API_TOKEN="your-token"
  3. Initialize: jira init and follow prompts

Issue Commands

List Issues

# List issues in current project
jira issue list

# List my assigned issues
jira issue list -a$(jira me)

# List issues by status
jira issue list -s"In Progress"

# List high priority issues
jira issue list -yHigh

# List issues with multiple filters
jira issue list -a$(jira me) -s"To Do" -yHigh --created week

# List issues with raw JQL
jira issue list -q "project = PROJ AND status = 'In Progress'"

# Plain text output for scripting
jira issue list --plain --columns key,summary,status --no-headers

Create Issues

# Interactive issue creation
jira issue create

# Create with all options specified
jira issue create -tBug -s"Login button not working" -b"Description here" -yHigh --no-input

# Create a story
jira issue create -tStory -s"Add user authentication" -yMedium

# Create with labels and components
jira issue create -tTask -s"Update dependencies" -lmaintenance -l"tech-debt" -Cbackend

# Create and assign to self
jira issue create -tBug -s"Fix crash on startup" -a$(jira me) --no-input

View Issues

# View issue details
jira issue view ISSUE-123

# View with comments
jira issue view ISSUE-123 --comments 10

# View in plain text
jira issue view ISSUE-123 --plain

# Open issue in browser
jira open ISSUE-123

Edit Issues

# Edit summary
jira issue edit ISSUE-123 -s"Updated summary"

# Edit description
jira issue edit ISSUE-123 -b"New description"

# Edit priority
jira issue edit ISSUE-123 -yHigh

# Add labels
jira issue edit ISSUE-123 -lnew-label

Transition Issues

# Move issue to a new status
jira issue move ISSUE-123 "In Progress"

# Move with comment
jira issue move ISSUE-123 "Done" --comment "Completed the task"

# Move and set resolution
jira issue move ISSUE-123 "Done" -RFixed

Assign Issues

# Assign to self
jira issue assign ISSUE-123 $(jira me)

# Assign to specific user
jira issue assign ISSUE-123 username

# Unassign
jira issue assign ISSUE-123 x

Comments

# Add a comment
jira issue comment add ISSUE-123 "This is my comment"

# Add comment from editor
jira issue comment add ISSUE-123

Work Logging

# Log time
jira issue worklog add ISSUE-123 "2h 30m"

# Log time with comment
jira issue worklog add ISSUE-123 "1d 4h" --comment "Completed feature implementation" --no-input

Link & Clone Issues

# Link two issues
jira issue link ISSUE-123 ISSUE-456 Blocks

# Unlink issues
jira issue unlink ISSUE-123 ISSUE-456

# Clone an issue
jira issue clone ISSUE-123 -s"Cloned: New summary"

# Delete an issue
jira issue delete ISSUE-123

Epic Commands

# List epics
jira epic list

# List epics in table format
jira epic list --table

# Create an epic
jira epic create -n"Q1 Features" -s"Epic summary" -b"Epic description"

# Add issues to epic
jira epic add EPIC-1 ISSUE-123 ISSUE-456

# Remove issues from epic
jira epic remove ISSUE-123 ISSUE-456

Sprint Commands

# List sprints
jira sprint list

# List current/active sprint
jira sprint list --current

# List my issues in current sprint
jira sprint list --current -a$(jira me)

# Add issues to sprint
jira sprint add SPRINT_ID ISSUE-123 ISSUE-456

Project & Board Commands

# List projects
jira project list

# List boards
jira board list

# List releases/versions
jira release list

# Open project in browser
jira open

Utility Commands

# Get current username
jira me

# Show help
jira --help
jira issue --help

# Setup shell completion
jira completion bash  # or zsh, fish, powershell

Common Flags

Flag Description
--plain Plain text output (no interactive UI)
--raw Raw JSON output
--csv CSV output
--no-input Skip interactive prompts
-t, --type Issue type (Bug, Story, Task, Epic)
-s, --summary Issue summary/title
-b, --body Issue description
-y, --priority Priority (Highest, High, Medium, Low, Lowest)
-l, --label Labels (repeatable)
-a, --assignee Assignee username
-r, --reporter Reporter username
-C, --component Component name
-P, --parent Parent issue/epic key
-q, --jql Raw JQL query
--created Filter by creation date (-7d, week, month)
--order-by Sort field
--reverse Reverse sort order

Common Workflows

Start Working on an Issue

# Assign to self and move to In Progress
jira issue assign ISSUE-123 $(jira me)
jira issue move ISSUE-123 "In Progress"

Complete an Issue

# Log work and close
jira issue worklog add ISSUE-123 "4h" --no-input
jira issue move ISSUE-123 "Done" --comment "Completed" -RFixed

Daily Standup Review

# View my current sprint tasks
jira sprint list --current -a$(jira me)

Create and Track a Bug

# Create bug
jira issue create -tBug -s"App crashes on login" -yHigh -lbug --no-input
# Note the returned issue key, then assign
jira issue assign BUG-123 $(jira me)
jira issue move BUG-123 "In Progress"

Output Examples

Command Use Case
jira issue list --plain Script-friendly output
jira issue list --raw JSON for parsing
jira issue list --csv Export to spreadsheet

Limitations

  • Requires prior jira init configuration
  • Some features may vary between Jira Cloud and Server
  • Complex custom fields may require --custom flag with field IDs
  • Rate limits apply based on Jira instance configuration