repo_languages
Returns per-language node counts for the currently indexed repository. Powers the Languages panel in VS Code.
Input schema
{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "Absolute path to the repository root. Defaults to the daemon's primary repo."
}
}
}
Output
Tab-separated lines, one per language: language\tcount
typescript 18432
rust 4201
python 2874
When to use
- Audit which languages are contributing nodes to the graph.
- Detect languages that are present in the repo but have zero nodes (indicates a missing or broken language tool).