Create an isolated git worktree for safe development on: $ARGUMENTS
Iron Law
All new feature work happens in a worktree. The main branch stays clean.
If you think "this change is small enough to do on main" — you are wrong. Worktrees cost 5 seconds. Debugging a polluted main branch costs hours.
Steps
1. Verify Clean Baseline
Before creating the worktree:
# Ensure we're in a git repo
git rev-parse --is-inside-work-tree
# Check for uncommitted changes
git status
[Description truncada. Veja o README completo no GitHub.]