-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[bot] docs: update Learning Hub for Copilot CLI v1.0.15–v1.0.16 changes #1273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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`): | ||
|
|
||
|
Comment on lines
+145
to
+148
|
||
| ```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 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the Hook Events table, all event names are listed in camelCase (e.g.,
preToolUse,postToolUseFailure), but this new entry uses PascalCase (PermissionRequest). Since the doc later says both casing styles are accepted, consider listing the canonical/primary name in camelCase here (e.g.,permissionRequest) for consistency and to reduce confusion.This issue also appears on line 219 of the same file.