Install
openclaw skills install claw-security-panelOpenClaw 安全检查面板(Python 3.7+ 兼容)。用户发送"启动安全检查"时触发,按四大类检查:接入安全、权限安全、执行安全、韧性安全。生成带 token 的临时 HTML 页面,含风险详情子页面和一键修复功能。
openclaw skills install claw-security-panel用户发送以下消息时触发:
http://127.0.0.1:18790/claw_security_pannel?token=<token>
http://127.0.0.1:18790/claw_security_pannel/risks?token=<token>
获取完整检查报告 JSON
{
"token": "<token>",
"riskIds": ["id1", "id2"]
}
响应:
{
"success": true,
"fixed": ["风险项 1", "风险项 2"],
"errors": [],
"message": "成功修复 2 项"
}