You Got GitHub Copilot...
Now What?

You just unlocked the most powerful AI coding platform on the planet.
It's way more than autocomplete in VS Code. Here's everything you can do.

๐Ÿ’ก

The #1 Misconception

"GitHub Copilot is just a VS Code plugin." โ€” Not anymore. Your subscription gives you an AI pair programmer in your terminal, on github.com, across 6 IDEs, through coding agents that open PRs for you, and via an SDK to build your own AI tools. Let's break it down.

Where Can You Use Copilot?

Your subscription works across all of these โ€” pick your favorites.

NEW โ€” Autonomous AI

Coding Agents on GitHub.com

Assign a GitHub Issue to Copilot and it will autonomously write code, create a branch, open a pull request, and iterate based on your review โ€” all without leaving github.com. You can also use Claude and OpenAI Codex as coding agents directly on GitHub.

  • Assign issues directly to @copilot
  • Multi-agent support: Copilot, Claude, Codex side by side
  • Runs in sandboxed GitHub Actions environments
  • Agents Tab: manage and monitor agent sessions per repo
  • Self-review & security scanning before opening PRs
  • Full code review workflow โ€” you stay in control
Explore Coding Agents โ†’ Read the Docs โ†’
github.com โ€” Issue #42

# You assign the issue to @copilot

โ†’ Copilot analyzes the codebase...

โ†’ Creates branch copilot/fix-42

โ†’ Writes code, adds tests

โ†’ Opens Pull Request #43

โ†’ Ready for your review โœ“

Terminal Agent

GitHub Copilot in the CLI

A full AI agent right in your terminal. Ask questions in natural language, generate scripts, explore codebases, delegate tasks, and even create pull requests โ€” all without leaving the command line.

  • Natural language coding and scripting
  • Repo-aware: understands your project context
  • Custom agents for team-specific workflows
  • Delegate tasks with /delegate
  • Remote sessions: start with --remote, monitor from web or mobile
  • BYOK & local models: bring your own API keys or run Ollama locally
  • Works headlessly in CI/CD pipelines
Get Copilot CLI โ†’
Terminal

$ copilot -p "find all API endpoints that lack authentication and add middleware"

# Copilot scans your codebase...

โ†’ Found 3 unprotected routes

โ†’ Adding auth middleware...

โ†’ Writing tests...

โ†’ Done. Review changes? [y/n]

NEW โ€” Continuous AI

GitHub Agentic Workflows

Author repository automation in plain Markdown โ€” no YAML required. Describe what you want to happen, compile it with the gh aw CLI, and let an AI agent (Copilot, Claude, or Codex) handle the rest on a schedule or trigger.

  • Write automations in natural language Markdown files
  • Compile to GitHub Actions with gh aw compile
  • Continuous AI: issue triage, doc upkeep, PR review, and more
  • Security-first: sandboxed execution, read-only by default
  • Choose your agent: Copilot CLI, Claude, or OpenAI Codex
Explore Agentic Workflows โ†’ Read the Blog Post โ†’
.github/workflows/triage.md

---

name: Daily Issue Triage

on: schedule: "0 9 * * *"

agent: copilot

permissions: [issues: write]

---

 

Triage all open issues with no labels.

Add labels and a brief summary comment.

 

$ gh aw compile triage.md

โ†’ Compiled โ†’ triage.lock.yml โœ“

In Your Favorite Editor

Inline completions, chat, agent mode, plan mode, multi-file edits, and more โ€” in every major IDE.

For Builders

Copilot SDK โ€” Build Your Own AI Tools

Embed Copilot's agentic runtime into any application. The SDK exposes the same multi-turn execution engine that powers Copilot CLI โ€” with official support for Python, Node.js, Go, .NET, and Java.

  • Agentic execution loop with tool orchestration
  • Multi-model support (GPT, Claude, Gemini)
  • Custom tools and domain-specific skills
  • MCP integration for enterprise services
Learn about the SDK โ†’

๐ŸŒ Community SDKs: Need Rust or Clojure? The Copilot Community SDK project provides community-maintained SDKs for languages not yet officially supported.

your-app.ts

import { CopilotClient } from "@github/copilot-sdk";

 

const client = new CopilotClient();

await client.start();

 

const session = await client.createSession({

  model: "claude-sonnet-4.6"

});

 

await session.send({

  prompt: "Analyze merged PRs"

});

Your Subscription, Multiple AI Brains

With Copilot Pro/Pro+, you're not locked into one model. Choose the best AI for each task. See models & pricing โ†’

Google Gemini

Multimodal reasoning, large context windows, and strong analytical capabilities.

Gemini 3 Pro

Anthropic Claude

Exceptional reasoning, safety-focused, and excellent for complex multi-step problems.

Sonnet 4.6 ยท Opus 4.7

OpenAI GPT

Versatile general-purpose models for coding, chat, analysis, and creative tasks.

GPT-5 ยท GPT-5.4

OpenAI Codex

Purpose-built for code. Autonomous agent that can write, test, and iterate on code.

GPT-5.3-Codex

๐Ÿ”‘ Bring Your Own Key: Copilot CLI also supports BYOK mode โ€” connect your own OpenAI, Anthropic, or Azure OpenAI endpoints, or run local models with Ollama. GitHub auth becomes optional, giving you full control over routing and compliance. Learn more โ†’

What Can You Actually Do?

Here are the core capabilities available across all Copilot surfaces.

โšก

Code Completion

Real-time suggestions as you type. Multi-line completions, function bodies, boilerplate โ€” it just flows.

๐Ÿ’ฌ

Chat & Ask

Ask questions about your code, get explanations, debug errors, and brainstorm solutions in natural language.

๐Ÿค–

Agent Mode

Give Copilot a high-level task and it plans, executes, edits files, runs commands, and fixes errors autonomously.

๐Ÿ“‹

Plan Mode

Describe what you want to build. Copilot creates a step-by-step implementation blueprint for your review before writing code.

โœ๏ธ

Multi-File Edits

Copilot Edits can refactor, rename, and restructure code across multiple files in one go.

๐Ÿ”

Code Review

Get AI-powered review suggestions on your pull requests. Catches bugs, suggests improvements, and explains changes.

๐Ÿงช

Test Generation

Automatically generate unit tests, integration tests, and edge cases for your functions and classes.

๐Ÿ“–

Documentation

Generate docstrings, README files, API docs, and inline comments that actually make sense.

๐Ÿ–ผ๏ธ

Copilot Vision

Feed UI mockups, screenshots, or diagrams and get working HTML, CSS, and code โ€” turn designs into functional prototypes instantly.

Get Started in 60 Seconds

1

Choose Your Surface

Pick an IDE, the CLI, or github.com โ€” your Copilot subscription works everywhere.

2

Install & Sign In

Install the extension or CLI, sign in with your GitHub account, and you're ready.

3

Pick a Model

Choose between GPT, Claude, Gemini, or Codex โ€” each optimized for different tasks.

4

Start Building

Type, chat, delegate. Let Copilot handle the tedious parts while you focus on what matters.

Bonus: Level Up with the Community

The GitHub Copilot ecosystem goes beyond official features. Tap into community-curated resources to supercharge your workflow.

๐Ÿค–

Awesome GitHub Copilot

Community-contributed agents, prompts, instructions, skills, hooks, and more โ€” all in one place.

๐Ÿค– Agents

Specialized agents that integrate with MCP servers for enhanced workflows.

๐ŸŽฏ Prompts

Task-specific prompts for code generation, documentation, and problem-solving.

๐Ÿ“‹ Instructions

Coding standards and best practices that apply to your files and projects.

๐Ÿงฉ Skills & Collections

Bundled resources and curated sets organized by theme and workflow.

๐Ÿช Hooks

Automated workflows triggered by events during coding agent sessions.

๐Ÿ”Œ Plugins

Installable packages you can add via the Copilot CLI marketplace.

โญ 20k+ stars ๐Ÿ‘ฅ 230+ contributors ๐Ÿ“ฆ Installable via MCP Server

Your AI Pair Programmer Is Ready.

You've got the subscription. Now use it everywhere.