30 lines
836 B
JSON
30 lines
836 B
JSON
|
|
{
|
||
|
|
"id": "atocore-capture",
|
||
|
|
"name": "AtoCore Capture",
|
||
|
|
"description": "Captures completed OpenClaw assistant turns to AtoCore interactions for reinforcement.",
|
||
|
|
"configSchema": {
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"baseUrl": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "Override AtoCore base URL. Defaults to ATOCORE_BASE_URL or http://dalidou:8100"
|
||
|
|
},
|
||
|
|
"minPromptLength": {
|
||
|
|
"type": "integer",
|
||
|
|
"minimum": 1,
|
||
|
|
"description": "Minimum user prompt length required before capture"
|
||
|
|
},
|
||
|
|
"maxResponseLength": {
|
||
|
|
"type": "integer",
|
||
|
|
"minimum": 100,
|
||
|
|
"description": "Maximum assistant response length to store"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"additionalProperties": false
|
||
|
|
},
|
||
|
|
"uiHints": {
|
||
|
|
"category": "automation",
|
||
|
|
"displayName": "AtoCore Capture"
|
||
|
|
}
|
||
|
|
}
|