From bun-agent
Execute a complex task autonomously using Bun agent capabilities. TRIGGER when: user asks to run a multi-step workflow, automate something, process files in bulk, execute a build pipeline, do a DevOps task, or explicitly says 'run with bun'. Also triggers when the task clearly needs more than 3-4 tool calls to complete.
npx claudepluginhub aphrody-code/bun-agentThis skill is limited to using the following tools:
Execute the following task with full autonomy. Do NOT ask for confirmation at each step — analyze, plan, execute, verify.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Retrieves current documentation, API references, and code examples for libraries, frameworks, SDKs, CLIs, and services via Context7 CLI. Ideal for API syntax, configs, migrations, and setup queries.
Execute the following task with full autonomy. Do NOT ask for confirmation at each step — analyze, plan, execute, verify.
When Claude Code tools aren't sufficient, use Bun directly via shell:
# File I/O (lazy-loaded, fast)
bun -e "console.log(await Bun.file('path').text())"
bun -e "await Bun.write('out.txt', 'content')"
bun -e "console.log(await Bun.file('f').exists())"
# Glob (recursive, fast)
bun -e "for await (const f of new Bun.Glob('**/*.ts').scan('.')) console.log(f)"
# HTTP (native fetch)
bun -e "console.log(await (await fetch('https://api.example.com')).json())"
# Shell (auto-escaped, cross-platform)
bun -e "import {\$} from 'bun'; console.log(await \$\`ls -la\`.text())"
# Subprocess (streaming stdout/stderr)
bun -e "const p=Bun.spawn(['cmd'],{stdout:'pipe'}); console.log(await new Response(p.stdout).text())"
For the complete Bun API reference, read ${CLAUDE_SKILL_DIR}/references/bun-apis.md.
$ARGUMENTS