Generate comprehensive analysis and documentation of entire codebase
/plugin marketplace add ananddtyagi/cc-marketplace/plugin install analyze-codebase@cc-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/*"` ### Complete File Tree !`find . -type f -not -path "./node_modules/*" -not -path "./.git/*" -not -path "./dist/*" -not -path "./build/*" -not -path "./.next/*" -not -path "./coverage/*" -not -path "./*.log"` ### File Count and Size Analysis - Total files: !`find . -type f -not -path "./node_modules/*" -not -path "./.git/*"` - Code files: !`find ....