What problem does it solve? It provides structured, phase-by-phase guidance for working with Webpack build pipelines, helping developers diagnose configuration issues, specify build changes, implement them safely, and audit bundle output. ## Core Features & Use Cases - Build Diagnosis: Reviews webpack.config.js, active loaders, plugins, and current bundle size using webpack-bundle-analyzer. - Implementation Conventions: Defines an ordered workflow for modifying shared, dev, and production Webpack configs with verification builds at each step. - Bundle Auditing: Checks production bundle growth, duplicate modules, source map configuration, and leaked environment variables. - Use Case: When adding a new feature that requires a new file type, use this Skill to specify the required loader, update webpack.common.js, verify both dev and prod builds, and confirm the bundle did not grow more than 10%. ## Quick Start Ask the assistant to review the current Webpack configuration and analyze the production bundle size for regressions.