Files
openclaw/extensions/copilot/openclaw.plugin.json
T
Peter Steinberger 75dbe52e3e refactor: one code path behind doctor legacy-state migrations (#120716)
* refactor(doctor): prefer manifest route-state owners

* refactor(doctor): unify config repair declarations

* refactor(doctor): unify legacy state migrations

* fix(doctor): satisfy migration pipeline guards

* fix(plugin-sdk): keep doctor adapter inside boundary
2026-08-08 18:23:15 -07:00

54 lines
1.3 KiB
JSON

{
"id": "copilot",
"doctorContract": {
"configRepair": true
},
"sessionRouteStateOwners": [
{
"id": "copilot",
"label": "GitHub Copilot agent runtime",
"providerIds": ["github-copilot"],
"runtimeIds": ["copilot"],
"cliSessionKeys": ["copilot"],
"authProfilePrefixes": ["github-copilot:"]
}
],
"name": "GitHub Copilot agent runtime",
"description": "Registers the GitHub Copilot agent runtime.",
"icon": "https://cdn.simpleicons.org/githubcopilot",
"version": "2026.6.2",
"activation": {
"onStartup": false,
"onAgentHarnesses": ["copilot"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"pool": {
"type": "object",
"additionalProperties": false,
"properties": {
"idleTtlMs": {
"type": "number",
"minimum": 1,
"default": 300000
}
}
}
}
},
"uiHints": {
"pool": {
"label": "Client Pool",
"help": "Advanced GitHub Copilot agent runtime client pooling controls.",
"advanced": true
},
"pool.idleTtlMs": {
"label": "Idle Client TTL",
"help": "Milliseconds to keep an idle GitHub Copilot agent runtime client alive before disposal.",
"advanced": true
}
}
}