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

linear-issues-write

コマンドラインインターフェースを通じて、Linearの課題を新規作成したり、既存の課題を更新したりするなど、課題管理を効率的に行うことができるSkill。

📜 元の英語説明(参考)

Create and update Linear issues via CLI (write operations)

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

一言でいうと

コマンドラインインターフェースを通じて、Linearの課題を新規作成したり、既存の課題を更新したりするなど、課題管理を効率的に行うことができるSkill。

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

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して linear-issues-write.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → linear-issues-write フォルダができる
  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 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

概要

Linear issueを作成および更新するためのCLIツールです。<git-root>/.envLINEAR_API_KEYを設定するか、環境変数にエクスポートする必要があります。

前提条件

  • bun ランタイムがインストールされていること
  • LINEAR_API_KEY<git-root>/.env または環境変数に設定されていること

コマンド

Issueの作成

bun .opencode/skill/linear-issues-write/create-issue.js --title "..." --team <team> [options]

必須:

  • --title <title> - Issueのタイトル
  • --team <name> - チーム名 (例: Engineering)

オプション:

  • --description <text> - Issueの説明
  • --assignee <name> - 担当者名
  • --priority <0-4> - 優先度: 0=なし, 1=緊急, 2=高, 3=中, 4=低
  • --labels <labels> - カンマ区切りのラベル (例: "Bug,SOC2")
  • --project <name> - プロジェクト名
  • --json - JSONとして出力

例:

bun .opencode/skill/linear-issues-write/create-issue.js --title "Fix login bug" --team Engineering --priority 2
bun .opencode/skill/linear-issues-write/create-issue.js --title "New feature" --team Engineering --labels "Feature" --assignee "John Adams"
bun .opencode/skill/linear-issues-write/create-issue.js --title "Security fix" --team Engineering --project "Monticello" --priority 1

Issueの更新

bun .opencode/skill/linear-issues-write/update-issue.js <issue-id> [options]

引数:

  • issue-id - Issueの識別子 (例: ENG-123) または UUID

オプション:

  • --title <title> - 新しいタイトル
  • --description <text> - 新しい説明
  • --status <status> - 新しいステータス (例: "In Progress", "Done")
  • --assignee <name> - 新しい担当者 (担当者を解除するには "none" を使用)
  • --priority <0-4> - 新しい優先度
  • --labels <labels> - すべてのラベルを置き換える
  • --add-labels <labels> - 既存のラベルを削除せずにラベルを追加する
  • --project <name> - プロジェクトを設定 (削除するには "none" を使用)
  • --json - JSONとして出力

例:

bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --status "In Progress"
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee "Thomas Jefferson" --priority 2
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --add-labels "Bug,Urgent"
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee none

注記

  • チーム、ユーザー、ラベルの名前は自動的に解決されます (大文字と小文字は区別されません)
  • スクリプト処理に適した機械可読な出力を得るには、--json フラグを使用してください
  • すべてのコマンドは、詳細な使用方法情報のために --help をサポートしています
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Overview

CLI tools for creating and updating Linear issues. Requires LINEAR_API_KEY set in <git-root>/.env or exported in the environment.

Prerequisites

  • bun runtime installed
  • LINEAR_API_KEY set in <git-root>/.env or environment

Commands

Create Issue

bun .opencode/skill/linear-issues-write/create-issue.js --title "..." --team <team> [options]

Required:

  • --title <title> - Issue title
  • --team <name> - Team name (e.g., Engineering)

Options:

  • --description <text> - Issue description
  • --assignee <name> - Assignee name
  • --priority <0-4> - Priority: 0=none, 1=urgent, 2=high, 3=medium, 4=low
  • --labels <labels> - Comma-separated labels (e.g., "Bug,SOC2")
  • --project <name> - Project name
  • --json - Output as JSON

Examples:

bun .opencode/skill/linear-issues-write/create-issue.js --title "Fix login bug" --team Engineering --priority 2
bun .opencode/skill/linear-issues-write/create-issue.js --title "New feature" --team Engineering --labels "Feature" --assignee "John Adams"
bun .opencode/skill/linear-issues-write/create-issue.js --title "Security fix" --team Engineering --project "Monticello" --priority 1

Update Issue

bun .opencode/skill/linear-issues-write/update-issue.js <issue-id> [options]

Arguments:

  • issue-id - Issue identifier (e.g., ENG-123) or UUID

Options:

  • --title <title> - New title
  • --description <text> - New description
  • --status <status> - New status (e.g., "In Progress", "Done")
  • --assignee <name> - New assignee (use "none" to unassign)
  • --priority <0-4> - New priority
  • --labels <labels> - Replace all labels
  • --add-labels <labels> - Add labels without removing existing
  • --project <name> - Set project (use "none" to remove)
  • --json - Output as JSON

Examples:

bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --status "In Progress"
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee "Thomas Jefferson" --priority 2
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --add-labels "Bug,Urgent"
bun .opencode/skill/linear-issues-write/update-issue.js ENG-123 --assignee none

Notes

  • Team, user, and label names are resolved automatically (case-insensitive)
  • Use --json flag for machine-readable output suitable for scripting
  • All commands support --help for detailed usage information