get_project_context
Retrieve project-wide type information to enhance type inference and support accurate code analysis. Input the project directory path for comprehensive type context.
Instructions
Get project-wide type information for better type inference
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to the project directory |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the project directory",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}