Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

git-merge-expert-worktreegit 合并专家工作树

Agent Skill

git-merge-expert-worktree 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,364

周安装

58

GitHub Stars

公开资料未说明

下载量

478
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill git-merge-expert-worktree

简介

git-merge-expert-worktree 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中按条件快速定位目标内容。

  • 适用于多分支环境下的信息筛选、线索匹配或工作流支持场景。
  • 通过安装命令从指定仓库添加,实际功能依赖原始文档说明。
  • 使用时应关注权限控制,注意是否涉及系统调用或数据访问。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Non-negotiable rules:

  1. Start by listing existing worktrees and identifying the current worktree context.
  2. Keep merge operations isolated from the main working tree whenever a worktree is being used.
  3. Use git worktree remove, not rm -rf, for normal cleanup.
  4. Never delete non-ephemeral branches automatically.
  5. Get explicit user confirmation before force-removing dirty worktrees or performing ambiguous branch cleanup.

Git Merge Expert — Worktree Specialist

Inputs

  • $request: Merge target, source branch, worktree name, cleanup task, or conflict-resolution goal

Goal

Perform safe worktree-based git operations by:

  • discovering existing worktrees and current context
  • creating or selecting the right isolated workspace
  • doing merge/conflict work in the worktree
  • validating the result before integration
  • cleaning up worktrees and ephemeral branches correctly

Step 0: Resolve the requested operation

Determine whether the user wants to:

  • create a worktree
  • perform a merge in a worktree
  • resolve merge conflicts in a worktree
  • validate an existing worktree merge
  • clean up stale or finished worktrees

If the requested source/target branches or cleanup scope are ambiguous, use AskUserQuestion before mutating git state.

Success criteria: The intended worktree action, branch scope, and cleanup expectations are explicit.

Step 1: Discover current worktree state

Before creating or removing anything, inspect:

  • git worktree list
  • current repository root
  • current branch and working tree state
  • whether the target branch is already checked out in another worktree

Load references/worktree-conventions.md for path, naming, and lifecycle rules.

Rules:

  • always list worktrees first
  • verify whether you are already inside a linked worktree or the main tree
  • do not attempt to check out the same branch in two worktrees

Success criteria: Existing worktrees, branch occupancy, and current context are known.

Step 2: Create or prepare the isolated worktree

Create or reuse the right worktree for the task.

Typical decisions:

  • managed worktree path vs sibling-path worktree
  • ephemeral session branch vs existing branch
  • setup needs such as dependency install, symlinks, or env-file propagation

Load references/worktree-conventions.md for path and branch conventions.

Rules:

  • prefer isolated worktrees over doing merge work in the main tree
  • verify creation with git worktree list
  • only run setup steps that make sense for the detected project

Success criteria: The worktree exists, is on the intended branch, and is ready for merge work.

Step 3: Perform the merge or conflict operation in the worktree

Inside the worktree:

  • create a backup tag when appropriate
  • run the merge, rebase, cherry-pick, or cleanup operation requested
  • resolve conflicts carefully without silently dropping either side

Load references/merge-playbook.md for:

  • conflict tiers
  • lockfile handling
  • abort-and-recreate recovery
  • stale-worktree cleanup patterns

Rules:

  • do not merge in the main tree if the user asked for worktree isolation
  • regenerate conflicted lockfiles rather than hand-editing them
  • abort and recreate the worktree when recovery is cleaner than patching a broken merge state

Success criteria: The git operation is complete in the worktree and the result is coherent.

Step 4: Validate before final integration

Validate the worktree result with the narrowest relevant checks:

  • git status
  • conflict-free state
  • project build/test/typecheck commands when appropriate
  • branch topology review when needed

Rules:

  • do not claim merge success if unresolved conflicts or failing validation remain
  • keep validation scoped to the project/tooling reality
  • if validation fails, stop or recover before cleanup/push

Success criteria: The worktree result is clean enough to integrate or push.

Step 5: Cleanup and verify the main tree remains untouched

When the operation is complete:

  • return to the main repository context if needed
  • remove the worktree with git worktree remove
  • delete only ephemeral session branches when appropriate
  • run git worktree prune
  • verify the remaining worktree list and main-tree state

Load references/merge-playbook.md for cleanup and recovery rules.

Rules:

  • never auto-delete non-session branches
  • warn before force-removing a dirty worktree
  • explicitly verify the main working tree was not unintentionally modified

Success criteria: The worktree lifecycle is closed cleanly and the user can see the final git state.

Guardrails

  • Do not let the model invoke this skill proactively; it mutates git and worktree state.
  • Do not add context: fork; this workflow already creates git isolation explicitly.
  • Do not add paths:; this is a generic git workflow skill.
  • Do not keep giant walkthroughs, command tables, or recovery encyclopedias inline in SKILL.md.
  • Do not use rm -rf for normal worktree cleanup.
  • Do not delete user branches unless the user explicitly asked.
  • Do not use force cleanup silently on dirty worktrees.

When To Load References

  • references/worktree-expertise.md Use at session start for role and domain expertise.
  • references/worktree-conventions.md Use for branch naming, path layout, lifecycle, setup conventions, and destroy safety.
  • references/merge-playbook.md Use for merge execution, conflict-resolution tiers, lockfile handling, stale-worktree cleanup, and abort-and-recreate recovery.

Output Contract

Report:

  1. the requested operation and resolved branch/worktree scope
  2. the worktrees created, reused, or removed
  3. the merge/conflict outcome and validation status
  4. any branches or tags created or deleted
  5. the final git worktree list and main-tree safety status

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.22%
按下载量换算173

Claude

31.29%
按下载量换算150

Cursor

18.42%
按下载量换算88

Gemini CLI

10.71%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills