agentsclimarketplace

Webpack optimize

Skill manastalukdar/ai-devstudio/skills/webpack-optimize

Professional development studio for Claude Code CLI

Install
npx -y skills add manastalukdar/ai-devstudio --skill webpack-optimize

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Webpack/Vite/esbuild configuration optimization for build performance

SKILL.md

7.0 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it

Webpack & Build Tool Optimizer

I'll analyze your build configuration and provide optimization recommendations to improve build speed and bundle size.

Arguments: $ARGUMENTS - specific build tool or focus area (e.g., "webpack", "vite", "production")

Strategic Analysis Process

<think> Build tool optimization requires careful consideration:
  1. Current State Analysis

    • What bundler is being used? (Webpack, Vite, esbuild, Rollup, Parcel)
    • What's the current build time and bundle size?
    • Are there obvious inefficiencies (no caching, poor splitting)?
    • What's the project type? (SPA, MPA, SSR, library)
  2. Optimization Opportunities

    • Bundle splitting and code splitting strategies
    • Tree shaking configuration effectiveness
    • Module resolution optimization
    • Plugin efficiency and redundancy
    • Loader configuration improvements
    • Caching strategies (filesystem cache, persistent cache)
  3. Risk Assessment

    • Breaking production builds with aggressive optimization
    • Introducing bugs through code splitting
    • Cache invalidation issues
    • Development experience degradation
    • Third-party plugin compatibility
  4. Implementation Strategy

    • Priority 1: Safe caching improvements (filesystem cache)
    • Priority 2: Code splitting and lazy loading
    • Priority 3: Plugin optimization
    • Priority 4: Advanced tree shaking
    • Priority 5: Experimental features </think>

Phase 1: Build Tool Detection

MANDATORY FIRST STEPS:

  1. Detect which build tool is in use
  2. Locate configuration files
  3. Analyze current build performance baseline
  4. Identify obvious inefficiencies

Let me detect your build tool and analyze configuration:

# Detect build tool
BUILD_TOOL=""
CONFIG_FILE=""

if [ -f "webpack.config.js" ] || [ -f "webpack.config.ts" ]; then
    BUILD_TOOL="webpack"
    CONFIG_FILE="webpack.config.js"
    echo "Detected: Webpack"
elif [ -f "vite.config.js" ] || [ -f "vite.config.ts" ]; then
    BUILD_TOOL="vite"
    CONFIG_FILE=$(ls vite.config.* 2>/dev/null | head -n1)
    echo "Detected: Vite"
elif [ -f "esbuild.config.js" ] || [ -f "esbuild.config.mjs" ]; then
    BUILD_TOOL="esbuild"
    CONFIG_FILE=$(ls esbuild.config.* 2>/dev/null | head -n1)
    echo "Detected: esbuild"
elif [ -f "rollup.config.js" ] || [ -f "rollup.config.mjs" ]; then
    BUILD_TOOL="rollup"
    CONFIG_FILE=$(ls rollup.config.* 2>/dev/null | head -n1)
    echo "Detected: Rollup"
else
    # Check package.json for build tools
    if grep -q "\"webpack\"" package.json 2>/dev/null; then
        BUILD_TOOL="webpack"
        echo "Detected: Webpack (via package.json)"
    elif grep -q "\"vite\"" package.json 2>/dev/null; then
        BUILD_TOOL="vite"
        echo "Detected: Vite (via package.json)"
    else
        echo "No build tool detected"
        exit 1
    fi
fi

echo "Build Tool: $BUILD_TOOL"
echo "Config File: $CONFIG_FILE"

Phase 2: Performance Baseline

I'll establish current performance metrics:

Build Time Measurement:

  • Development build time
  • Production build time
  • Hot reload performance
  • Cache hit rates

Bundle Analysis:

  • Total bundle size
  • Individual chunk sizes
  • Duplicate dependencies
  • Unused code percentage
  • Tree shaking effectiveness

I'll analyze your build configuration for:

  • Plugin usage and efficiency
  • Loader configurations
  • Code splitting strategy
  • Caching configuration
  • Source map settings
  • Minification settings

Phase 3: Optimization Recommendations

Based on detected build tool, I'll provide targeted optimizations:

Webpack Optimizations

Caching Improvements:

  • Enable persistent filesystem cache
  • Configure cache invalidation properly
  • Optimize module and chunk hashing
  • Use cache groups for vendor splitting

Code Splitting:

  • Implement intelligent split chunks configuration
  • Configure runtime chunk extraction
  • Set up dynamic imports for route-based splitting
  • Optimize chunk size limits

Performance Enhancements:

  • Configure thread-loader for parallel processing
  • Optimize module resolution (resolve.modules)
  • Use esbuild-loader for faster transpilation
  • Enable faster source map options (cheap-module-source-map)
  • Configure tree shaking side effects

Plugin Optimization:

  • Remove redundant plugins
  • Use production-optimized plugins only
  • Configure TerserPlugin efficiently
  • Optimize CSS extraction and minification

Vite Optimizations

Build Configuration:

  • Optimize dependency pre-bundling
  • Configure build target appropriately
  • Enable CSS code splitting
  • Optimize chunk size warnings

Development Experience:

  • Configure HMR boundaries
  • Optimize server options
  • Use native esbuild transforms
  • Configure proxy efficiently

Production Optimizations:

  • Configure Rollup output options
  • Enable advanced minification
  • Optimize asset inlining thresholds
  • Configure manual chunks for better caching

esbuild Optimizations

Performance Tuning:

  • Configure splitting strategy
  • Optimize tree shaking
  • Use incremental builds
  • Configure platform target
  • Enable metafile for analysis

Phase 4: Implementation Plan

I'll create prioritized optimization steps:

Quick Wins (Immediate Impact):

  1. Enable filesystem caching
  2. Update to latest build tool version
  3. Remove unused plugins/loaders
  4. Configure basic code splitting

Medium-Term Improvements:

  1. Implement route-based code splitting
  2. Optimize vendor chunk strategy
  3. Configure aggressive tree shaking
  4. Enable build parallelization

Advanced Optimizations:

  1. Implement dynamic imports throughout
  2. Configure sophisticated cache groups
  3. Enable experimental features
  4. Optimize for specific deployment targets

Phase 5: Validation & Measurement

After applying optimizations, I'll verify improvements:

Performance Metrics:

  • Measure new build times
  • Compare bundle sizes
  • Verify cache effectiveness
  • Check hot reload speed

Quality Assurance:

  • Ensure production build works
  • Verify no runtime errors
  • Check code splitting works correctly
  • Validate source maps function
  • Test development experience

Configuration Examples

I'll provide specific configuration snippets for your build tool:

Webpack Cache Configuration:

{
  cache: {
    type: 'filesystem',
    buildDependencies: {
      config: [__filename]
    }
  }
}

Split Chunks Optimization:

{
  optimization: {
    splitChunks: {
      chunks: 'all',
      cacheGroups: {
        vendor: {
          test: /[\\/]node_modules[\\/]/,
          name: 'vendors',
          priority: 10
        }
      }
    }
  }
}

Token Optimization

Expected range: 300–2,000 tokens (initial), 100 tokens (already optimized)

Caching: Caches optimization templates in .claude/cache/webpack-optimize/optimization-templates.json for 7 days.

Early exit: Returns immediately if webpack config is already optimally configured.

Patterns used: Grep-before-Read, early exit, template-based generation, caching

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,970. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.