mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
75dbe52e3e
* 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
54 lines
1.3 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|