GPT-5 finding
Quick setup script does not verify presence of git dependency
- gitlawb/scripts/setup.sh:9-15
The skill metadata requires bins ["gl","git"], and many workflows depend on git being present. The setup script ensures gl is installed but never checks for git, which can lead to later failures during clone/push steps or when running git-remote-gitlawb.
Recommendation
Add a preflight check for git (command -v git). If missing, print a clear instruction to install git (or install via package manager where feasible) before proceeding. Optionally run gl doctor only after both dependencies are confirmed.