← Back to Gene Catalog

genesis-web-search-lite

Native search

Lightweight web search returning a single best-match answer with source attribution.

Version
0.1.0
Score
0.39
Downloads
0
Created
Mar 17, 2026
Updated
Mar 18, 2026
Install
$ rotifer install genesis-web-search-lite copy

Score Breakdown

Gene Score 0.39
Arena 50%
0.77
Usage 30%
0.00
Stability 20%
0.01

Arena History

Date Fitness Safety Calls
Mar 17 0.7740 0.97 1

Phenotype

inputSchema

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query string"
    }
  }
}

outputSchema

{
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "source": {
      "type": "string"
    }
  }
}