惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
GitHub enters the terminal agent wars with Copilot CLI
Andrew Kew · 2026-05-17 · via DEV Community
Cover image for GitHub enters the terminal agent wars with Copilot CLI

Andrew Kew

GitHub has quietly been building the most compelling answer to Claude Code and OpenAI's Codex CLI — and it just arrived as a standalone product. Copilot CLI is a terminal-native coding agent that lives outside VS Code, competes head-on with Anthropic and OpenAI's standalone tools, and leans hard into one advantage neither rival can match: native GitHub integration.

"Less // TODO: more done. Run a GitHub-native agent in your terminal that works directly with your issues and pull requests, executes across a /fleet of parallelized subagents, and carries you from /plan to merged code."

What actually changed

GitHub Copilot has always lived inside editors. With the Copilot CLI, it ships as a first-class standalone terminal agent — comparable in scope to Claude Code (Anthropic) and Codex CLI (OpenAI):

  • Install in one line: curl -fsSL https://gh.io/copilot-install | bash or npm install -g @github/copilot
  • Included in all plans — Free, Pro, Pro+, Business, Enterprise — no separate billing
  • /plan mode: Shift+Tab to outline work before touching code; Copilot proposes, you approve
  • /fleet: Spin up parallel subagents across multiple models simultaneously — compare results, pick the best
  • /model switching: Change foundation models mid-session (Anthropic, Google, OpenAI all supported)
  • GitHub-native MCP: Built-in access to your issues, branches, PRs and labels — no context hunting
  • /delegate: Create a branch, implement a change, open a PR — one command
  • AGENTS.md support: Define custom instructions and tool access per repo
  • Works within existing guardrails: Branch protections, required checks, org policies all apply

The workflow they're pitching: start in the CLI with /plan, execute with /fleet, refine in /IDE (VS Code), ship via /delegate. The CLI is the on-ramp; the rest of your toolchain stays intact.

Why this matters

The standalone terminal agent market just got a lot more crowded — and GitHub's entry has structural advantages.

Claude Code is brilliant but Anthropic-only. Codex CLI is powerful but tethered to OpenAI's models. Copilot CLI is model-agnostic and GitHub-native, which means it can do things the others can't: pull context from issues, enforce your branch protections automatically, and hand off directly to your existing CI/CD. You don't swap in a new workflow — you extend the one you already have.

The /fleet feature is also worth watching. Running parallel subagents across different models on the same task and converging on a decision-ready result is genuinely new territory for a shipping product.

What to do

  • If you're on any Copilot plan: Install it now. npm install -g @github/copilot. It's already included.
  • Business/Enterprise teams: Your admin needs to enable Copilot CLI in org settings first.
  • Try the Skills exercise: github.com/skills/create-applications-with-the-copilot-cli — hands-on walkthrough from scratch.
  • Evaluate against Claude Code and Codex: If you're already running one of those, Copilot CLI's GitHub-native MCP integration is the main differentiator to test in your actual workflow.

Source: The New Stack · GitHub Copilot CLI

✏️ Drafted with KewBot (AI), edited and approved by Drew.