Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计未展示

ring%3ausing-git-worktrees环%3ausing git worktrees

Agent Skill

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

总安装

776

周安装

33

GitHub Stars

180

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:using-git-worktrees

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和安装命令核验具体用法。
  • 安装前建议确认权限范围及是否会触发联网或文件读写。
  • ring%3ausing-git-worktrees 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Using Git Worktrees

Overview

Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching.

Core principle: Systematic directory selection + safety verification = reliable isolation.

Announce at start: "I'm using the ring:using-git-worktrees skill to set up an isolated workspace."

Directory Selection Process

Priority order: (1) Existing .worktrees/ or worktrees/ (2) CLAUDE.md preference (3) Ask user

ls -d .worktrees worktrees 2>/dev/null   # Check existing (prefer .worktrees)
grep -i "worktree.*director" CLAUDE.md    # Check project preference

If none found, ask: .worktrees/ (project-local, hidden) OR ~/.config/ring/worktrees/<project>/ (global)

Safety Verification

Project-local directories: MUST verify.gitignore before creating: grep -q "^\.worktrees/$\|^worktrees/$".gitignore

  • If NOT in.gitignore: Add it → commit → proceed (fix broken things immediately)
  • Why critical: Prevents accidentally committing worktree contents

Global directory (~/.config/ring/worktrees): No verification needed - outside project.

Creation Steps

# 1. Detect project
project=$(basename "$(git rev-parse --show-toplevel)")

# 2. Create worktree (path = $LOCATION/$BRANCH or ~/.config/ring/worktrees/$project/$BRANCH)
git worktree add "$path" -b "$BRANCH_NAME" && cd "$path"

# 3. Auto-detect and run setup
[ -f package.json ] && npm install
[ -f Cargo.toml ] && cargo build
[ -f requirements.txt ] && pip install -r requirements.txt
[ -f pyproject.toml ] && poetry install
[ -f go.mod ] && go mod download

# 4. Verify clean baseline (npm test / cargo test / pytest / go test ./...)

If tests fail: Report failures, ask whether to proceed or investigate. If tests pass: Report: Worktree ready at <path> | Tests passing (<N> tests) | Ready to implement <feature>

Quick Reference

SituationAction
.worktrees/ existsUse it (verify.gitignore)
worktrees/ existsUse it (verify.gitignore)
Both existUse .worktrees/
Neither existsCheck CLAUDE.md → Ask user
Directory not in.gitignoreAdd it immediately + commit
Tests fail during baselineReport failures + ask
No package.json/Cargo.tomlSkip dependency install

Common Mistakes

MistakeProblemFix
Skip.gitignore verificationWorktree contents tracked, pollute git statusAlways grep.gitignore first
Assuming directory locationInconsistency, violates conventionsFollow priority: existing > CLAUDE.md > ask
Proceeding with failing testsCan't distinguish new vs pre-existing bugsReport failures, get permission
Hardcoding setup commandsBreaks on different toolsAuto-detect from project files

Example Workflow

Announce → Check .worktrees/ exists → Verify.gitignore → git worktree add.worktrees/auth -b feature/authnpm installnpm test (47 passing) → Report ready

Red Flags

Never:

  • Create worktree without.gitignore verification (project-local)
  • Skip baseline test verification
  • Proceed with failing tests without asking
  • Assume directory location when ambiguous
  • Skip CLAUDE.md check

Always:

  • Follow directory priority: existing > CLAUDE.md > ask
  • Verify.gitignore for project-local
  • Auto-detect and run project setup
  • Verify clean test baseline

Integration

Called by:

  • brainstorming (Phase 4) - REQUIRED when design is approved and implementation follows
  • Any skill needing isolated workspace

Pairs with:

  • finishing-a-development-branch - REQUIRED for cleanup after work complete
  • ring:executing-plans or ring:subagent-driven-development - Work happens in this worktree

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
.gitignore SafetyProject-local worktree directory not in.gitignoreSTOP and report
Baseline TestsTests fail during worktree setupSTOP and report
Directory AmbiguityMultiple conflicting worktree locations existSTOP and report
Permission IssuesCannot create worktree in target directorySTOP and report

Cannot Be Overridden

The following requirements CANNOT be waived:

  • Project-local worktree directories MUST be in.gitignore before creation
  • Baseline test verification is REQUIRED before proceeding with work
  • Directory selection MUST follow priority order: existing > CLAUDE.md > ask user
  • Worktree creation MUST include dependency installation and test verification

Severity Calibration

SeverityConditionRequired Action
CRITICALWorktree directory not in.gitignore (project-local)MUST add to.gitignore immediately
CRITICALProceeding with failing baseline testsMUST report failures and get permission
HIGHSkipping dependency installation stepMUST run appropriate package manager
HIGHAssuming directory location when ambiguousMUST follow priority order or ask user
MEDIUMMissing CLAUDE.md check in priority orderShould check CLAUDE.md preferences
LOWNot auto-detecting project typeFix in next iteration

Pressure Resistance

User SaysYour Response
"Skip.gitignore check, just create the worktree""CANNOT skip.gitignore verification for project-local directories. Worktree contents would pollute git status."
"Tests are failing but proceed anyway""CANNOT proceed with failing baseline tests. I need to report failures so we can distinguish pre-existing bugs from new ones."
"Put the worktree in this custom location""I'll verify that location doesn't conflict with existing conventions and check.gitignore requirements first."
"Skip dependency installation, it takes too long""CANNOT skip dependency installation. Tests won't run correctly without dependencies, invalidating baseline verification."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
".gitignore check is paranoia"Without it, worktree contents get tracked, polluting every git status.MUST verify.gitignore first
"I know where worktrees go in this project"Assumption conflicts with existing directories or CLAUDE.md preferences.MUST follow directory priority order
"Failing tests are probably unrelated"You cannot distinguish new vs pre-existing bugs without clean baseline.MUST report failures and ask before proceeding
"Setup is straightforward, skip auto-detection"Different projects use different tools. Manual setup misses dependencies.MUST auto-detect from project files
"Global directory doesn't need verification"Global directories don't need.gitignore verification - this is correct. Only project-local needs it.MUST distinguish global vs project-local

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.46%
按下载量换算99

Claude

28.41%
按下载量换算77

Cursor

18.92%
按下载量换算51

Gemini CLI

9.11%
按下载量换算25

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills