Agent skill
esbuild
esbuild extremely fast bundler. Use for fast builds.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/esbuild
SKILL.md
esbuild
esbuild changed the industry by proving that build tools could be 100x faster if written in Go/Rust. It is not just a bundler but a transpiler.
When to Use
- Pre-bundling: Used by Vite to bundle dependencies.
- Lambda Bundling: Creating small, single-file bundles for AWS Lambda.
- Speed: When Webpack takes 5 mins, esbuild takes 200ms.
Core Concepts
Go
Written in Go, compiled to native code. No JS overhead.
API
Simple, minimal API. esbuild.build({ ... }).
Plugins
Allows intercepting imports, but limited compared to Rollup/Webpack (by design).
Best Practices (2025)
Do:
- Use for TS Transpilation: It strips types instantly.
- Target
esnext: Let it output modern code for modern browsers.
Don't:
- Don't expect Type Checking: esbuild strips types; it does not check them. Run
tsc --noEmitseparately.
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?