Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计提醒

git-worktreeGit 工作树

Agent Skill

git-worktree 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

214

周安装

9

GitHub Stars

3

下载量

75
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:git-worktree(Git 工作树)
来源仓库:https://github.com/alpoxdev/hypercore
仓库路径:skills/git-worktree
安装命令:
npx skills add https://github.com/alpoxdev/hypercore --skill git-worktree
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alpoxdev/hypercore --skill git-worktree

简介

git-worktree 用于创建和管理隔离的 Git 工作树,支持并行开发与实验。

  • 适用于多特性开发、热修复或 Agent 会话隔离,避免频繁切换分支。
  • 通过标准路径管理 worktree,自动注册与清理,提升协作效率。
  • 安装前需确认项目目录结构是否符合 .hypercore/git-worktree/ 约定。
  • 注意操作前会检查工作树状态,防止误删或冲突。

SKILL.md

@rules/worktree-lifecycle.md @references/source-survey.md

Git Worktree Skill

Make isolated branch workspaces cheap, visible, and safe.
  • 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.

<routing_rule>

Use git-worktree 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

Do not use git-worktree when:

  • 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 feature/auth and open Codex there."
  • "Create this branch as a worktree under .hypercore/git-worktree."
  • "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 intentActivate
Create a branch-specific working directoryyes
Parallel AI agent/coding sessions on one repoyes
List or open existing worktreesyes
Remove, prune, lock, unlock, repair, or move worktreesyes
Delete the current linked worktree from inside that worktreeyes
Configure project default worktree rootyes
Plain git checkout or branch-only operationsno
General Git tutorial with no operationno

</trigger_conditions>

  • Canonical root: <repo-root>/.hypercore/git-worktree/.
  • Canonical path: <repo-root>/.hypercore/git-worktree/<folder_name>.
  • Default <folder_name>: 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 branch, PR, issue, or task name, derive <folder_name> from that context without asking again.
  • After creating a worktree, move the active execution context into that folder: run follow-up shell commands with workdir=<path>, open the requested editor/session there, and report cd <path> for the user shell.
  • 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 .hypercore/git-worktree/ before creating nested worktrees.
  • Prefer native git worktree commands over installing extra managers.
  • Prefer one task, branch, terminal session, and editor window per worktree.

<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 git worktree remove 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>

Phase 1. Inspect repository and intent

  1. Confirm the current directory is inside a Git repository.
  2. Resolve the repository root with git rev-parse --show-toplevel.
  3. Read existing worktrees with git worktree list --porcelain.
  4. Identify the requested operation: create, open, list, remove, prune, repair, lock, or unlock.
  5. 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.
  6. Derive branch name, folder name, and base reference from user wording or current branch.
  7. If creating and the task/folder intent is missing or too vague, ask one concise question before creation: "What work will happen in this worktree?"

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 <folder_name> from the stated work intent, not from an arbitrary timestamp.

Before creating the worktree:

  • create the parent directory if needed
  • derive and sanitize <folder_name> from the stated work intent before path construction
  • verify the target path does not already contain unrelated files
  • ensure .hypercore/git-worktree/ 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:

  1. Existing local branch: git worktree add <path> <branch>.
  2. Existing remote branch: create a tracking/local branch if needed, then add the worktree.
  3. New task branch: git worktree add -b <branch> <path> <base-ref>.
  4. Detached inspection: use --detach only when the user is reviewing a commit and does not intend to commit changes.

Current-worktree removal preference:

  1. When the user says to delete/remove the worktree while already inside a linked worktree, infer the target from git rev-parse --show-toplevel.
  2. Confirm it is not the main worktree by comparing git rev-parse --git-dir and git rev-parse --git-common-dir and by reading git worktree list --porcelain.
  3. Check status from the target path, save the target path, move execution to the main/safe worktree, then run git worktree remove <target-path>.
  4. Use --force 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
  • if a shell command must demonstrate entry, run pwd from that path or execute commands with git -C <path> / tool workdir=<path>
  • if an editor, tmux session, or agent was requested, launch it with the new worktree path as its working directory
  • report the exact cd <path> command because a subprocess cd cannot persistently change the user's parent shell

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 git worktree list.

Create a new feature worktree and move into it

If the user only says "create a worktree" and no task is clear, ask first:

What work will happen in this worktree?

Then derive the folder name from the answer:

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
cd "$path"
pwd

List worktrees for review

git worktree list --porcelain
git worktree list --verbose

Safe cleanup

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:

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

Trigger checks:

  • Positive examples above clearly activate this skill.
  • Negative examples route away from this skill.
  • Boundary examples choose Git worktrees only when branch-level isolation is sufficient.

Operation checks:

  • git rev-parse --show-toplevel succeeds before path construction.
  • create operations have a clear work intent; if missing, one concise question is asked before choosing <folder_name>.
  • <folder_name> is derived from the stated work intent and sanitized before path construction.
  • .hypercore/git-worktree/ is ignored or locally excluded before nested worktree creation.
  • git worktree list --porcelain is read before mutating existing worktrees.
  • removal checks git -C <path> status --short first unless the user explicitly asks for force removal.
  • current-worktree deletion resolves the current top-level path first, refuses the main worktree, moves to another safe worktree, and removes the saved target path rather than running removal from inside the target.
  • cleanup runs git worktree prune --dry-run before git worktree prune.
  • after creation, subsequent commands use the new worktree as their working directory or report why they cannot.

Resource placement checks:

  • Core workflow stays in SKILL.md.
  • Detailed command policy stays in rules/worktree-lifecycle.md.
  • External research and pattern rationale stay in references/source-survey.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.88%
按下载量换算28

Claude

28.9%
按下载量换算22

Cursor

21.63%
按下载量换算16

Gemini CLI

10.4%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/alpoxdev/hypercore --skill git-worktree 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills