# Power agentic workflows in your terminal with GitHub Copilot CLI

Source: https://www.youtube.com/watch?v=82jciNezDMY
Recap page: https://rapidrecap.app/video/82jciNezDMY
Generated: 2025-11-11T09:37:16.252+00:00

---
## Quick Overview

GitHub Copilot CLI empowers agentic workflows directly in the terminal by allowing users to describe tasks, which Copilot then translates into executable shell commands, scripts, and even manages repository operations like cloning and PR creation, significantly streamlining developer processes like debugging port conflicts and fixing CSS layout issues autonomously.

**Key Points:**
- GitHub Copilot CLI enables agentic workflows directly within the terminal, translating natural language descriptions into executable commands and scripts.
- The CLI was publicly previewed last month and is receiving daily improvements as part of the GitHub Copilot ecosystem expansion.
- The tool can execute complex multi-step tasks, such as cloning a repository, installing dependencies (e.g., npm install), running the development server, and identifying/killing processes occupying specific ports (like port 3000).
- Copilot CLI incorporates an Accessibility Reviewer agent that analyzes code changes (like fixing a CSS float issue) against WCAG standards and provides a compliance summary.
- The agent can review changes via git diff and even delegate the final steps, like creating a pull request to resolve an issue, to the Playwright MCP server.
- The presenter demonstrated how Copilot CLI handles complex setup tasks, port conflicts, and code fixes without requiring the user to look up documentation or remember specific command flags.
- Users are encouraged to install the CLI globally via 'npm install -g @github/copilot' and join the discussion on GitHub.

![Screenshot at 0:10: Ryan Hecht introducing the presentation topic: "Power agentic workflows in your terminal with GitHub Copilot CLI" on stage at the conference.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-00-10.png)

**Context:** Ryan Hecht, a Product Manager on the GitHub Copilot team, presented updates on the GitHub Copilot CLI during a conference (likely GitHub Universe '25, based on graphics). The presentation focused on how the CLI extends Copilot's AI capabilities beyond code editing and into the terminal environment, enabling users to automate complex, multi-step development workflows using natural language prompts.

## Detailed Analysis

Ryan Hecht introduced GitHub Copilot CLI, which allows developers to execute agentic workflows directly in the terminal by describing desired tasks in natural language. He demonstrated several capabilities, starting with setting up a sample project by having Copilot clone a repository, run npm install, and start the development server, despite a port 3000 conflict from a previous session which Copilot successfully identified and resolved using a derived 'lsf -i:3000 | xargs kill -9' command. A key feature showcased was the integration with an Accessibility Reviewer agent. When asked to fix a visual layout bug in a CSS file (where a submit button overlapped text), Copilot analyzed the code, identified the issue (absolute positioning causing overlap), suggested a fix (changing to float: right and adding a clear: both clearfix), and verified the fix against WCAG standards, noting compliance improvements. The agent then used the 'delegate' command to commit the changes, create a branch, and open a pull request asynchronously via the Playwright MCP server, demonstrating a fully automated workflow from bug identification to PR submission. Hecht emphasized that this level of automation across common development tasks—like debugging, setup, and code review—is the goal of the expanding Copilot ecosystem.

### Introduction to Copilot CLI

- Empowering agentic workflows in the terminal
- Translating natural language into executable commands and scripts
- Public preview launched last month with daily improvements.

### Demonstration

- Port Conflict Resolution: Copilot identified an existing process using port 3000 and autonomously generated and executed 'lsf -i:3000
- xargs kill -9' to resolve the conflict.

### Demonstration

- Bug Fixing and Accessibility Review: Copilot fixed a CSS layout bug by identifying incorrect 'position: absolute' styling, suggesting a 'float: right' change, and then running an 'AccessibilityReviewer' agent to verify WCAG compliance improvements.

### Agentic Workflow Delegation

- The 'delegate' command was used to commit changes, create a new branch, start the job, and open a draft Pull Request via the Playwright MCP server, all asynchronously.

### Tool Flags and Customization

- Examples of flags like '--allow-all-tools', '--model', '--add-dir', and '--deny-tool' show granular control over Copilot's environment and capabilities.

### Call to Action

- Users can install the CLI globally using 'npm install -g @github/copilot' and join the discussion at the provided GitHub link.

![Screenshot at 0:07: Title slide displaying the presentation topic: "Power agentic workflows in your terminal with GitHub Copilot CLI" and speaker Ryan Hecht.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-00-07.png)
![Screenshot at 0:47: Initial demonstration of Copilot CLI loading with its pixelated mascot and prompt, ready to accept a task.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-00-47.png)
![Screenshot at 0:57: Speaker prompts Copilot to find and kill a process using port 3000, demonstrating initial troubleshooting capability.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-00-57.png)
![Screenshot at 1:37: The terminal output showing Copilot's execution plan for setting up a project repository, including cloning and installing dependencies.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-01-37.png)
![Screenshot at 3:14: The visual bug in the 'fix-this.png' image, showing the 'Submit Feedback' button overlapping the 'Your Feedback' text area.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-03-14.png)
![Screenshot at 3:52: The Accessibility Reviewer agent analyzing the code changes and identifying a critical issue related to the CSS 'float: right' property causing a Clearfix problem.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-03-52.png)
![Screenshot at 7:19: The code editor view showing Copilot suggesting a fix in 'public/styles.css' by adding a clearfix pseudo-element to the '.form-group' container.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-07-19.png)
![Screenshot at 10:47: The delegation process where Copilot automatically creates a commit, a new branch, and opens a draft Pull Request on GitHub.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-10-47.png)
![Screenshot at 14:13: The final slide showing instructions to install the CLI and join the discussion community.](https://ss.rapidrecap.app/screens/82jciNezDMY/00-14-13.png)
