get_file_metadata
Retrieve metadata for specific files within a project by providing the project name and file path. Supports code analysis and context management using tree-sitter.
Instructions
Get metadata for a file.
Args:
project: Project name
path: File path relative to project root
Returns:
File metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
},
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"project",
"path"
],
"title": "get_file_metadataArguments",
"type": "object"
}