What problem does it solve? Agents working in git worktree setups often run git commands in the wrong directory, accidentally operate on the main repository, or fail because the task root has no .git directory. This Skill injects worktree awareness so agents operate only in the correct checkout. ## Core Features & Use Cases - Dual-Mode Context: Distinguishes between the task root (no git repository, multiple service worktrees) and inside a worktree (where .git is a file pointing to the main repo). - Safety Rules: Enforces constraints such as never cd-ing to the main repository path and never checking out a branch already used by another worktree. - Cross-Service Coordination: Explains how to reference sibling services by full path when a task spans multiple repositories. - Use Case: When working in .tasks/ITPR-492/inbanksight/, the agent knows it is on a task-specific branch, runs git commands locally, and never touches the main repository checkout. ## Quick Start Ask the agent to commit the current changes in the active worktree without touching the main repository.