-
Notifications
You must be signed in to change notification settings - Fork 3
Add Azure plugin #12
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
base: main
Are you sure you want to change the base?
Add Azure plugin #12
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 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -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" | ||||||||||||||
| }, | ||||||||||||||
|
Comment on lines
+14
to
+17
|
||||||||||||||
| "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
AI
Jan 24, 2026
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.
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.
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.
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.