Files
stack/plugins/macp/openclaw.plugin.json
Jarvis 01259f56cd
Some checks failed
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/pr/ci Pipeline failed
feat(oc-plugin): add MACP ACP runtime backend
2026-03-29 23:21:28 -05:00

29 lines
859 B
JSON

{
"id": "macp",
"name": "MACP Runtime",
"description": "Registers the macp ACP runtime backend and dispatches Pi turns through the MACP Pi runner.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"defaultModel": {
"type": "string",
"description": "Default Pi model in provider/model format. Defaults to openai/gpt-5-mini."
},
"systemPrompt": {
"type": "string",
"description": "Optional system prompt prepended to each Pi turn."
},
"timeoutMs": {
"type": "number",
"minimum": 1,
"description": "Maximum turn runtime in milliseconds. Defaults to 300000."
},
"logDir": {
"type": "string",
"description": "Directory for Pi runtime logs. Defaults to the plugin state dir."
}
}
}
}