mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 23:34:04 +00:00
40 lines
957 B
JSON
40 lines
957 B
JSON
{
|
|
"id": "copilot",
|
|
"name": "GitHub Copilot agent runtime",
|
|
"description": "Registers the GitHub Copilot agent runtime.",
|
|
"version": "2026.5.30",
|
|
"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
|
|
}
|
|
}
|
|
}
|