docs: update Learning Hub for Copilot CLI v1.0.15–v1.0.16 changes (#1273)

- Add PermissionRequest hook event to automating-with-hooks.md with
  practical CI example (new in v1.0.16)
- Add Ctrl+Q / Ctrl+Enter queue shortcut note to copilot-configuration-basics.md
  (Ctrl+D no longer queues as of v1.0.15)
- Add extraKnownMarketplaces config setting to installing-and-using-plugins.md
  (old 'marketplaces' setting removed in v1.0.16)
- Update lastUpdated dates on all three files

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-04-09 12:48:17 +10:00
committed by GitHub
parent 46bef1b61a
commit b80ea43e62
3 changed files with 59 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ title: 'Installing and Using Plugins'
description: 'Learn how to find, install, and manage plugins that extend GitHub Copilot CLI with reusable agents, skills, hooks, and integrations.'
authors:
- GitHub Copilot Learning Hub Team
lastUpdated: 2026-03-30
lastUpdated: 2026-04-02
estimatedReadingTime: '8 minutes'
tags:
- plugins
@@ -142,6 +142,23 @@ Or from a local path:
copilot plugin marketplace add /path/to/local-marketplace
```
### Sharing Marketplace Registrations Across a Team
To automatically register an additional marketplace for everyone working in a repository, add an `extraKnownMarketplaces` entry to your `.github/copilot-settings.json` (or `config.json`):
```json
{
"extraKnownMarketplaces": [
{
"name": "my-org-plugins",
"source": "my-org/internal-plugins"
}
]
}
```
With this in place, team members automatically get the `my-org-plugins` marketplace available without running a separate `marketplace add` command. This replaces the older `marketplaces` setting, which was removed in v1.0.16.
## Installing Plugins
### From Copilot CLI