Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


---
Expand Down