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."""
    ...
Installs
14
First Seen
Mar 20, 2026
cyclopts-cli-scripts — mitodl/agent-kit