seroost_search
Search indexed codebases using semantic or fuzzy matching to find functions, classes, variables, or code patterns with ranked results including line numbers and file paths.
Instructions
Search through indexed codebase using semantic/fuzzy matching. Returns ranked results with line numbers, file paths, and relevance scores. Ideal for finding functions, classes, variable usage, or code patterns across the entire project including dependencies.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search term or phrase to find in the codebase. Can be function names, variable names, code snippets, or natural language descriptions of functionality. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search term or phrase to find in the codebase. Can be function names, variable names, code snippets, or natural language descriptions of functionality.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}