bun-runtime-expert

bun-runtime-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 57 tokens per session (2,043 once invoked), scanned C, original, MIT.

A guide for Bun, a JavaScript and TypeScript runtime that combines a server, package manager, bundler, and test runner. It covers building applications, APIs, database queries, storage access, and moving projects from Node.js.

In plain words
What is it for?
Use it to create Bun projects, build HTTP servers and APIs, query PostgreSQL, MySQL, or SQLite, access S3-compatible storage, bundle code, write tests with bun:test, and migrate from Node.js.
Why use it?
It helps developers choose and configure Bun's built-in tools instead of assembling separate tools for common development tasks. It also addresses package installation, lockfiles, and Node.js migration issues.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create Bun projects, build HTTP servers and APIs, query PostgreSQL, MySQL, or SQLite, access S3-compatible storage, bundle code, write tests with bun:test, and migrate from Node.js.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/bun-runtime-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill bun-runtime-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bun-runtime-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/bun-runtime-expert.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/bun-runtime-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/bun-runtime-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/bun-runtime-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,043 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.02043
Opus 5 $0.00028 $0.01022
Sonnet 5 $0.00011 $0.00409
Haiku 4.5 $0.00006 $0.00204

Measured 8d ago against content hash eab89c2c561a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade C, and why

bun-runtime-expert scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://bun.sh/install | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://bun.sh/install | bash
skills/bun-runtime-expert/SKILL.md · 218 lines

How it starts

The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bun Runtime Expert

English | Bahasa Indonesia


English

Orchestration & Integration

Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.

Expert-level guidance for building high-performance applications with the Bun JavaScript/TypeScript runtime (v1.1+). Covers Bun's built-in HTTP server, database clients, bundler, test runner, package manager, and Node.js migration strategies.

Trigger Conditions

  • Use when scaffolding a new project with Bun as the runtime.
  • Use when building HTTP servers or APIs with Bun.serve().
  • Use when querying databases with Bun.sql (PostgreSQL, MySQL, SQLite).
  • Use when interacting with S3-compatible object storage via Bun.s3.
  • Use when bundling frontend or backend code with bun build.
  • Use when writing tests with bun:test.
  • Use when migrating an existing Node.js project to Bun.
  • Use when optimizing package installation speed or lockfile management.

Core Architecture

Why Bun?

Bun is a batteries-included JavaScript/TypeScript runtime that replaces Node.js, npm, Webpack/Vite, and Jest in a single binary:

Capability Bun Built-in Node.js Equivalent
Runtime bun run node
Package Manager bun install npm / pnpm / yarn
Bundler bun build Webpack / Vite / esbuild
Test Runner bun test Jest / Vitest
HTTP Server Bun.serve() Express / Fastify
SQL Client Bun.sql pg / mysql2 / better-sqlite3
S3 Client Bun.s3 @aws-sdk/client-s3
Redis Client Built-in ioredis
TypeScript Native (zero config) ts-node / tsx
.env loading Native dotenv

Quick Start

1. Install Bun
# macOS / Linux
curl -fsSL https://bun.sh/install | bash

# Windows (PowerShell)
powershell -c "irm bun.sh/install.ps1 | iex"

# Verify installation
bun --version

Read the full file on GitHub · 218 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 218 lines · 57 tokens per session scan C eab89c2c561a

Subscribe to this mod's changes

bun-runtime-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (49 stars, last pushed today), licensed MIT. It adds 57 tokens to every session and 2,043 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

fastify-best-practices

A reference guide for building Fastify, a Node.js framework for web servers and REST APIs, with JavaScript or TypeScript. It covers routes, plugins, validation, errors, testing, logging, security, databases, and deployment.

sutchan/Agent-Skills-Hub · 0 tokens

nestjs-patterns

NestJS architecture patterns for modules, controllers, providers, DTO validation, guards, interceptors, config, and production-grade TypeScript backends.

Jamkris/everything-gemini-code · 33 tokens

nestjs-patterns

NestJS architecture patterns for modules, controllers, providers, DTO validation, guards, interceptors, config, and production-grade TypeScript backends.

majiang213/OpenClaw-MAS · 33 tokens

nodejs-backend-patterns

Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when creating Node.js servers, REST APIs, GraphQL backends, or microservices architectures.

rmyndharis/antigravity-skills · 58 tokens

effect

Opinionated guide for building production TypeScript applications with Effect v4. Use when implementing Effect workflows, services, layers, schemas, configuration, schedules, caches, streams, HTTP clients, or tests.

kitlangton/skills · 42 tokens

fluent-development

This skill should be used when the user asks to "build a fluent app", "create a servicenow app in typescript", or mentions "servicenow sdk", "now-sdk", "fluent", "scoped app as code", or "pro-code development" — or when the working directory contains a now.config.json or .now.ts files.

serac-labs/serac · 77 tokens