openclaw/extensions/synthetic/openclaw.plugin.json
Peter Steinberger 80537c1ba4
feat(macos): load provider catalog during AI onboarding (#101132)
* feat(macos): load onboarding providers from gateway

* test(crestodian): widen setup config mock

* fix(crestodian): satisfy onboarding lint gate

* chore(macos): refresh onboarding localization inventory

* test(plugins): cover guided Copilot secret metadata
2026-07-06 20:57:56 +01:00

37 lines
862 B
JSON

{
"id": "synthetic",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["synthetic"],
"setup": {
"providers": [
{
"id": "synthetic",
"envVars": ["SYNTHETIC_API_KEY"]
}
]
},
"providerAuthChoices": [
{
"provider": "synthetic",
"method": "api-key",
"choiceId": "synthetic-api-key",
"appGuidedSecret": true,
"choiceLabel": "Synthetic API key",
"groupId": "synthetic",
"groupLabel": "Synthetic",
"groupHint": "Anthropic-compatible (multi-model)",
"optionKey": "syntheticApiKey",
"cliFlag": "--synthetic-api-key",
"cliOption": "--synthetic-api-key <key>",
"cliDescription": "Synthetic API key"
}
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}