bun-shell

Installation
SKILL.md

Bun Shell

Bun provides powerful shell scripting capabilities with template literals and spawn APIs.

Bun.$ (Shell Template)

Basic Usage

import { $ } from "bun";

// Run command
await $`echo "Hello World"`;

// Get output
const result = await $`ls -la`.text();
console.log(result);
Installs
170
GitHub Stars
172
First Seen
Apr 4, 2026
bun-shell — secondsky/claude-skills