Bundle optimization
Skill a5c-ai/babysitter/library/specializations/web-development/skills/bundle-optimization
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill bundle-optimizationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Bundle analysis, code splitting, tree shaking, and size optimization.
SKILL.md
1.0 KB, as published. Nobody here has run it
Bundle Optimization Skill
Expert assistance for JavaScript bundle optimization.
Capabilities
- Analyze bundle size
- Implement code splitting
- Configure tree shaking
- Optimize dependencies
- Set up lazy loading
Analysis
# webpack-bundle-analyzer
npx webpack-bundle-analyzer stats.json
# source-map-explorer
npx source-map-explorer dist/*.js
Code Splitting
// Route-based splitting
const Dashboard = lazy(() => import('./pages/Dashboard'));
// Library splitting
const { Chart } = await import('chart.js');
Target Processes
- bundle-optimization
- performance-improvement
- build-optimization