Build a CLI on top of an existing Python library
Codex reads an existing analysis library and generates a Click-based CLI wrapper with subcommands for each public function, help text derived from docstrings, and integration tests — all added to the repo without touching the library itself.
Lab members run analyses from the terminal without writing any Python; the CLI ships as part of the next package release.
Run `codex`: "Add a Click CLI in cli/main.py that exposes all public functions in src/analysis/pipeline.py as subcommands. Derive help text from existing docstrings. Add tests in tests/cli/."