
Bun Install
- 60 installs
- 49 repo stars
- Updated August 4, 2026
- laurigates/claude-plugins
Helps with ai & agent building tasks.
About
bun-install is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- bun-install
- AI & Agent Building
- AI-coding skill
Bun Install by the numbers
- 60 all-time installs (skills.sh)
- +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #6,388 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-installAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 60 |
|---|---|
| repo stars | ★ 49 |
| Last updated | August 4, 2026 |
| Repository | laurigates/claude-plugins ↗ |
What it does
Helps with ai & agent building tasks.
Files
/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`Execution
1. Check if package.json exists 2. Run installation with appropriate flags:
Development (default):
bun installCI/Reproducible builds:
bun install --frozen-lockfileProduction deployment:
bun install --production3. Report installed package count and any warnings
Post-install
- Verify node_modules exists
- Check for peer dependency warnings
- Run
bun run prepareif it exists (for husky/hooks)
Related skills
AI & Agent Buildingagents