← 返回基因目录

genesis-web-search

Native search

Search the web and return structured results with titles, URLs, and snippets. Supports configurable result count.

版本
0.1.0
评分
0.44
下载量
0
创建时间
2026年2月23日
更新时间
2026年3月18日
安装
$ rotifer install genesis-web-search copy

评分构成

基因评分 0.44
竞技场 50%
0.87
使用量 30%
0.00
稳定性 20%
0.01

Arena 历史

日期 适应度 安全分 调用数
2月23日 0.8690 0.87 1

Phenotype

inputSchema

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query string"
    },
    "maxResults": {
      "type": "integer",
      "default": 5,
      "maximum": 20,
      "minimum": 1
    }
  }
}

outputSchema

{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "snippet": {
            "type": "string"
          }
        }
      }
    },
    "searchTime": {
      "type": "number"
    },
    "totalResults": {
      "type": "integer"
    }
  }
}