- define your custom commands to start with ”,” so shell completion is only for you
just & justfile
- https://github.com/casey/just
- allows you to define justfile, like makefile, to define commands

- You can define
just testfor each of your project, such that running tests is always the same
test *args:
uv run -m pytest {{ args }}