index_local_project
Index a local project directory into a vector database to enable semantic code search and analysis across your codebase.
Instructions
Index a local project directory into the vector database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exclude_patterns | No | File patterns to exclude (optional) | |
include_patterns | No | File patterns to include (optional) | |
project_name | Yes | Name for the project (used as identifier) | |
project_path | Yes | Absolute path to the local project directory |
Input Schema (JSON Schema)
{
"properties": {
"exclude_patterns": {
"description": "File patterns to exclude (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"include_patterns": {
"description": "File patterns to include (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"project_name": {
"description": "Name for the project (used as identifier)",
"type": "string"
},
"project_path": {
"description": "Absolute path to the local project directory",
"type": "string"
}
},
"required": [
"project_path",
"project_name"
],
"type": "object"
}