"""Headroom CLI - Command-line interface for memory and proxy management. The subcommand submodules are imported eagerly below so they are bound as attributes of `headroom.cli`. Click registration happens via side effects in `main.py::_register_commands`, but that only binds them to the *main.py* module. Tests that do `patch("headroom.cli..")` resolve the target by walking attributes on the package object, and that lookup fails when a prior test has popped `headroom.cli` from `sys.modules` and re-imported it through a path other than `main.py` (e.g. a test that replaces `sys.modules["headroom.cli.main"]` with a fake to isolate one subcommand). Doing `from . import ...` here means the submodule attribute binding survives that kind of sys.modules mutation. """ from . import ( # noqa: F401 audit, capture, copilot_auth, evals, init, install, learn, mcp, perf, proxy, tools, update, wrap, ) from .main import main try: from . import memory # noqa: F401 except ImportError: pass __all__ = ["main"]