
Bun Add
- 55 installs
- 49 repo stars
- Updated August 4, 2026
- laurigates/claude-plugins
Helps with ai & agent building tasks.
About
bun-add is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- bun-add
- AI & Agent Building
- AI-coding skill
Bun Add by the numbers
- 55 all-time installs (skills.sh)
- +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #6,762 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-addAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 55 |
|---|---|
| repo stars | ★ 49 |
| Last updated | August 4, 2026 |
| Repository | laurigates/claude-plugins ↗ |
What it does
Helps with ai & agent building tasks.
Files
/bun:add
Add a package to dependencies using Bun.
When to Use This Skill
| Scenario | Use this skill | Alternative |
|---|---|---|
| Quickly adding a single package | Yes | N/A |
| Adding a dev dependency | Yes | N/A |
| Pinning an exact package version | Yes | N/A |
| Installing all project dependencies | No - use bun-package-manager | bun install |
| Removing or updating packages | No - use bun-package-manager | N/A |
| Managing workspace dependencies | No - use bun-package-manager | N/A |
Parameters
package(required): Package name, optionally with version (e.g.,lodash,react@18)--dev: Add to devDependencies--exact: Pin exact version (no ^ range)
Execution
bun add {{ if DEV }}--dev {{ endif }}{{ if EXACT }}--exact {{ endif }}$PACKAGEExamples
# Add runtime dependency
bun add express
# Add dev dependency
bun add --dev typescript vitest
# Pin exact version
bun add --exact react@18.2.0
# Add to specific workspace
bun add lodash --cwd packages/utilsAgentic Optimizations
| Context | Command |
|---|---|
| Add runtime dep | bun add <package> |
| Add dev dep | bun add --dev <package> |
| Pin exact version | bun add --exact <package> |
| Add to workspace | bun add <package> --cwd <path> |
| Preview changes | bun add --dry-run <package> |
Post-add
1. Report package version added 2. Show dependency tree impact with bun why <package> 3. Suggest running tests to verify compatibility
Related skills
AI & Agent Buildingagents