Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
"email": "copilot@github.com"
},
"plugins": [
{
"name": "azure",
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The URL points to a GitHub repository tree view (https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude) rather than a plugin artifact or distributable package. GitHub tree URLs are web UI links, not programmatic sources. If plugins need to be fetched from external repositories, the URL should point to a raw file, release artifact, or API endpoint that can be consumed programmatically. Consider using a URL like a release tarball, a raw file URL, or an npm package reference if the plugin is published.

Suggested change
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/archive/refs/heads/main.zip"

Copilot uses AI. Check for mistakes.
},
Comment on lines +14 to +17
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The source structure is inconsistent with the existing workiq plugin. The workiq plugin uses a simple string value for the source field (line 22: "source": "plugins/workiq"), while this Azure plugin uses an object with nested "source" and "url" fields. Consider either following the same pattern as workiq with a local path, or clarify if the nested object structure is intended for URL-based sources. If this is a new pattern for external plugins, it should be documented.

Suggested change
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
},
"source": "plugins/azure",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude",

Copilot uses AI. Check for mistakes.
"description": "Azure plugin for GitHub Copilot."
Comment on lines +12 to +18
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Azure plugin entry is missing the "version" field that is present in the workiq plugin (line 24). For consistency and to support versioning of plugins, consider adding a version field to the Azure plugin entry. If the version field is optional, this can be ignored, but if it's required for proper plugin management, it should be added.

Copilot uses AI. Check for mistakes.
},
{
"name": "workiq",
"source": "plugins/workiq",
Expand Down
Loading