# bun-workspace-management > This skill is for routine monorepo work *after* the repo uses Bun. For pnpm → Bun migration steps, use the `bun-monorepo-workflows` skill. - Author: Alexander Asomba - Repository: alexasomba/cloudflare-workers-saas-kit - Version: 20251228153759 - Stars: 2 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/alexasomba/cloudflare-workers-saas-kit - Web: https://mule.run/skillshub/@@alexasomba/cloudflare-workers-saas-kit~bun-workspace-management:20251228153759 --- --- name: bun-workspace-management description: Use this when managing apps/packages in this monorepo with Bun instead of pnpm: running scripts per workspace, installing/add/removing deps, using bun run --filter, troubleshooting bun trustedDependencies, and running bun audit/bun pm commands. --- # Bun workspace/package management (day-to-day) This skill is for routine monorepo work *after* the repo uses Bun. For pnpm → Bun migration steps, use the `bun-monorepo-workflows` skill. ## bun/bunx troubleshooting (PATH) If `bun` or `bunx` prints nothing or behaves inconsistently, you likely have multiple installs and the wrong one is first on PATH. Quick checks: - `which bun` / `which bunx` - `bun --version` (should print a version) Repo standard (most reliable): - Use `./scripts/bun ...` and `./scripts/bunx ...` from the repo root. VS Code note: PATH overrides in `.vscode/settings.json` apply only to **new** integrated terminals. ## Run scripts (root + workspaces) - Run a root script: `bun run