Use repository Copilot settings to make plugins available automatically in the Copilot cloud agent (coding agent).
📖 Official docs: Finding and installing plugins · Plugin reference
Add this file to your repository at .github/copilot/settings.json:
{
"extraKnownMarketplaces": {
"copilot-plugins": {
"source": {
"source": "github",
"repo": "samueltauil/copilot-plugins"
}
}
},
"enabledPlugins": {
"PLUGIN-NAME@copilot-plugins": true
}
}- The Copilot cloud agent reads the repository's Copilot settings when it starts a session for that repository.
- Any plugins listed in
enabledPluginsare automatically installed for that session. - Agents, skills, hooks, and other supported plugin assets are then available to the cloud agent without any manual install step.
{
"extraKnownMarketplaces": {
"copilot-plugins": {
"source": {
"source": "github",
"repo": "samueltauil/copilot-plugins"
}
}
},
"enabledPlugins": {
"sdlc-agents@copilot-plugins": true,
"code-review-standards@copilot-plugins": true
}
}- Commit the settings file to the repository so new cloud-agent sessions can read it at startup.
- Existing sessions may need to be restarted to pick up changes.
- You can enable one plugin or many plugins in the same repository settings file.