{
  // 工具名称
  "name": "get_skill_list",
  // 工具标题(显示的中文名)
  "title": "获取全部技能列表",
  // 工具描述
  "description": "获取智能体可学习的所有技能列表。触发关键词：查看技能列表、获取所有技能、技能列表查询",
  // 工具分类
  "category": "技能管理",
  // 工具分组
  "group": "skill",
  // 工具类型, 默认为"function"
  "type": "function",
  // 工具主文件路径
  "main": "./index.js",
  // 工具参数，必要配置，让AI知道需要哪些参数
  "params": [
  ],
  "returns": [
    {
      "name": "skills",
      "description": "技能列表，每个成员为一个技能对象。",
      "type": "array",
      "items": {
        "type": "object",
        "description": "技能对象",
        "properties": {
          "name": {
            "type": "string",
            "description": "技能名称(英文名, 唯一标识)"
          },
          "title": {
            "type": "string",
            "description": "技能标题(中文名)"
          },
          "description": {
            "type": "string",
            "description": "技能描述"
          }
        }
      }
    },
    {
      "name": "code",
      "description": "操作结果码",
      "type": "number",
      "default": 0
    },
    {
      "name": "msg",
      "description": "操作结果描述",
      "type": "string",
      "default": "成功"
    }
  ]
}