with one click
bundler-analyze
Analyze JS bundle size with Vite/Webpack analyzers
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Analyze JS bundle size with Vite/Webpack analyzers
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
| name | bundler-analyze |
| description | Analyze JS bundle size with Vite/Webpack analyzers |
Use the bash tool to analyze JavaScript bundle sizes.
Node.js (required for npx):
brew install nodesudo apt install nodejs npmRun npm run build first to generate stats; then use npx with vite-bundle-visualizer, webpack-bundle-analyzer, etc.
npx vite-bundle-visualizer 2>/dev/null
# generates stats.html
npx rollup-plugin-visualizer 2>/dev/null
npx webpack-bundle-analyzer stats.json 2>/dev/null
# First generate stats:
npx webpack --profile --json > stats.json
# Check build output sizes
ls -lhS dist/assets/*.js 2>/dev/null | head -20
ls -lhS dist/assets/*.css 2>/dev/null | head -10
# Total bundle size
du -sh dist/ 2>/dev/null
npx import-cost <file.ts> 2>/dev/null