harnessed_agent/wwwroot/deploy_skill.ui
2026-04-16 15:40:17 +08:00

75 lines
1.7 KiB
XML

{
"widgettype": "Dialog",
"options": {
"title": "Deploy Remote Skill",
"width": "600px",
"height": "400px"
},
"subwidgets": [
{
"widgettype": "Form",
"id": "deploy_form",
"options": {
"fields": [
{"name": "skill_id", "label": "Skill ID", "readonly": true, "hidden": true},
{"name": "skill_content", "label": "Skill Content (SKILL.md)", "type": "textarea", "height": "250px", "required": true}
]
}
},
{
"widgettype": "ButtonBar",
"options": {
"buttons": [
{
"id": "deploy_submit",
"text": "Deploy",
"icon": "upload-cloud"
},
{
"id": "deploy_cancel",
"text": "Cancel",
"icon": "x"
}
]
},
"binds": [
{
"wid": "deploy_submit",
"event": "click",
"actiontype": "callfunction",
"fname": "hermes_manage_remote_skills",
"params": {
"action": "deploy",
"skill_id": "${skill_id}$",
"skill_content": "${skill_content}$"
},
"target": "deploy_result",
"method": "set_text"
},
{
"wid": "deploy_cancel",
"event": "click",
"actiontype": "close_dialog"
}
]
},
{
"widgettype": "Label",
"id": "deploy_result",
"options": {
"text": "",
"height": "60px",
"overflow": "auto"
}
}
],
"binds": [
{
"wid": "self",
"event": "loaded",
"actiontype": "load_url_params",
"target": "deploy_form",
"method": "load_data"
}
]
}