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);

// JSON output
Related skills

More from secondsky/claude-skills

Installs
100
GitHub Stars
143
First Seen
Apr 4, 2026