bun-install

Installation
SKILL.md

/bun:install

Install all dependencies from package.json using Bun.

When to Use This Skill

Use this skill when... Use bun-add instead when...
Bootstrapping a fresh checkout from existing package.json Adding a new dependency to package.json
Running a CI install with --frozen-lockfile Installing a single package with version pinning
Preparing a production deployment with --production Updating an existing dependency (use bun-lockfile-update)
Restoring node_modules after deletion Auditing what could be upgraded (use bun-outdated)

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`
Installs
59
GitHub Stars
47
First Seen
Feb 9, 2026
bun-install — laurigates/claude-plugins