From 097dde69027d76b14df2d3759a6560d7ace38266 Mon Sep 17 00:00:00 2001 From: Dan Wahlin Date: Sat, 4 Apr 2026 04:52:38 -0700 Subject: [PATCH] docs: add Critic agent and built-in skills to course content - Chapter 04: Add Critic agent to the built-in agents table (v1.0.18) - Chapter 05: Add built-in CLI skills as a third skill location (v1.0.17) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- 04-agents-custom-instructions/README.md | 1 + 05-skills/README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/04-agents-custom-instructions/README.md b/04-agents-custom-instructions/README.md index a84d889..71e8f1a 100644 --- a/04-agents-custom-instructions/README.md +++ b/04-agents-custom-instructions/README.md @@ -69,6 +69,7 @@ Never used or made an agent? Here's all you need to know to get started for this | **Init** | `/init` | Generates project configuration files (instructions, agents) | | **Explore** | *Automatic* | Used internally when you ask Copilot to explore or analyze the codebase | | **Task** | *Automatic* | Executes commands like tests, builds, lints, and dependency installs | +| **Critic** | *Automatic (experimental)* | Automatically reviews plans and complex implementations using a complementary model to catch errors early. Available when using Claude models. |
diff --git a/05-skills/README.md b/05-skills/README.md index 1369aba..eecfdb9 100644 --- a/05-skills/README.md +++ b/05-skills/README.md @@ -277,6 +277,7 @@ Copilot automatically scans these locations for skills: |----------|-------| | `.github/skills/` | Project-specific (shared with team via git) | | `~/.copilot/skills/` | User-specific (your personal skills) | +| Built into the CLI | Bundled with the CLI itself (e.g., a guide for customizing the Copilot cloud agent environment) | ### Skill Structure