SkillAgentSearch skills...

Boune

A batteries-included CLI framework for Bun — prompts, colors, spinners, and more

Install / Use

/learn @roushou/Boune
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

boune

A declarative, TypeScript-first CLI framework powered by Bun.

Features

  • TypeScript-first - Full type inference for commands, arguments, and options
  • Declarative API - Schema-based pattern for defining CLIs
  • Subcommands - Nested command hierarchies with aliases
  • Interactive prompts - Text, password, select, confirm, and more
  • Output utilities - Colors, tables, spinners
  • Devtools - Web dashboard for CLI inspection and debugging
  • Zero dependencies - Powered by Bun

Installation

bun add boune

Quick Start

import { defineCli, defineCommand } from "boune";

const greet = defineCommand({
  name: "greet",
  description: "Greet someone",
  arguments: {
    name: { type: "string", required: true, description: "Name to greet" },
  },
  options: {
    loud: { type: "boolean", short: "l", description: "Shout the greeting" },
  },
  action({ args, options }) {
    const msg = `Hello, ${args.name}!`;
    console.log(options.loud ? msg.toUpperCase() : msg);
  },
});

const cli = defineCli({
  name: "my-app",
  version: "1.0.0",
  commands: { greet },
});

cli.run();

Documentation

For detailed guides, API reference, and examples, visit the documentation.

License

This project is licensed under the MIT License

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated26d ago
Forks0

Languages

TypeScript

Security Score

90/100

Audited on Mar 13, 2026

No findings