@rules/worktree-lifecycle.md
@references/source-survey.md
Git Worktree Skill
Make isolated branch workspaces cheap, visible, and safe.
<purpose>
- Create and manage Git worktrees under the project convention:
.hypercore/git-worktree/<folder_name>
.
- Support parallel feature work, agent sessions, reviews, hotfixes, and experiments without branch-switching churn.
- Keep worktree operations safe by asking for missing task intent before creation, checking status before removal, resolving the current linked worktree when no path is given, using explicit paths, and validating Git’s worktree registry.
- Match the user's language for any clarification question. For Korean prompts, ask in Korean; do not show an English operation menu.
</purpose>
<routing_rule>
Use
when the user wants to:
- create a worktree, workspace, branch folder, or isolated checkout
- run multiple coding agents or tasks in parallel without file conflicts
- list, open, switch to, remove, prune, repair, lock, or unlock worktrees
- delete the current linked worktree when the user is already inside it and says things like "remove/delete this worktree" or "delete worktree"
- standardize worktree folders under
.hypercore/git-worktree/<folder_name>
- review or test a branch/PR/issue in a separate local directory
- the user only asks for normal branch creation or checkout in the current folder
- the user asks for history rewriting, rebase strategy, or commit grouping without a worktree operation
- the requested isolation must be a container, VM, or separate clone rather than a Git worktree
</routing_rule>
<activation_examples>
Positive requests:
- "Create a worktree for and open Codex there."
- "
git-worktree fix/api-timeout
"
- "Create this branch as a worktree under ."
- "Spin up three isolated worktrees for parallel agents."
- "Create a new worktree and move me into it."
- "List my active git worktrees and remove the stale ones safely."
- "I'm already in this worktree; delete this worktree safely."
- "I am already inside this worktree; delete the worktree safely."
- "Set up PR #42 for review in a separate worktree."
Negative requests:
- "Create a new branch here and checkout it." Use normal Git branch workflow.
- "Explain what Git worktree means." Answer directly unless an actionable worktree operation is requested.
- "Make a Docker dev environment for each branch." Use a container/dev-env workflow instead.
Boundary request:
- "Set up an isolated workspace for this risky refactor."
Use this skill if Git branch isolation is enough; escalate to a container/VM workflow only if runtime, database, port, or dependency isolation is required.
</activation_examples>
<trigger_conditions>
| User intent | Activate |
|---|
| Create a branch-specific working directory | yes |
| Parallel AI agent/coding sessions on one repo | yes |
| List or open existing worktrees | yes |
| Remove, prune, lock, unlock, repair, or move worktrees | yes |
| Delete the current linked worktree from inside that worktree | yes |
| Configure project default worktree root | yes |
| Plain or branch-only operations | no |
| General Git tutorial with no operation | no |
</trigger_conditions>
<argument_handling>
- If the user invokes or supplies one positional argument after the skill name, treat as an explicit create target and do not ask what worktree to create.
- Interpret as the branch/task label unless it is clearly a PR/issue/ref/path; preserve the branch/ref text and sanitize only the folder label.
- Use
.hypercore/git-worktree/<folder_name>
, then move the active agent context into the new worktree.
- Ask only if the argument is unsafe, reserved, conflicts with an unrelated path, or cannot map to a Git ref/branch/task label.
</argument_handling>
<defaults>
- Canonical root:
<repo-root>/.hypercore/git-worktree/
.
- Canonical path:
<repo-root>/.hypercore/git-worktree/<folder_name>
.
- Default : ask what work will happen in the worktree when the user has not already supplied a clear task, then derive a concise sanitized slug from that answer.
- If the user already supplied a positional argument, branch, PR, issue, or task name, derive from that context without asking again.
- Clarification language: infer the operation from the request whenever possible. If an operation is truly ambiguous, ask one short question in the user's language. For Korean users, ask which worktree operation they want, such as create, list, open/move, delete, clean up, repair, lock, or unlock. Never ask a generic English operation menu.
- After creating a worktree, creation is not complete until the active execution context has moved into that folder: in a persistent shell/session, actually execute there; in tool-only environments, set the next command's and keep subsequent commands there. Do not merely display as the final answer.
- If removal is requested without a path and the active context is already inside a linked worktree, treat the current worktree root as the removal target, move out to a safe worktree before removal, and never remove the main worktree.
- Add or verify a local ignore/exclude for before creating nested worktrees.
- Prefer native commands over installing extra managers.
- Prefer one task, branch, terminal session, and editor window per worktree.
</defaults>
<supported_operations>
- Create a worktree from a new branch, existing local branch, remote branch, PR ref, issue task, or commit.
- Enter/open a worktree in the shell, editor, tmux session, or agent CLI when available.
- List worktrees with branch, path, dirty/clean status, lock/prunable annotations, and next action.
- Remove completed worktrees after verifying committed or intentionally discarded changes.
- Remove the current linked worktree even when the request is made from inside it, by resolving the current top-level path first and executing from another safe worktree.
- Prune stale metadata with a dry run first.
- Repair moved worktrees and lock long-lived worktrees when accidental pruning would be harmful.
</supported_operations>
<workflow>
Phase 1. Inspect repository and intent
- Confirm the current directory is inside a Git repository.
- Resolve the repository root with
git rev-parse --show-toplevel
.
- Read existing worktrees with
git worktree list --porcelain
.
- Identify the requested operation: create, open, list, remove, prune, repair, lock, or unlock.
- For removal with no explicit path, if the current directory is inside a linked worktree, select the current worktree root as the target; if it is the main worktree, stop and ask for a specific target instead of deleting the repository root.
- If a argument is present, treat it as a create target and derive branch name, folder name, and base reference from it before any clarification.
- Otherwise derive branch name, folder name, and base reference from user wording or current branch.
- If creating and the task/folder intent is missing or too vague, ask one concise question before creation in the user's language. For Korean users, ask what work they plan to do in this worktree.
- If the operation itself is unclear, avoid a generic English menu. Ask one localized question only after inference fails.
Phase 2. Apply the project path convention
Use
.hypercore/git-worktree/<folder_name>
as the default target path unless the user explicitly provides another path. Choose
from the stated work intent, not from an arbitrary timestamp.
Before creating the worktree:
- create the parent directory if needed
- derive and sanitize from the stated work intent before path construction
- verify the target path does not already contain unrelated files
- ensure is ignored or locally excluded so the main worktree does not treat nested worktrees as normal untracked content
- avoid reusing a branch already checked out by another worktree unless the operation is only to open/list it
Phase 3. Execute the worktree operation
Follow
@rules/worktree-lifecycle.md
for command patterns, safety checks, and cleanup rules.
Creation preference:
- Existing local branch:
git worktree add <path> <branch>
.
- Existing remote branch: create a tracking/local branch if needed, then add the worktree.
- New task branch:
git worktree add -b <branch> <path> <base-ref>
.
- Detached inspection: use only when the user is reviewing a commit and does not intend to commit changes.
Current-worktree removal preference:
- When the user says to delete/remove the worktree while already inside a linked worktree, infer the target from
git rev-parse --show-toplevel
.
- Confirm it is not the main worktree by comparing and
git rev-parse --git-common-dir
and by reading git worktree list --porcelain
.
- Check status from the target path, save the target path, move execution to the main/safe worktree, then run
git worktree remove <target-path>
.
- Use only when the user explicitly requested force/discard semantics or has confirmed dirty changes are disposable.
Phase 4. Move into the new worktree and verify
After a create operation:
- immediately switch subsequent agent commands to the new worktree path
- treat "create and enter/open/switch" as a single operation; do not stop after
- if a persistent shell, tmux pane, or CLI session is available, run in that active session and verify with
- if only tool calls are available, prove the move by running or with the tool's set to the new worktree path
- keep every later shell/tool command for this task on unless there is an explicit reason to operate from another worktree
- if an editor, tmux session, or agent was requested, launch it with the new worktree path as its working directory
- report as the command executed in the persistent session, or as the fallback command the user should run only when the interface cannot mutate the parent shell
- do not claim the move happened unless the persistent session changed directories or at least one post-create command actually ran from the new path via or an equivalent tool working-directory setting
After any operation, report:
- worktree path
- branch or commit checked out
- whether the worktree is clean or dirty
- command to enter/open it, and whether the active agent context has been moved there
- any setup still needed inside that folder, such as dependency install, environment copy, unique ports, or agent prompt handoff
For removal/cleanup, report what was removed and what remains in
.
</workflow>
<examples>
Create a new feature worktree and move into it
If the user only says "create a worktree" and no task is clear, ask first:
text
What work will happen in this worktree?
Then derive the folder name from the answer:
bash
repo_root="$(git rev-parse --show-toplevel)"
branch="feature/auth-session"
folder="auth-session"
path="$repo_root/.hypercore/git-worktree/$folder"
exclude_file="$(git rev-parse --git-path info/exclude)"
mkdir -p "$(dirname "$path")" "$(dirname "$exclude_file")"
grep -qxF ".hypercore/git-worktree/" "$exclude_file" 2>/dev/null || printf '\n.hypercore/git-worktree/\n' >> "$exclude_file"
git fetch --all --prune
git worktree add -b "$branch" "$path" HEAD
git -C "$path" status --short --branch
cd "$path" && pwd
List worktrees for review
bash
git worktree list --porcelain
git worktree list --verbose
Safe cleanup
bash
git -C "$path" status --short
git worktree remove "$path"
git worktree prune --dry-run
git worktree prune
Delete the current linked worktree from inside it
When the user is already inside a linked worktree and says "delete this worktree" / "delete worktree", resolve the target before moving out:
bash
target_path="$(git rev-parse --show-toplevel)"
git_dir="$(git rev-parse --git-dir)"
common_dir="$(git rev-parse --git-common-dir)"
main_path="$(git worktree list --porcelain | awk 'NR==1 && /^worktree / {print substr($0, 10)}')"
# Refuse if this is the main worktree or no safe main worktree is available.
if [ "$(cd "$git_dir" && pwd -P)" = "$(cd "$common_dir" && pwd -P)" ] || [ -z "$main_path" ] || [ "$main_path" = "$target_path" ]; then
echo "Refusing to remove this path as a linked worktree: $target_path" >&2
exit 1
fi
git -C "$target_path" status --short --branch
cd "$main_path"
git worktree remove "$target_path"
git worktree list --porcelain
</examples>
<validation>
Deterministic regression command:
bash
python3 skills/git-worktree/scripts/validate-git-worktree-skill.py
Trigger checks:
Operation checks:
Resource placement checks:
</validation>