{
  // 工具名称
  "name": "read_skill",
  // 工具标题(显示的中文名)
  "title": "读取技能",
  // 工具描述
  "description": "读取技能详细内容。确认有掌握的技能后，调用此工具查看技能的使用说明，按说明调用对应工具完成任务。",
  // 工具分类
  "category": "技能管理",
  // 工具分组
  "group": "skill",
  // 工具类型, 默认为"function"
  "type": "function",
  // 工具主文件路径
  "main": "./index.js",
  // 工具参数，必要配置，让AI知道需要哪些参数
  "params": [
    {
      "name": "skill_name",
      "description": "技能名称(英文名, 唯一标识)",
      "type": "string",
      "required": true
    }
  ],
  "returns": [
    {
        "name": "content",
        "type": "string",
        "description": ""
      },
    {
      "name": "code",
      "description": "操作结果码",
      "type": "number",
      "default": 0
    },
    {
      "name": "msg",
      "description": "操作结果描述",
      "type": "string",
      "default": "成功"
    }
  ]
}