v2.0.1: Remove dead getProjectLanguages function, bloat cleanup

This commit is contained in:
Alfred 2026-04-07 12:51:57 -04:00
parent 8af9a1cdcf
commit 5ab18db74e

View File

@ -37,12 +37,6 @@ function getProjectStructure() {
} catch (_) { return ''; }
}
function getProjectLanguages() {
const root = getWorkspaceRoot();
const exts = safeExec('find . -maxdepth 4 -type f -not -path "./.git/*" -not -path "./node_modules/*" -not -path "./.venv/*" -not -path "./vendor/*" | sed "s/.*\\.//" | sort | uniq -c | sort -rn | head -20', root);
return exts || '';
}
function detectProjectType() {
const root = getWorkspaceRoot();
const indicators = [];