Version history

1 version on record. Newest first; the live version sits at the top with a live indicator.

  1. Live 630eba33c170
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Lexical full-text search across all indexed substrate artifacts.",
      "runtime": "skill_call",
      "runtime_config": {
        "verb": "scidex.search"
      },
      "input_schema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 100,
            "minimum": 1
          },
          "query": {
            "type": "string",
            "description": "Search text. Tokenized by Postgres tsquery."
          },
          "types": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Optional filter to specific artifact types."
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "ref": {
                  "type": "object"
                },
                "score": {
                  "type": "number"
                },
                "title": {
                  "type": "string"
                },
                "snippet": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "examples": [
        {
          "input": {
            "query": "LRRK2 G2019S"
          },
          "description": "Find artifacts mentioning LRRK2 G2019S."
        },
        {
          "input": {
            "query": "Parkinson's disease",
            "types": [
              "hypothesis",
              "knowledge_gap"
            ]
          },
          "description": "Type-filtered search."
        }
      ],
      "lifecycle_state": "active"
    }