Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
HomeCompare › beautiful-cli-design vs completion-script-generator

beautiful-cli-design vs completion-script-generator

Two Dev Tools Claude Code skills, side by side. Pick the right skill for your workflow with a side-by-side look at metadata, sample code, and install commands.

Side-by-side

Namebeautiful-cli-designcompletion-script-generator
DescriptionExpert in making CLI tools visually stunning and delightful — not just functional. Covers ANSI color systems (16/256/truecolor with graceful degradation), Unicode box drawing, progress indicators, tables, animated…Generates shell completion scripts for CLI tools. Parses command structure from help output, commander/yargs configs, or manual specification. Produces completions for bash, zsh, and fish that follow each shell's…
CategoryDev ToolsDev Tools
Sub-categorycli-buildersscaffolders
Tagstype:clitype:generator
Authorcuriositechcuriositech
License
Install/add-skill beautiful-cli-design/add-skill completion-script-generator

Tag overlap

Shared

Only in beautiful-cli-design type:cli

Only in completion-script-generator type:generator

Sample code from each SKILL.md

beautiful-cli-design

Project Requirements → Framework Choice
├─ Simple prompts/wizards (login flow, setup)
│  ├─ TypeScript → Clack
│  ├─ Go → Huh/Survey
│  └─ Rust → inquire
├─ Rich output only (no interaction)
│  ├─ TypeScript → chalk + ora
│  ├─ Python → Rich
│  ├─ Go → lipgloss
│  └─ Rust → owo-colors + indicatif
├─ Full TUI (interactive dashboards, editors)
│  ├─ Team knows React → Ink
│  ├─ Go preferred → Bubble Tea
│  ├─ Performance critical (>60fps) → Ratatui
…

completion-script-generator

# Extract commands and options from commander program
grep -rn '\.command(' src/cli.ts | while read -r line; do
  cmd=$(echo "$line" | grep -oP "\.command\(['\"]([^'\"]+)" | sed "s/.*['\"]//")
  echo "COMMAND: $cmd"
done

grep -rn '\.option(' src/cli.ts | while read -r line; do
  flag=$(echo "$line" | grep -oP "\.option\(['\"]([^'\"]+)" | sed "s/.*['\"]//")
  desc=$(echo "$line" | grep -oP "'[^']*'\s*\)" | head -1)
  echo "OPTION: $flag -- $desc"
done

When to choose each

beautiful-cli-design — Expert in making CLI tools visually stunning and delightful — not just functional. Covers ANSI color systems (16/256/truecolor with graceful degradation), Unicode box drawing, progress indicators, tables, animated…

completion-script-generator — Generates shell completion scripts for CLI tools. Parses command structure from help output, commander/yargs configs, or manual specification. Produces completions for bash, zsh, and fish that follow each shell's…

Both are free to install. If you're unsure, install both — Claude Code skills are isolated by filename and only collide if their trigger phrases overlap (rare). The richest signal is the SKILL.md body itself — open both skill pages and read the first paragraph of each.

Open beautiful-cli-design → Open completion-script-generator →

Other comparisons in this category

See all Claude Code skill comparisons · Browse all Dev Tools skills · Top 100