From bun
Initializes a new Bun project with optional framework selection (Hono, Next.js, Nuxt, SvelteKit, TanStack Start, or basic TypeScript). Scaffolds project, installs dependencies, and applies Bun-specific optimizations.
How this command is triggered — by the user, by Claude, or both
Slash command
/bun:bun-initThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Bun Project Initialization Initialize a new Bun project with the best configuration for the selected template. ## Process 1. **Determine project type** - Ask user if template not specified 2. **Create project structure** - Use appropriate scaffolding 3. **Configure for Bun** - Ensure Bun-optimized settings 4. **Install dependencies** - Run `bun install` 5. **Initialize git** - Set up git repository 6. **Show next steps** - Guide user on what to do next ## Templates ### Basic (default) Creates minimal Bun project with TypeScript. ### Hono Creates Hono API project optimized for Bun....
Initialize a new Bun project with the best configuration for the selected template.
bun installbun init
Creates minimal Bun project with TypeScript.
bun create hono {project-name}
Creates Hono API project optimized for Bun.
bunx create-next-app@latest {project-name}
Creates Next.js project with Bun package manager.
bunx nuxi@latest init {project-name}
Creates Nuxt 3 project with Bun runtime.
bunx sv create {project-name}
Creates SvelteKit project with Bun adapter.
bunx create-tanstack-start@latest {project-name}
Creates TanStack Start full-stack React project.
After scaffolding, apply these Bun-specific optimizations:
bun --bun where beneficial[install]
auto-install = true
[run]
bun = true
[test]
coverage = true
If template not provided:
If project name not provided:
After initialization, display:
npx claudepluginhub midego1/claude-skills --plugin bun2plugins reuse this command
First indexed Jan 1, 2026
/bun-initInitializes a new Bun project with optional framework selection (Hono, Next.js, Nuxt, SvelteKit, TanStack Start, or basic TypeScript). Scaffolds project, installs dependencies, and applies Bun-specific optimizations.
/tanstack-startBuilds a full-stack TanStack Start app on Cloudflare Workers from scratch, generating all files and handling database, auth, routes, dashboard, and deployment.
/nuxt-setupInteractive setup wizard that scaffolds a new Nuxt 4 project with configurable UI framework, database, authentication, and deployment options.
/init-projectScaffolds a new project with essential structure, framework-specific configuration, testing, CI/CD, and documentation. Accepts project name and type as arguments.
/create-go-projectScaffolds a production-ready Go web application with Echo, Templ, HTMX, Tailwind CSS, sqlc, and goose. Interactively configures database, optional services, admin dashboard, and deployment.
/newScaffolds a new Better-T-Stack project by planning a full validated stack via its MCP server and generating the project files.