#!/usr/bin/env python3 """Standalone launcher for the KEZ Python CLI. Lets the cross-implementation test harness invoke the CLI from any working directory without installing the package: python/.venv/bin/python python/kez_cli.py """ import os import sys sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from kez.cli import main # noqa: E402 if __name__ == "__main__": sys.exit(main())