jujutsu-colocated
Installation
SKILL.md
Jujutsu Colocated Workflow
Use this skill to execute jj-first workflows safely in repositories where git and jj coexist.
Detect VCS First
Run this before any VCS command:
if jj root &>/dev/null; then echo "jj"
elif git rev-parse --show-toplevel &>/dev/null; then echo "git"
else echo "none"
fi
Interpretation: