What problem does it solve?
It helps you quickly scaffold a new Bun project with sensible TypeScript configuration so you can start building immediately without guessing settings.
Core Features & Use Cases
- Project bootstrapping with Bun: Runs Bun init and confirms prerequisites so the project starts correctly.
- TypeScript configuration by project type: Adjusts key compiler options (module resolution, strictness, bun types, JSX target) for CLI, web app, API server, or library use cases.
- Practical setup extras: Creates a clean project structure, .gitignore, .env.example, and starter scripts (dev/test/typecheck) plus a basic tests file.
Example: You need to spin up a new Bun-based API server in TypeScript; this skill guides initialization, applies a server-appropriate tsconfig (including path aliases if desired), and produces the initial routes/server skeleton you can build on.
Quick Start
Tell the AI: “Initialize a Bun project for a TypeScript API server and generate the recommended files and scripts.”