openclaw/extensions/copilot-proxy/openclaw.plugin.json
Tobias Oort 0307deacfa
feat(github-copilot): support GitHub Enterprise data-residency Copilot auth (#99221)
Adds GitHub Enterprise data-residency support to the existing bundled GitHub Copilot provider.

Maintainer proof:
- GitHub CI green on head 54010a6538f1543a7fcf161f0c46169bf059213b
- `check-lint`, `check-additional-extension-bundled`, and `check-shrinkwrap` passed in CI
- local `pnpm lint:extensions:bundled`, `pnpm lint`, and focused GitHub Copilot Vitest passed
- AWS Crabbox proof passed
- live microsoft.ghe.com device-flow/token-exchange/model-catalog proof passed

Co-authored-by: Tobias Oort <tobias.oort@ict.nl>
Co-authored-by: Gio Della-Libera <235387111+giodl73-repo@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-08 18:59:41 -07:00

28 lines
733 B
JSON

{
"id": "copilot-proxy",
"icon": "https://cdn.simpleicons.org/githubcopilot",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["copilot-proxy"],
"autoEnableWhenConfiguredProviders": ["copilot-proxy"],
"providerAuthChoices": [
{
"provider": "copilot-proxy",
"method": "local",
"choiceId": "copilot-proxy",
"choiceLabel": "Copilot Proxy",
"choiceHint": "Configure base URL + model ids",
"assistantPriority": 3,
"groupId": "copilot",
"groupLabel": "Copilot",
"groupHint": "GitHub, GitHub Enterprise + Local Proxy"
}
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}