Add enterprise managed server settings example#1721
Open
taylorreis wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a sample enterprise-managed Copilot CLI settings file (.github/copilot/settings.json) demonstrating the new public-preview enterprise plugin standards: registering an extra marketplace (github/agent-skills) and force-enabling the assign-issue-to-copilot@agent-skills plugin.
Changes:
- New
.github/copilot/settings.jsondeclaring anextraKnownMarketplacesentry forgithub/agent-skillsand anenabledPluginsentry forassign-issue-to-copilot@agent-skills.
Show a summary per file
| File | Description |
|---|---|
.github/copilot/settings.json |
New repo-level Copilot CLI settings example showcasing enterprise-managed plugin/marketplace configuration. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 2
Comment on lines
+2
to
+9
| "extraKnownMarketplaces": { | ||
| "agent-skills": { | ||
| "source": { | ||
| "source": "github", | ||
| "repo": "github/agent-skills" | ||
| } | ||
| } | ||
| }, |
Comment on lines
+1
to
+13
| { | ||
| "extraKnownMarketplaces": { | ||
| "agent-skills": { | ||
| "source": { | ||
| "source": "github", | ||
| "repo": "github/agent-skills" | ||
| } | ||
| } | ||
| }, | ||
| "enabledPlugins": { | ||
| "assign-issue-to-copilot@agent-skills": true | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Adds enterprise-managed settings currently supported as part of public preview: https://github.blog/changelog/2026-05-06-enterprise-managed-plugins-in-github-copilot-cli-are-now-in-public-preview/
Docs: https://docs.github.com/en/copilot/how-tos/administer-copilot/manage-for-enterprise/manage-agents/configure-enterprise-plugin-standards
Type of Contribution
Additional Notes
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.