Summary
After nx self install converged a legacy uv-tool install onto the generation layout (7.21.0), nx doctor reports:
Generation layout: python3.12 in /Users/.../.local/bin are symlinks, not nexus-owned shims — uv has taken them back (a stray `uv tool upgrade conexus` does this) ...
Fix: nx self install
~/.local/bin/python3 and ~/.local/bin/python3.12 here are uv-managed interpreter links (uv python install), not nexus entrypoints:
python3 -> ~/.local/share/uv/python/cpython-3.12-macos-aarch64-none/bin/python3.12
python3.12 -> ~/.local/share/uv/python/cpython-3.12-macos-aarch64-none/bin/python3.12
The four nexus shims (nx, nx-mcp, nx-mcp-catalog, nx-session-end-launcher) are correct and resolve to current. No uv tool upgrade was run after the converge.
Expected
The check should only consider the entrypoints the generation owns, not every executable name that also exists in the generation's bin/ (the venv's own python3.12). Running the suggested fix would overwrite the user's default python3 on PATH.
Environment
conexus 7.21.0, generation gen-20260829T014646Z (base interpreter uv cpython 3.12), macOS arm64.
Summary
After
nx self installconverged a legacy uv-tool install onto the generation layout (7.21.0),nx doctorreports:~/.local/bin/python3and~/.local/bin/python3.12here are uv-managed interpreter links (uv python install), not nexus entrypoints:The four nexus shims (
nx,nx-mcp,nx-mcp-catalog,nx-session-end-launcher) are correct and resolve tocurrent. Nouv tool upgradewas run after the converge.Expected
The check should only consider the entrypoints the generation owns, not every executable name that also exists in the generation's
bin/(the venv's ownpython3.12). Running the suggested fix would overwrite the user's defaultpython3on PATH.Environment
conexus 7.21.0, generation
gen-20260829T014646Z(base interpreter uv cpython 3.12), macOS arm64.