Your central command for mastering GitHub Copilot, Agents, Edits, Chat, MCP, and more.
This repo contains organized demos grouped by Copilot mode and focus area. The current release includes backend-focused demos, with frontend and MCP content coming soon.
copilot-mission-control/
│
├── README.md
├── .gitignore
├── docs/
│ ├── overview.md
│ ├── tips-and-tricks.md
│ └── faq.md
│
├── assets/
│ └── mission-control-logo.png
│
├── chat/
│ └── codebase-explain-backend/
│ ├── README.md
│ └── prompts/
│ └── explain-codebase.md
│
├── edits/
│ └── backend-safe-refactors/
│ ├── README.md
│ └── prompts/
│ └── refactor-validations.md
│
├── integrations/
│ └── ci-cd/
│ └── backend-test-and-observability/
│ ├── README.md
│ └── snippets/
│ ├── sample-ci-notes.md
│ └── curl-health.txt
│
├── agents/
│ └── backend-e2e-automation/
│ ├── README.md
│ └── prompts/
│ └── status-update-mission.md
│
├── backend/
│ ├── WrightBrothersApi/
│ └── WrightBrothersApi.Tests/
│
└── frontend/
└── README.md
Copilot Mission Control is designed to make it easy to demo and learn GitHub Copilot capabilities in a structured way. Each demo explains why it matters, which Copilot mode to use, and gives detailed steps for reproducibility.
- Codebase Explain, Backend
Use Copilot Chat to explore the Wright Brothers API, understand its structure, and plan follow-up demos.
- Backend, Safe Refactors
Apply small, safe changes with Copilot Edits while maintaining behavior and readability.
- Backend Tests and Observability
Enhance backend health checks, structured logs, and test coverage with Copilot.
- Backend E2E Automation
Use Copilot Agent Mode to deliver an end-to-end backend feature with coordinated code, tests, and documentation.
- Clone this repo
- Open in VS Code with GitHub Copilot Chat, Edits, and Agent Mode enabled
- Pick a demo and follow its README
- Use the prompts exactly as given, or adapt them to your own project
- Backend Demos: ✅ Ready
- Frontend Demos: 🔄 In progress
- MCP Demos: 🔄 In progress
- Codebase Explain, Frontend
Use Copilot Chat to map the React app, data flow, and improvement targets.
- Frontend, Component Refactors
Extract smaller components, improve naming, and add type safety.
- Frontend API and State
Wire the UI to the backend API, add loading and error states, and test it.
- Frontend Flight Tracker with Leaflet.js
Visualize planes on a live map with filtering and auto refresh. - Frontend Hangar Bay Scheduler
Reservation UI for hangar bays with daily/weekly views. - Frontend Airport Density Heatmap
Leaflet heatmap of airport density with hub markers.