cli-building

Installation
SKILL.md

Citty CLI

Quick Start

npm install citty `@bomb.sh/tab` `@clack/prompts`

Minimal command:

import { defineCommand, runMain } from 'citty';

export default defineCommand({
    meta: { name: 'greet', description: 'Say hello' },
    args: { name: { type: 'string', description: 'Your name', required: true } },
    run({ args }) { console.log(`Hello, ${args.name}!`); },
});

Critical Rules

Related skills

More from damusix/skills

Installs
3
Repository
damusix/skills
GitHub Stars
16
First Seen
Apr 26, 2026