Summary
On macOS, after installing with uv tool install graphifyy, the only reliably working invocation is:
uv tool run --from graphifyy graphify install
Direct command usage (graphify install) fails with command not found, and uv tool run graphify ... fails because uv tries to resolve graphify as a package name.
Environment
- OS: macOS (zsh)
- Tooling:
uv
Steps to Reproduce
- Install the tool package:
uv tool install graphifyy
- Try running the CLI directly:
- Try running via
uv tool run using executable name only:
uv tool run graphify install
- Run with explicit package source:
uv tool run --from graphifyy graphify install
Actual Behavior
graphify install:
zsh: command not found: graphify
uv tool run graphify install:
× No solution found when resolving tool dependencies:
╰─▶ Because there are no versions of graphify and you require graphify, we can conclude that your requirements are unsatisfiable.
uv tool run --from graphifyy graphify install works.
Expected Behavior
After uv tool install graphifyy, at least one of the following should work consistently without additional discovery:
graphify install (if PATH/tool shim is correctly set up)
- or docs should clearly instruct to use:
uv tool run --from graphifyy graphify <command>
Notes
uv reports that package graphifyy provides executables graphify and graphify-mcp, which suggests confusion between package name and executable name. This is likely to affect first-time users.
Suggested Fixes
- Improve install/run documentation with explicit examples for macOS + zsh.
- Add a troubleshooting section for PATH setup (
uv tool dir) and shell reloading.
- Optionally consider package/executable naming alignment to reduce friction.
Summary
On macOS, after installing with
uv tool install graphifyy, the only reliably working invocation is:Direct command usage (
graphify install) fails withcommand not found, anduv tool run graphify ...fails becauseuvtries to resolvegraphifyas a package name.Environment
uvSteps to Reproduce
uv tool runusing executable name only:Actual Behavior
graphify install:uv tool run graphify install:uv tool run --from graphifyy graphify installworks.Expected Behavior
After
uv tool install graphifyy, at least one of the following should work consistently without additional discovery:graphify install(if PATH/tool shim is correctly set up)Notes
uvreports that packagegraphifyyprovides executablesgraphifyandgraphify-mcp, which suggests confusion between package name and executable name. This is likely to affect first-time users.Suggested Fixes
uv tool dir) and shell reloading.