The problem
Every time I clone a repo, I have to figure out how to run it.
Go project? go test ./... — unless it uses make test
Node project? npm test — unless it uses pnpm or yarn or bun
Rust? cargo test. Python? Could be pytest, python -m unittest, or poetry run pytest.






