From 29b520b9146eeba7872c8e287e6ed4604b5fba5b Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Wed, 1 Apr 2026 15:09:23 -0700 Subject: [PATCH 1/5] Update README files to replace "Copilot coding agent" with "Copilot cloud agent" --- 01-setup-and-first-steps/README.md | 2 +- 03-development-workflows/README.md | 2 +- 05-skills/README.md | 2 +- appendices/ci-cd-integration.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/01-setup-and-first-steps/README.md b/01-setup-and-first-steps/README.md index 4b4e633..74909ca 100644 --- a/01-setup-and-first-steps/README.md +++ b/01-setup-and-first-steps/README.md @@ -392,7 +392,7 @@ That's it for getting started! As you become comfortable, you can explore additi | Command | What It Does | |---------|--------------| -| `/delegate` | Hand off task to Copilot coding agent on GitHub (agent in the cloud) | +| `/delegate` | Hand off task to Copilot cloud agent on GitHub | | `/fleet` | Split a complex task into parallel subtasks for faster completion | | `/model` | Show or switch AI model | | `/tasks` | View background subagents and detached shell sessions | diff --git a/03-development-workflows/README.md b/03-development-workflows/README.md index 1fadca5..f732274 100644 --- a/03-development-workflows/README.md +++ b/03-development-workflows/README.md @@ -659,7 +659,7 @@ $(git diff main..HEAD)" ### Using /delegate for Background Tasks -The `/delegate` command hands off work to the Copilot coding agent on GitHub. Use the `/delegate` slash command (or the `&` shortcut) to offload a well-defined task to a background agent. +The `/delegate` command hands off work to the Copilot cloud agent on GitHub. Use the `/delegate` slash command (or the `&` shortcut) to offload a well-defined task to a background agent. ```bash copilot diff --git a/05-skills/README.md b/05-skills/README.md index b215015..b4b942c 100644 --- a/05-skills/README.md +++ b/05-skills/README.md @@ -2,7 +2,7 @@ > **What if Copilot could automatically apply your team's best practices without you having to explain them every time?** -In this chapter, you'll learn about Agent Skills: folders of instructions that Copilot automatically loads when relevant to your task. While agents change *how* Copilot thinks, skills teach Copilot *specific ways to complete tasks*. You'll create a security audit skill that Copilot applies whenever you ask about security, build team-standard review criteria that ensure consistent code quality, and learn how skills work across Copilot CLI, VS Code, and the Copilot coding agent. +In this chapter, you'll learn about Agent Skills: folders of instructions that Copilot automatically loads when relevant to your task. While agents change *how* Copilot thinks, skills teach Copilot *specific ways to complete tasks*. You'll create a security audit skill that Copilot applies whenever you ask about security, build team-standard review criteria that ensure consistent code quality, and learn how skills work across Copilot CLI, VS Code, and the Copilot cloud agent. ## 🎯 Learning Objectives diff --git a/appendices/ci-cd-integration.md b/appendices/ci-cd-integration.md index ba150ed..2a74d93 100644 --- a/appendices/ci-cd-integration.md +++ b/appendices/ci-cd-integration.md @@ -123,7 +123,7 @@ For consistent reviews across your team, create a shared configuration: ## Alternative: PR Review Bot -For more sophisticated review workflows, consider using the Copilot coding agent: +For more sophisticated review workflows, consider using the Copilot cloud agent: ```yaml # .github/workflows/copilot-agent-review.yml From 246a2d3a0aaa62a395eb79afefc2357d73015b7d Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Wed, 1 Apr 2026 15:11:17 -0700 Subject: [PATCH 2/5] Update README to clarify Copilot reference --- 01-setup-and-first-steps/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-setup-and-first-steps/README.md b/01-setup-and-first-steps/README.md index 74909ca..8dc2616 100644 --- a/01-setup-and-first-steps/README.md +++ b/01-setup-and-first-steps/README.md @@ -392,7 +392,7 @@ That's it for getting started! As you become comfortable, you can explore additi | Command | What It Does | |---------|--------------| -| `/delegate` | Hand off task to Copilot cloud agent on GitHub | +| `/delegate` | Hand off task to GitHub Copilot cloud agent | | `/fleet` | Split a complex task into parallel subtasks for faster completion | | `/model` | Show or switch AI model | | `/tasks` | View background subagents and detached shell sessions | From 3c5b559dd18b62ba190dc0d5712d936d3247b0b2 Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Wed, 1 Apr 2026 15:12:32 -0700 Subject: [PATCH 3/5] Update README.md --- 03-development-workflows/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-development-workflows/README.md b/03-development-workflows/README.md index f732274..befa2fc 100644 --- a/03-development-workflows/README.md +++ b/03-development-workflows/README.md @@ -659,7 +659,7 @@ $(git diff main..HEAD)" ### Using /delegate for Background Tasks -The `/delegate` command hands off work to the Copilot cloud agent on GitHub. Use the `/delegate` slash command (or the `&` shortcut) to offload a well-defined task to a background agent. +The `/delegate` command hands off work to the GitHub Copilot cloud agent. Use the `/delegate` slash command (or the `&` shortcut) to offload a well-defined task to a background agent. ```bash copilot From cbb260a5debe9da1a36b1d994cf874ddf845ceac Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Wed, 1 Apr 2026 15:13:38 -0700 Subject: [PATCH 4/5] Update README to reference GitHub Copilot --- 05-skills/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-skills/README.md b/05-skills/README.md index b4b942c..1369aba 100644 --- a/05-skills/README.md +++ b/05-skills/README.md @@ -2,7 +2,7 @@ > **What if Copilot could automatically apply your team's best practices without you having to explain them every time?** -In this chapter, you'll learn about Agent Skills: folders of instructions that Copilot automatically loads when relevant to your task. While agents change *how* Copilot thinks, skills teach Copilot *specific ways to complete tasks*. You'll create a security audit skill that Copilot applies whenever you ask about security, build team-standard review criteria that ensure consistent code quality, and learn how skills work across Copilot CLI, VS Code, and the Copilot cloud agent. +In this chapter, you'll learn about Agent Skills: folders of instructions that Copilot automatically loads when relevant to your task. While agents change *how* Copilot thinks, skills teach Copilot *specific ways to complete tasks*. You'll create a security audit skill that Copilot applies whenever you ask about security, build team-standard review criteria that ensure consistent code quality, and learn how skills work across Copilot CLI, VS Code, and the GitHub Copilot cloud agent. ## 🎯 Learning Objectives From 4de9bdad10367207fe830b6a840132ea2203dd66 Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Wed, 1 Apr 2026 15:14:33 -0700 Subject: [PATCH 5/5] Correct 'Copilot' to 'GitHub Copilot' in documentation --- appendices/ci-cd-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appendices/ci-cd-integration.md b/appendices/ci-cd-integration.md index 2a74d93..176bd71 100644 --- a/appendices/ci-cd-integration.md +++ b/appendices/ci-cd-integration.md @@ -123,7 +123,7 @@ For consistent reviews across your team, create a shared configuration: ## Alternative: PR Review Bot -For more sophisticated review workflows, consider using the Copilot cloud agent: +For more sophisticated review workflows, consider using the GitHub Copilot cloud agent: ```yaml # .github/workflows/copilot-agent-review.yml