Detect the programming language of each included file by extension and add a __stats__ block to the output summarising the language distribution. Helps LLMs understand the tech stack at a glance without needing to read individual files.
Example:
{
"__stats__": {
"totalFiles": 89,
"languages": { "TypeScript": 41, "JSON": 18, "Markdown": 12, "CSS": 9 }
},
"src/cli.ts": "...",
...
}
Priority: Low
Detect the programming language of each included file by extension and add a
__stats__block to the output summarising the language distribution. Helps LLMs understand the tech stack at a glance without needing to read individual files.Example:
{ "__stats__": { "totalFiles": 89, "languages": { "TypeScript": 41, "JSON": 18, "Markdown": 12, "CSS": 9 } }, "src/cli.ts": "...", ... }Priority: Low