python-modern-cli
Installation
SKILL.md
Python Modern CLI
Build professional command-line interfaces in Python combining visual appeal, interactive UX, and clear output formatting.
Quick Start
Copy the base template from assets/cli_template.py as starting point. Install dependencies:
pip install typer[all] rich questionary pyfiglet --break-system-packages
Basic structure:
import typer
from rich.console import Console
from pyfiglet import figlet_format
import questionary