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

github-cli

Use GitHub CLI, `gh`, for authentication, repository work, issues, pull requests, releases, Actions, projects, and `gh api` calls. Use this skill whenever the user mentions `gh`, `gh pr`, `gh issue`, `gh repo`, `gh run`, `gh workflow`, `gh auth`, wants a GitHub CLI command example, needs to script GitHub operations, or wants to translate GitHub UI steps into terminal commands.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して github-cli.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → github-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
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

GitHub CLI

GitHub CLI is the fastest way to work with GitHub from a terminal.

Start Here

  • Authenticate first: gh auth login
  • Check active context: gh auth status
  • Target another repo when needed: -R OWNER/REPO
  • Get command help anytime: gh <command> --help

Common Workflow

gh auth login
gh repo clone OWNER/REPO
gh issue list
gh pr create --fill
gh run watch

References

Core

  • gh auth: references/auth.md
  • gh browse: references/browse.md
  • gh codespace: references/codespace.md
  • gh gist: references/gist.md
  • gh issue: references/issue.md
  • gh org: references/org.md
  • gh pr: references/pr.md
  • gh project: references/project.md
  • gh release: references/release.md
  • gh repo: references/repo.md

Actions

  • gh cache: references/cache.md
  • gh run: references/run.md
  • gh workflow: references/workflow.md

Additional

  • gh agent-task: references/agent-task.md
  • gh alias: references/alias.md
  • gh api: references/api.md
  • gh attestation: references/attestation.md
  • gh completion: references/completion.md
  • gh config: references/config.md
  • gh copilot: references/copilot.md
  • gh extension: references/extension.md
  • gh gpg-key: references/gpg-key.md
  • gh label: references/label.md
  • gh licenses: references/licenses.md
  • gh preview: references/preview.md
  • gh ruleset: references/ruleset.md
  • gh search: references/search.md
  • gh secret: references/secret.md
  • gh ssh-key: references/ssh-key.md
  • gh status: references/status.md
  • gh variable: references/variable.md

Notes

  • Prefer --json, --jq, or --template for scripts
  • gh api is the fallback for anything not covered by a dedicated command
  • For GitHub Enterprise, use --hostname or set GH_HOST