wm-git-worktree-manager — community wm-git-worktree-manager, community, ide skills

v1.0.0

About this Skill

Perfect for Development Agents needing efficient git worktree management capabilities. Use when working with git worktrees - creating isolated workspaces for branches, managing multiple features in parallel, or cleaning up worktrees

Devdha Devdha
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
51
Canonical Locale
en
Detected Body Locale
en

Perfect for Development Agents needing efficient git worktree management capabilities. Use when working with git worktrees - creating isolated workspaces for branches, managing multiple features in parallel, or cleaning up worktrees

Core Value

Empowers agents to manage multiple worktrees efficiently using explicit CLI arguments, supporting non-interactive mode and project config initialization via .wm.yaml files.

Ideal Agent Persona

Perfect for Development Agents needing efficient git worktree management capabilities.

Capabilities Granted for wm-git-worktree-manager

Initializing project configurations with wm init
Adding new worktrees with wm add
Removing existing worktrees with wm remove

! Prerequisites & Limits

  • Requires non-interactive mode
  • Explicit arguments mandatory
  • Limited to git worktree management

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is wm-git-worktree-manager?

Perfect for Development Agents needing efficient git worktree management capabilities. Use when working with git worktrees - creating isolated workspaces for branches, managing multiple features in parallel, or cleaning up worktrees

How do I install wm-git-worktree-manager?

Run the command: npx killer-skills add Devdha/wm/wm-git-worktree-manager. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for wm-git-worktree-manager?

Key use cases include: Initializing project configurations with wm init, Adding new worktrees with wm add, Removing existing worktrees with wm remove.

Which IDEs are compatible with wm-git-worktree-manager?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for wm-git-worktree-manager?

Requires non-interactive mode. Explicit arguments mandatory. Limited to git worktree management.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Devdha/wm/wm-git-worktree-manager. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use wm-git-worktree-manager immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

wm-git-worktree-manager

Install wm-git-worktree-manager, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

WM - Git Worktree Manager

CLI tool for easy git worktree management.

IMPORTANT: Non-Interactive Mode Required

Always use explicit arguments. Interactive mode does not work in automated environments.

bash
1# CORRECT - explicit arguments 2wm add feature-auth 3wm remove feature-auth 4 5# WRONG - interactive mode (will hang) 6wm add # NO! 7wm remove # NO!

Quick Reference

CommandDescription
wm initInitialize project config (.wm.yaml)
wm add <branch>Create worktree for branch
wm add <branch> -p <path>Create worktree at custom path
wm listList all worktrees
wm remove <branch>Remove worktree by branch name
wm remove <path>Remove worktree by path
wm remove -b <branch>Remove worktree AND delete branch
wm remove -f <branch>Force remove (skip confirmation)

Common Patterns

Create Worktree

bash
1# Basic usage 2wm add feature-login 3 4# With custom path 5wm add feature-login -p ./workspaces/login 6 7# Branch with slash becomes hyphenated folder 8wm add feature/auth 9# Creates: ../wm_repo/feature-auth/

Remove Worktree

bash
1# By branch name 2wm remove feature-auth 3 4# By path 5wm remove ../wm_repo/feature-auth 6 7# Also delete the git branch 8wm remove -b feature-auth 9 10# Force (skip confirmation) 11wm remove -f feature-auth

List Worktrees

bash
1wm list 2# or 3wm ls

Configuration (.wm.yaml)

yaml
1version: 1 2 3worktree: 4 base_dir: "../wm_{repo}" # {repo} replaced with repo name 5 6sync: 7 - ".env" # Copy to worktree 8 - "apps/*/.env" # Glob supported 9 - src: ".env.example" 10 dst: ".env" 11 mode: copy # or "symlink" 12 when: missing # or "always" 13 14tasks: 15 post_install: 16 mode: background # Async execution 17 commands: 18 - "npm install"

When to Use

  • Working on multiple features in parallel
  • Reviewing PRs while continuing other work
  • Running long builds/tests on separate branch
  • Quick branch switching without stash

Common Mistakes

MistakeSolution
Using interactive modeAlways provide branch/path argument
Expecting nested folders for feature/authCreates feature-auth (flat) since v0.1.1
Trying to remove main worktreeNot allowed - main worktree is protected
Branch used by another worktreeWarning shown, requires confirmation

Related Skills

Looking for an alternative to wm-git-worktree-manager or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer