get_cached_context
Retrieve cached code context for a specified file path to optimize AI assistant token usage. Supports TypeScript, JavaScript, Python, Go, and Rust with minimal, relevant context extraction.
Instructions
Retrieve cached code context for a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheKey | No | Optional cache key for specific context | |
filePath | Yes | Path to the source file |
Input Schema (JSON Schema)
{
"properties": {
"cacheKey": {
"description": "Optional cache key for specific context",
"type": "string"
},
"filePath": {
"description": "Path to the source file",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}