Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
GitHub Copilot CLI を使いやすくしよう
Search
Yuta Matsumura
February 12, 2026
Technology
0
240
GitHub Copilot CLI を使いやすくしよう
2026/02/12 クラメソふくおかIT勉強会でのLT資料です
https://classmethod.connpass.com/event/381672/
Yuta Matsumura
February 12, 2026
Tweet
Share
More Decks by Yuta Matsumura
See All by Yuta Matsumura
使って学ぼう MCP (と GitHub Codespaces)
tsubakimoto_s
1
230
AspireとGitHub Modelsで作るお手軽AIアプリ
tsubakimoto_s
0
74
Memories of GitHub Universe & San Francisco
tsubakimoto_s
0
62
私のMCPの使い方
tsubakimoto_s
0
170
これからはじめる Model Context Protocol
tsubakimoto_s
0
80
Cloudflare の MCP サーバーをためしてみた
tsubakimoto_s
1
220
re:Invent の裏でアップデートされていた .NET Aspire で統合するAWS のクラウドリソース
tsubakimoto_s
1
150
.NET AspireでAzure Functionsやクラウドリソースを統合する
tsubakimoto_s
0
350
Microsoft Entra External IDとAzure AD B2C
tsubakimoto_s
0
2.5k
Other Decks in Technology
See All in Technology
LINE Messengerの次世代ストレージ選定
lycorptech_jp
PRO
19
7.3k
Security Diaries of an Open Source IAM
ahus1
0
200
ブラックボックス観測に基づくAI支援のプロトコルのリバースエンジニアリングと再現~AIを用いたリバースエンジニアリング~ @ SECCON 14 電脳会議 / Reverse Engineering and Reproduction of an AI-Assisted Protocol Based on Black-Box Observation @ SECCON 14 DENNO-KAIGI
chibiegg
0
140
新職業『オーケストレーター』誕生 — エージェント10体を同時に回すAgentOps
gunta
4
1.4k
20260305_【白金鉱業】分析者が地理情報を武器にするための軽量なアドホック分析環境
yucho147
1
160
【SLO】"多様な期待値" と向き合ってみた
z63d
2
310
Agentic Codingの実践とチームで導入するための工夫
lycorptech_jp
PRO
0
400
Sansan Engineering Unit 紹介資料
sansan33
PRO
1
4k
技術的負債の泥沼から組織を救う3つの転換点
nwiizo
7
2.1k
白金鉱業Meetup_Vol.22_Orbital Senseを支える衛星画像のマルチモーダルエンベディングと地理空間のあいまい検索技術
brainpadpr
2
200
Oracle Database@Azure:サービス概要のご紹介
oracle4engineer
PRO
4
1.1k
Master Dataグループ紹介資料
sansan33
PRO
1
4.4k
Featured
See All Featured
WCS-LA-2024
lcolladotor
0
470
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Fashionably flexible responsive web design (full day workshop)
malarkey
408
66k
The agentic SEO stack - context over prompts
schlessera
0
680
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Designing for Timeless Needs
cassininazir
0
150
Dominate Local Search Results - an insider guide to GBP, reviews, and Local SEO
greggifford
PRO
0
93
Visualization
eitanlees
150
17k
How to train your dragon (web standard)
notwaldorf
97
6.5k
Between Models and Reality
mayunak
2
230
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1.2k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.8k
Transcript
GitHub Copilot CLI を 使いやすくしよう 2026/02/12 クラメソふくおかIT勉強会 Yuta Matsumura ©
2026 Yuta Matsumura. #cm_fukuoka_study 1
© 2026 Yuta Matsumura. #cm_fukuoka_study 2
GitHub Copilot CLI • GitHub Copilot のコマンドラインツール `copilot` • Visual
Studio Code の Copilot でできることは大抵できる • おすすめの使い方は • Markdown 文章の生成 (VS Code 等では Markdown がレンダリングされてコピペしづらい) • 他のコマンドライン結果を Copilot に渡す copilot -p "1行コミットメッセージを生成して: $(git diff --cached)" © 2026 Yuta Matsumura. #cm_fukuoka_study 3
// All platforms npm install -g @github/copilot // Windows winget
install GitHub.Copilot // macOS and Linux brew install copilot-cli // Install script (macOS and Linux) curl -fsSL https://gh.io/copilot-install | bash © 2026 Yuta Matsumura. #cm_fukuoka_study 4 インストール方法
© 2026 Yuta Matsumura. #cm_fukuoka_study 5 interactive mode
© 2026 Yuta Matsumura. #cm_fukuoka_study 6 interactive mode
copilot --prompt "Copilotについて教えて" © 2026 Yuta Matsumura. #cm_fukuoka_study 7 non-interactive
mode
© 2026 Yuta Matsumura. #cm_fukuoka_study 8 モデルが選べない!
copilot --model gpt-5 --prompt "..." © 2026 Yuta Matsumura. #cm_fukuoka_study
9 モデル指定でプロンプト入力 Claude を使いたい ときもある・・・
© 2026 Yuta Matsumura. #cm_fukuoka_study 10 function cos ($prompt) {
copilot -- model " claude - sonnet - 4.5 " ... } function coo ($prompt) { copilot -- model " claude - opus - 4.5 " ... } function coc ($prompt) { copilot -- model " gpt - 5.1 - codex - max" ... } function cog ($prompt) { copilot -- model " gemini - 3- pro - preview " ... } エイリアスを設定しよう
© 2026 Yuta Matsumura. #cm_fukuoka_study 11
Appendix • GitHub Copilot CLI • GitHub Copilot CLI -
GitHub Docs • Scripting the GitHub Copilot CLI - Deep Dive © 2026 Yuta Matsumura. #cm_fukuoka_study 12
松村 優大 (MLBお兄さん) © 2026 Yuta Matsumura. #cm_fukuoka_study 株式会社オルターブース (Chief
Technical Architect) Microsoft MVP for Developer Technologies Microsoft Top Partner Engineer Award 2025 GitHub 公認トレーナー C#, PHP, Azure, GitHub #fukuten #devblogradio #fukuoka_mcp https://linktr.ee/tsubakimoto 13
告知 Fukuoka MCP と LINE Developer Community さんで ハンズオンイベントを共催します [2月19日
19時~ AIPカフェ] © 2026 Yuta Matsumura. #cm_fukuoka_study 14 connpass
ご清聴ありがとうございました © 2026 Yuta Matsumura. #cm_fukuoka_study 15