From 3f2b56c16eaba531d5dc16981a73463bd8fc86a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Jan 2026 19:58:25 +0000 Subject: [PATCH] Automated documentation update [skip ci] --- src/github/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/github/README.md b/src/github/README.md index 7d23149..cd8ab51 100644 --- a/src/github/README.md +++ b/src/github/README.md @@ -25,6 +25,20 @@ Installs GitHub CLI (gh) with optional GitHub Copilot CLI and skills support - `github.vscode-pull-request-github` +## Copilot Skills Location +GitHub Copilot agent skills are installed to the user scope directory `~/.copilot/skills` as documented in [Copilot Agent Skills](https://code.visualstudio.com/docs/copilot/customization/agent-skills). This feature downloads skills during container creation so they are ready for Copilot to discover. + +Example: +```json +{ + "features": { + "ghcr.io/duplocloud/devcontainers/github:1": { + "skills": "tf-module,devcontainers" + } + } +} +``` +This installs skills into `~/.copilot/skills/` inside the container. ---