Agent skill

git-worktree-runner

Manages git worktrees using git-worktree-runner (gtr). Use when the user needs to create, list, remove, or navigate worktrees with `git gtr` commands, open editors or AI tools in worktrees, manage parallel development branches, or check out GitHub PRs (including from forks) into worktrees.

dyoshikawa1,265★ · +16/wk · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add dyoshikawa/rulesync --skill git-worktree-runner --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: Bash(git-worktree-runner:*)
Path: .rulesync/skills/git-worktree-runner/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,285 · +20 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Git Worktree Runner (gtr) git-worktree-runner (gtr) is a CLI tool that wraps `git worktree` with quality-of-life features for modern development workflows including editor and AI tool integration. ## Quick Start ```bash # Create a new worktree git gtr new feature-branch # Create from a remote branch git gtr new my-branch --from origin/feature-branch # Open editor in the worktree git gtr editor feature-branch # Start AI tool (claude, codex, etc.) in the worktree git gtr ai feature-branch # Remove a worktree git gtr rm feature-branch ``` ## Commands ### Creating Worktrees ```bash # Create a new worktree with a new branch git gtr new feature-name # Create from a specific ref (remote branch, tag, commit) git gtr new my-branch --from origin/main git gtr new hotfix --from v1.2.3 # Create and immediately open in editor git gtr new feature -e # Create and immediately start AI tool git gtr new feature -a # Create with both editor and AI tool git gtr new feature -e -a ``` ### Opening Editor / AI Tool ```bash # Open the configured editor for a worktree git gtr editor feature-branch # Start configured AI tool in a worktree git gtr ai feature-branch ``` ### Running Commands ```bash # Run an a

What's inside
Steps it walks through
  1. Quick Start
  2. Commands
  3. Creating Worktrees
  4. Opening Editor / AI Tool
  5. Running Commands
  6. Navigation
  7. Listing and Managing
  8. Configuration
  9. Example: Parallel AI Development
  10. Example: PR Review in Isolated Worktree
  11. Example: Hotfix While Working on Feature
  12. Example: Checkout a Fork PR into Worktree
  13. Procedure
  14. Full example (PR #1223 from a fork)
Commands it runs
Create a new worktree
git gtr new feature-branch
Create from a remote branch
git gtr new my-branch --from origin/feature-branch
Open editor in the worktree
git gtr editor feature-branch
Start AI tool (claude, codex, etc.) in the worktree
git gtr ai feature-branch
Remove a worktree
git gtr rm feature-branch
More from rulesync
All skills →
About this skill
What does the git-worktree-runner skill do?

Manages git worktrees using git-worktree-runner (gtr). Use when the user needs to create, list, remove, or navigate worktrees with `git gtr` commands, open editors or AI tools in worktrees, manage parallel development branches, or check out GitHub PRs (including from forks) into worktrees.

How do I install it?

Run `npx skills add dyoshikawa/rulesync --skill git-worktree-runner --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dyoshikawa/rulesync, a repository with 1,285 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going