{
  "name": "shell",
  "title": "Shell命令执行",
  "description": "执行Shell命令，支持各种系统操作。触发关键词：执行Shell、运行Shell、shell命令、终端命令",
  "category": "系统管理",
  "group": "system",
  "type": "function",
  "main": "./index.js",
  "params": [
    {
      "name": "command",
      "description": "要执行的Shell命令",
      "type": "string",
      "required": true
    },
    {
      "name": "args",
      "description": "命令参数",
      "type": "string",
      "required": true
    }
  ],
  "returns": [
    {
      "name": "code",
      "type": "number",
      "description": "执行状态码，0表示成功"
    },
    {
      "name": "msg",
      "type": "string",
      "description": "执行状态成功时为空，失败时为错误信息"
    },
    {
      "name": "output",
      "type": "string",
      "description": "命令执行输出"
    }
  ]
}