{
"id": "maple-openclaw-plugin",
"name": "Maple Proxy",
"description": "Run Maple TEE-backed AI models locally via maple-proxy",
"version": "0.1.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"port": { "type": "number" },
"backendUrl": { "type": "string" },
"debug": { "type": "boolean" },
"version": { "type": "string" }
},
"required": ["apiKey"]
},
"uiHints": {
"apiKey": { "label": "Maple API Key", "sensitive": true },
"port": { "label": "Local Port", "placeholder": "8787" },
"backendUrl": { "label": "Backend URL", "placeholder": "https://enclave.trymaple.ai" },
"debug": { "label": "Debug Logging" },
"version": { "label": "Binary Version", "placeholder": "latest" }
},
"skills": ["./skills/maple-proxy-skill"]
}