diff --git a/01-setup-and-first-steps/README.md b/01-setup-and-first-steps/README.md index 8dc2616..f87305e 100644 --- a/01-setup-and-first-steps/README.md +++ b/01-setup-and-first-steps/README.md @@ -431,7 +431,7 @@ That's it for getting started! As you become comfortable, you can explore additi | `/rewind` | Open a timeline picker to roll back to any earlier point in the conversation | | `/usage` | Display session usage metrics and statistics | | `/session` | Show session info and workspace summary | -| `/share` | Export session as markdown file or GitHub gist | +| `/share` | Export session as markdown file, GitHub gist, or self-contained HTML file | ### Help and Feedback diff --git a/02-context-conversations/README.md b/02-context-conversations/README.md index 2125a8a..aac4465 100644 --- a/02-context-conversations/README.md +++ b/02-context-conversations/README.md @@ -470,6 +470,9 @@ copilot > /share gist # Creates a GitHub gist with the session + +> /share html ./my-session.html +# Exports session as a self-contained interactive HTML file ``` diff --git a/05-skills/README.md b/05-skills/README.md index 1369aba..c1a4770 100644 --- a/05-skills/README.md +++ b/05-skills/README.md @@ -267,7 +267,7 @@ Build your own skills from SKILL.md files. ## Skill Locations -Skills are stored in `.github/skills/` (project-specific) or `~/.copilot/skills/` (user level). +Skills are stored in `.github/skills/` (project-specific), `~/.copilot/skills/` (user level), or come **built-in** with the CLI itself. ### How Copilot Finds Skills @@ -275,9 +275,12 @@ Copilot automatically scans these locations for skills: | Location | Scope | |----------|-------| +| Built-in (ships with CLI) | Available to everyone, no setup needed | | `.github/skills/` | Project-specific (shared with team via git) | | `~/.copilot/skills/` | User-specific (your personal skills) | +> 💡 **Built-in skills**: Starting with v1.0.17, GitHub Copilot CLI ships with skills pre-installed. For example, the `customizing-copilot-cloud-agents-environment` skill provides a guide for setting up the Copilot cloud agent environment. Run `/skills list` to see all available skills, including built-in ones. + ### Skill Structure Each skill lives in its own folder with a `SKILL.md` file. You can optionally include scripts, examples, or other resources: @@ -841,7 +844,7 @@ Run `/skills reload` after creating or editing skills to ensure changes are pick 1. **Skills are automatic**: Copilot loads them when your prompt matches the skill's description 2. **Direct invocation**: You can also invoke skills directly with `/skill-name` as a slash command 3. **SKILL.md format**: YAML frontmatter (name, description, optional license) plus markdown instructions -4. **Location matters**: `.github/skills/` for project/team sharing, `~/.copilot/skills/` for personal use +4. **Location matters**: Built-in skills ship with the CLI; `.github/skills/` for project/team sharing; `~/.copilot/skills/` for personal use 5. **Description is key**: Write descriptions that match how you naturally ask questions > 📋 **Quick Reference**: See the [GitHub Copilot CLI command reference](https://docs.github.com/en/copilot/reference/cli-command-reference) for a complete list of commands and shortcuts. diff --git a/06-mcp-servers/README.md b/06-mcp-servers/README.md index 5bcddf8..68bfdcf 100644 --- a/06-mcp-servers/README.md +++ b/06-mcp-servers/README.md @@ -896,6 +896,8 @@ Beyond `/mcp show`, there are several other commands for managing your MCP serve | `/mcp enable ` | Enable a disabled server | | `/mcp disable ` | Temporarily disable a server | | `/mcp delete ` | Remove a server permanently | +| `/mcp reload` | Reload MCP server configuration without restarting Copilot | +| `/mcp auth ` | Authenticate or re-authenticate an MCP server that uses OAuth | For most of this course, `/mcp show` is all you need. The other commands become useful as you manage more servers over time.