Help us improve
Share bugs, ideas, or general feedback.
From typescript-plugin
Adds package dependencies to Bun projects using `bun add`, with --dev and --exact flags, reports version added, shows impact via `bun why`, and suggests running tests.
npx claudepluginhub laurigates/claude-plugins --plugin typescript-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/typescript-plugin:bun-addhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add a package to dependencies using Bun.
Manages JavaScript dependencies with Bun: install, add, remove, update packages and workspaces using optimized CLI flags for CI, production, dry-runs, and agentic workflows.
Manages dependencies with Bun package manager: installs/removes/updates packages, handles workspaces and lockfiles, runs scripts, migrates from npm/yarn/pnpm.
Installs Python (pip), JavaScript (bun), and system (apt/brew/dnf) dependencies with monorepo awareness, prompting for shared or local installation in git repos.
Share bugs, ideas, or general feedback.
Add a package to dependencies using Bun.
package (required): Package name, optionally with version (e.g., lodash, react@18)--dev: Add to devDependencies--exact: Pin exact version (no ^ range)bun add {{ if DEV }}--dev {{ endif }}{{ if EXACT }}--exact {{ endif }}$PACKAGE
# 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/utils
bun why <package>