Agent Skills: /bun:install

Install dependencies with Bun package manager

UncategorizedID: laurigates/claude-plugins/bun-install

Install this agent skill to your local

pnpm dlx add-skill https://github.com/laurigates/claude-plugins/tree/HEAD/typescript-plugin/skills/bun-install

Skill Files

Browse the full folder contents for bun-install.

Download Skill

Loading file tree…

typescript-plugin/skills/bun-install/SKILL.md

Skill Metadata

Name
bun-install
Description
Install dependencies with Bun package manager

/bun:install

Install all dependencies from package.json using Bun.

Context

Package file: `find . -maxdepth 1 -name "package.json" | head -1`
Lock file: `find . -maxdepth 1 -name "bun.lock*" -o -name "bun.lockb" | head -1`

Execution

  1. Check if package.json exists
  2. Run installation with appropriate flags:

Development (default):

bun install

CI/Reproducible builds:

bun install --frozen-lockfile

Production deployment:

bun install --production
  1. Report installed package count and any warnings

Post-install

  • Verify node_modules exists
  • Check for peer dependency warnings
  • Run bun run prepare if it exists (for husky/hooks)