Files
openclaw/extensions/kilocode/openclaw.plugin.json
2026-04-28 04:33:47 +01:00

72 lines
1.7 KiB
JSON

{
"id": "kilocode",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["kilocode"],
"modelPricing": {
"providers": {
"kilocode": {
"openRouter": {
"passthroughProviderModel": true
},
"liteLLM": {
"passthroughProviderModel": true
}
}
}
},
"providerAuthEnvVars": {
"kilocode": ["KILOCODE_API_KEY"]
},
"providerAuthChoices": [
{
"provider": "kilocode",
"method": "api-key",
"choiceId": "kilocode-api-key",
"choiceLabel": "Kilo Gateway API key",
"choiceHint": "API key (OpenRouter-compatible)",
"groupId": "kilocode",
"groupLabel": "Kilo Gateway",
"groupHint": "API key (OpenRouter-compatible)",
"optionKey": "kilocodeApiKey",
"cliFlag": "--kilocode-api-key",
"cliOption": "--kilocode-api-key <key>",
"cliDescription": "Kilo Gateway API key"
}
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
},
"modelCatalog": {
"providers": {
"kilocode": {
"baseUrl": "https://api.kilo.ai/api/gateway/",
"api": "openai-completions",
"models": [
{
"id": "kilo/auto",
"name": "Kilo Auto",
"reasoning": true,
"input": ["text", "image"],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 128000
}
]
}
},
"discovery": {
"kilocode": "refreshable"
}
}
}