Generate comprehensive analysis and documentation of entire codebase
/plugin marketplace add AojdevStudio/dev-utils-marketplace/plugin install core-essentials-commands@dev-utils-marketplace# Comprehensive Codebase Analysis ## Project Discovery Phase ### Directory Structure !`find . -type d -not -path "./node_modules/*" -not -path "./.git/*" -not -path "./dist/*" -not -path "./build/*" -not -path "./.next/*" -not -path "./coverage/*" | sort` ### Complete File Tree !`eza --tree --all --level=4 --ignore-glob='node_modules|.git|dist|build|.next|coverage|*.log'` ### File Count and Size Analysis - Total files: !`find . -type f -not -path "./node_modules/*" -not -path "./.git/*" | wc -l` - Code files: !`find . -name "*.js" -o -name "*.ts" -o -name "*.jsx" -o -name "*.tsx" -o -na...