Bun audit
AgentSkills library: reusable skills for AI coding agents (AI SDK, Codex, LangGraph, Supabase, Docker, Vitest, pytest, Streamlit, Zod).
npx -y skills add BjornMelin/dev-skills --skill bun-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Shared Bun audit/remediation router. Use when auditing a repo for Bun-first correctness, explaining findings, listing rules, planning safe fixes, applying low-risk remediations, or validating Bun-related changes.
SKILL.md
1.5 KB, as published. Nobody here has run it
Bun Audit
Use this skill as a thin router over the native codex-dev bun engine. Do not
duplicate rules or remediation logic here; bun-dev owns rule text and
references.
Commands
audit: runcodex-dev --json bun audit --root <repo>.rules list: runcodex-dev --json bun rules list.rules show <rule-id>: runcodex-dev --json bun rules show <rule-id>.fixes plan: runcodex-dev --json bun fixes plan --root <repo>.fixes apply: runcodex-dev --json bun fixes apply --root <repo>.validate plan: runcodex-dev --json bun validate plan --root <repo>.validate run: runcodex-dev --json bun validate run --root <repo> --fail-on warn.benchmark: runcodex-dev --json bun benchmark --root <repo>.
Operating Rules
- Treat
bun-devas the source of truth for rules and reference snapshots. - Use
codex-dev bun ...; it is the sole supported Bun audit and remediation CLI. - Do not run
fixes apply,validate run, orreferences syncin parallel against the same repo or skill root. - Audit cache writes are opt-in with
--write-cache. - Safe fixes write rollback artifacts under external dev-skills state.
- If a fix is risky or ambiguous, stop at
fixes planand surface the tradeoff.