What problem does it solve? Managing JavaScript/TypeScript projects typically requires juggling separate tools for running code, installing packages, bundling, and testing. This Skill consolidates those workflows into Bun's single unified toolchain, helping you execute scripts, manage dependencies, build bundles, and run tests correctly. ## Core Features & Use Cases - Script Execution & Dependency Management: Run TypeScript files directly with bun run, install packages with bun install, and configure behavior via bunfig.toml. - Bundling & Testing: Build production bundles with bun build, compile standalone executables, and run Jest-compatible tests with bun test. - Use Case: You are scaffolding a new TypeScript API server. Use this Skill to initialize the project with bun init, add dependencies, start an HTTP server with Bun.serve(), write tests, and ship a compiled single-file executable. ## Quick Start Use the bun skill to initialize a new TypeScript project, install its dependencies, and run the test suite.