Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

worktree-ops工作树操作

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

16

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill worktree-ops

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围及是否会触发联网或文件读写。
  • worktree-ops 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Worktree Management

Git worktrees let you check out multiple branches of the same repository into separate directories simultaneously. Each worktree has its own working directory and index while sharing the same .git object store and history. This is useful for running parallel development sessions, reviewing a PR while mid-feature, or isolating experimental changes without stashing or committing half-finished work.

Core Principles

PrincipleMeaning
Isolation without duplicationWorktrees share git history but keep working directories separate -- no need to clone the repo again
Safety firstAlways check for uncommitted changes and unpushed commits before removing a worktree
Clean up after yourselfStale worktree entries and orphaned branches accumulate -- prune regularly
Convention over configurationUse a consistent directory layout (.worktrees/<name>/) and branch naming (worktree-<name>)

Quick Reference

CommandWhat it doesWhen to use
git worktree add <path> -b <branch>Create a new worktree with a new branchStarting parallel work on a new task
git worktree listShow all worktrees with their branches and pathsChecking what is active
git worktree list --porcelainMachine-readable worktree listingScripting or enriching with status info
git worktree remove <path>Remove a worktree directory and its admin filesDone with a parallel task
git worktree remove <path> --forceForce-remove even with uncommitted changesAfter explicit user confirmation
git worktree pruneClean up stale worktree entriesAfter manual directory deletion or errors
git branch -D worktree-<name>Delete the orphaned branch after worktree removalKeeping branches clean

Create

Create a new worktree for an isolated parallel development session.

Workflow

  1. Confirm the current directory is a git repository.
  2. Confirm the current session is NOT already inside a worktree: git rev-parse --is-inside-work-tree && git worktree list If the current working directory is already a worktree (not the main working tree), warn the user and stop.
  3. If a name was provided as an argument, use it. Otherwise, present an interactive prompt (or the platform's equivalent): "What name should I use for this worktree? (e.g., feature-auth, bugfix-123)"
  4. Create the worktree: git worktree add.worktrees/<name> -b worktree-<name>
  5. Change your working directory to the new worktree path.
  6. Report to the user: Worktree created: Directory:.worktrees/<name>/ Branch: worktree-<name> Based on: <current HEAD>
  7. Remind the user:

- Run your stack's dependency installation command (e.g., composer install, npm install, pip install -r requirements.txt) - The worktree shares git history with the main repo but has its own working directory - Use the list command to see all active worktrees - Use the remove command to clean up when done

List

List all active worktrees with their branches, paths, and status.

Workflow

  1. Confirm the current directory is inside a git repository.
  2. Run: git worktree list --porcelain
  3. For each worktree, gather uncommitted change count: git -C <worktree-path> status --short 2>/dev/null
  4. Display a clean table: Active worktrees: | # | Name | Branch | Path | Status | |---|--------------|----------------------|-------------------------------|---------------| | 1 | (main) | main | /path/to/repo | clean | | 2 | feature-auth | worktree-feature-auth|.worktrees/feature-auth | 3 uncommitted | | 3 | bugfix-123 | worktree-bugfix-123 |.worktrees/bugfix-123 | clean |
  5. If no worktrees exist beyond the main working tree, say: "No additional worktrees found. Use the create command to create one."

Switch

Switch your working directory to a different existing worktree.

Workflow

  1. Confirm the current directory is inside a git repository.
  2. Run: git worktree list If only the main working tree exists, say: "No worktrees available to switch to. Use the create command to create one." and stop.
  3. If a name was provided as an argument, find the matching worktree path. Otherwise, show the list and present an interactive prompt (or the platform's equivalent): "Which worktree do you want to switch to?"
  4. If the name does not match any existing worktree, say: "Worktree <name> not found." and show the available list.
  5. Open a terminal in the worktree path, or switch your editor to the worktree directory.
  6. Report to the user: Switched to worktree: Directory: <worktree-path> Branch: <branch-name>
  7. Show a quick status: git status --short

Remove

Remove one or all worktrees from the current repository.

Workflow

  1. Confirm the current directory is inside a git repository.
  2. Run: git worktree list If no worktrees exist beyond the main working tree, say: "No worktrees to clean up." and stop.
  3. Determine what to remove:

- If argument is all -- remove all worktrees (except the main working tree). - If a specific name was provided -- remove only that worktree. - If no argument -- show the list and present an interactive prompt (or the platform's equivalent): "Which worktree should I remove? Enter the name, or type all to remove everything."

  1. Safety check -- for each worktree being removed: git -C <worktree-path> status --short git -C <worktree-path> log --oneline @{upstream}..HEAD 2>/dev/null If there are uncommitted changes or unpushed commits, warn the user: WARNING: Worktree "<name>" has uncommitted changes / unpushed commits: - 2 modified files - 1 unpushed commit These will be permanently lost. Continue? (yes/no) Wait for explicit confirmation before proceeding.
  2. For each worktree to remove: git worktree remove <path> --force git branch -D worktree-<name> 2>/dev/null Use --force only after the user has confirmed in step 4.
  3. Prune stale entries: git worktree prune
  4. Report what was removed: Removed worktrees: - feature-auth (branch worktree-feature-auth deleted) - bugfix-123 (branch worktree-bugfix-123 deleted) Remaining worktrees: 1 (main working tree only)

Troubleshooting

ProblemCauseFix
fatal: '<path>' is a missing but locked worktreeWorktree directory was deleted manually but the lock file remainsRun git worktree unlock <path> then git worktree prune
Stale entries in git worktree listWorktree directory was deleted without using git worktree removeRun git worktree prune to clean up admin files
fatal: '<branch>' is already checked outBranch is active in another worktreeSwitch the other worktree to a different branch first, or remove it
Worktree path exists but is emptyInterrupted creation or corrupted stateRun git worktree remove <path> --force then git worktree prune

Integration with Other Skills

SituationRecommended Skill
When managing branches and commitsgit-workflow
When executing a TDD implementation in an isolated worktreetest-driven-development
When following a full ticket workflow that uses worktreesticket-delivery

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.01%
按下载量换算22

Claude

31.42%
按下载量换算20

Cursor

18.06%
按下载量换算11

Gemini CLI

9.64%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills