bun-first
Installation
SKILL.md
Bun-First Development
We default to Bun as our JavaScript runtime, package manager, and task runner. Assume Bun is available unless explicitly stated otherwise.
General Principles
- PREFER Bun over Node.js, npm, pnpm, or yarn
- PREFER Bun’s built-in features over third-party tools when available
- PRFER Bun's native APIs (eg for file access, SQL, S3 etc) over Node.js APIs
Package Management
- USE
bun install,bun add,bun remove - AVOID
npm,yarn,pnpm - Prefer Bun-native lockfiles and resolution behavior
- Keep dependencies minimal and intentional
Scripts & Tooling
Related skills
More from academind/ai-config
web-security
Enforce web security and avoid security vulnerabilities
107modern-best-practice-react-components
Build clean, modern React components that apply common best practices and avoid common pitfalls like unnecessary state management or useEffect usage
73modern-best-practice-nextjs
Build modern Next.js apps with App Router and best practices
51clean-typescript
Write clean, efficient TypeScript code that follows common best practices
46modern-tailwind
Build clean, scalable UIs with Tailwind CSS using modern utilities and variants
32use-modern-browser-apis
Utilize built-in browser APIs (like Popover API, View Transitions etc) instead of building features manually via JavaScript
28