cyclopts-cli-scripts
Installation
SKILL.md
CLI Scripts with cyclopts
All command-line scripts in this codebase use the cyclopts framework.
Framework
Use cyclopts, not argparse, click, typer, or bare sys.argv.
import cyclopts
app = cyclopts.App()
@app.command
def my_command(arg1: str, flag: bool = False) -> None:
"""Brief description shown in --help."""
...