From dev-conventions
Convert JavaScript and TypeScript projects to use bun instead of npm/yarn/pnpm. Use when user asks to "migrate from npm to bun", "convert to bun", "switch package managers", "replace npm", or "use bun instead". Includes conversion tables and lock file migration. Core conventions auto-loaded via SessionStart hook; invoke /dev-conventions:bun-tooling for full reference.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-conventions:bun-toolingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Always use `bun` for JavaScript and TypeScript package management and script execution. Never use `npm`, `yarn`, `pnpm`, or `npx`.
Always use bun for JavaScript and TypeScript package management and script execution. Never use npm, yarn, pnpm, or npx.
| Instead of | Use |
|---|---|
npm install | bun install |
npm install X | bun add X |
npm install -D X | bun add -d X |
npm run build | bun run build |
npx create-react-app | bunx create-react-app |
yarn add X | bun add X |
pnpm install | bun install |
Use bun.lockb instead of package-lock.json or yarn.lock. If migrating an existing project, delete the old lock file and run bun install to generate bun.lockb.
Use bun init instead of npm init or yarn init.
npx claudepluginhub fblissjr/fb-claude-skills --plugin dev-conventionsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.