Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
laurigates avatar

Bun Build

  • 54 installs
  • 49 repo stars
  • Updated August 4, 2026
  • laurigates/claude-plugins

Helps with ai & agent building tasks.

About

bun-build is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • bun-build
  • AI & Agent Building
  • AI-coding skill

Bun Build by the numbers

  • 54 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #6,946 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laurigates/claude-plugins --skill bun-build

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs54
repo stars49
Last updatedAugust 4, 2026
Repositorylaurigates/claude-plugins

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

/bun:build

Bundle JavaScript/TypeScript or compile to standalone executable.

When to Use This Skill

ScenarioUse this skillAlternative
Quick production bundle of an entry pointYesN/A
Compiling to a standalone executableYesN/A
Building for a specific target (browser/bun/node)YesN/A
Configuring complex build pipelinesNo - use bun-developmentFull build configuration guidance
Running project build scripts (bun run build)No - use bun-developmentN/A

Parameters

  • entry (required): Entry point file
  • --compile: Create standalone executable
  • --minify: Minify output

Execution

Production bundle:

bun build $ENTRY --outdir=dist --minify --sourcemap=external

Standalone executable:

bun build --compile --minify $ENTRY --outfile={{ OUTFILE | default: "app" }}

Development bundle:

bun build $ENTRY --outdir=dist --sourcemap=inline

Build Targets

# Browser (default)
bun build $ENTRY --target=browser --outdir=dist

# Bun runtime
bun build $ENTRY --target=bun --outdir=dist

# Node.js
bun build $ENTRY --target=node --outdir=dist

Agentic Optimizations

ContextCommand
Prod bundlebun build ./src/index.ts --outdir=dist --minify --sourcemap=external
Compile to exebun build --compile --minify ./app.ts --outfile myapp
Dev bundlebun build ./src/index.ts --outdir=dist --sourcemap=inline
Browser targetbun build ./src/index.ts --target=browser --outdir=dist
Node targetbun build ./src/index.ts --target=node --outdir=dist

Post-build

1. Report output file sizes 2. List generated files in output directory 3. For --compile: verify executable runs with ./app --help or similar

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.