mirror of
https://github.com/github/awesome-copilot.git
synced 2026-05-02 05:05:57 +00:00
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:
committed by
GitHub
parent
46bef1b61a
commit
b80ea43e62
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user