{
  // 工具名称
  "name": "get_skill_detail",
  // 工具标题(显示的中文名)
  "title": "获取技能详情信息",
  // 工具描述
  "description": "获取技能的详细信息，包括用途、使用说明等。触发关键词：查看技能详情、获取技能信息、技能详情查询",
  // 工具分类
  "category": "技能管理",
  // 工具分组
  "group": "skill",
  // 工具类型, 默认为"function"
  "type": "function",
  // 工具主文件路径
  "main": "./index.js",
  // 工具参数，必要配置，让AI知道需要哪些参数
  "params": [
    {
      "name": "name",
      "description": "技能名称（英文名，唯一标识）。避免使用特殊字符或空格。避免添加_skill等后缀。",
      "type": "string",
      "required": true
    }
  ],
  // 工具返回值，非必要配置
  "returns": [
    {
      "name": "code",
      "type": "number",
      "description": "操作代码",
      "default": 0
    },
    {
      "name": "msg",
      "type": "string",
      "description": "操作消息",
      "default": ""
    },
    {
      "name": "skill",
      "type": "object",
      "description": "技能详情信息",
      "properties": {
        "skill_dir": {
          "type": "string",
          "description": "技能所在目录"
        },
        "name": {
          "type": "string",
          "description": "技能名称(英文名，唯一标识)"
        },
        "title": {
          "type": "string",
          "description": "技能标题(中文名)"
        },
        "description": {
          "type": "string",
          "description": "技能描述"
        },
        "group": {
          "type": "string",
          "description": "技能分组"
        },
        "type": {
          "type": "string",
          "description": "技能类型"
        },
        "prompt_file": {
          "type": "object",
          "description": "技能提示词文件"
        }
      }
    }
  ]
}
