Installing via pip, there is no codexctl executable anywhere.
Steps to reproduce:
- Create a venv (as using pip globally is not supported on many(/all?) distributions);
python -m venv codexctl; source codexctl/bin/activate;
- Run
pip install codexctl
Alternatively, this can reproduced with pipx or conda.
Observed results:
A codexctl library is installed, there is no codexctl executable to be found:
(in codexctl-venv)
$ find . -iname "*codexctl*"
./lib/python3.14/site-packages/codexctl
./lib/python3.14/site-packages/codexctl-0.1.0.dist-info
Expected results:
There should be a clear command line entrypoint to use codexctl.
The instructions should be elaborated on how to install codexctl via pip.