justbecauselabs/agent-skills

bun

Bun runtime and package manager guidance. Use when running Bun commands, managing dependencies, executing scripts, using bunx, running tests, or troubleshooting Bun-specific behavior in JS/TS projects.

First seen Jun 16, 2026

Installation

$ npx skills add justbecauselabs/agent-skills --skill bun

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from justbecauselabs/agent-skills.

npx skills add justbecauselabs/agent-skills

Browse all from justbecauselabs/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,183 B
  • docs SUMMARY.md 212 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Bun

Overview

Use this skill to operate Bun projects and choose the correct Bun command for installs, scripts, and tests. Keep guidance consistent with the project's existing scripts and configuration.

Workflow

  1. Check for Bun indicators: bun.lockb, bunfig.toml, or package.json scripts that mention Bun.
  2. Prefer project scripts over ad-hoc commands; use bun run <script> for dev, build, or test when defined.
  3. Use Bun's native tools only when the repo expects them (for example, bun test with Bun's test runner).
  4. Avoid editing lockfiles by hand; update dependencies via Bun commands.

Command Reference

  • Read references/bun.md when you need concrete command lines, testing guidance, or dependency workflows.

Notes

  • Keep commands explicit and predictable; avoid clever flags unless the project already uses them.
  • If the repo uses another tool (pnpm, yarn, npm), follow that tool instead of forcing Bun.