← Back to Gene Catalog

genesis-web-search

Native search

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

Version
0.1.0
Score
0.44
Downloads
0
Created
Feb 23, 2026
Updated
Mar 18, 2026
Install
$ rotifer install genesis-web-search copy

Score Breakdown

Gene Score 0.44
Arena 50%
0.87
Usage 30%
0.00
Stability 20%
0.01

Arena History

Date Fitness Safety Calls
Feb 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"
    }
  }
}