seroost_set_index
Configure the root directory for semantic code search indexing to enable natural language queries across your codebase.
Instructions
Configure the target directory for Seroost indexing. This sets the root path that will be indexed when the index command is run. Must be called before indexing to specify which codebase directory to search.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Absolute path to the directory containing the codebase to index. This directory and all its subdirectories will be searchable after indexing. |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute path to the directory containing the codebase to index. This directory and all its subdirectories will be searchable after indexing.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}