worktree-manager — shadcn-ui worktree-manager, zaidan, community, shadcn-ui, ide skills, solidjs

v1.0.0

Acerca de este Skill

Ideal para agentes de desarrollo que requieren una gestión eficiente de git worktree para entornos de desarrollo paralelos con dependencias y configuración aisladas. Manages the full lifecycle of git worktrees — create, list, update, and remove. Handles environment setup (.env), dependency installation (bun install), and port allocation using setup-dev-env script. Use when the user wants to create a worktree, list worktrees, update a worktree, remove a worktree, or set up a parallel development environment.

# Core Topics

carere carere
[59]
[1]
Updated: 3/18/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

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

Ideal para agentes de desarrollo que requieren una gestión eficiente de git worktree para entornos de desarrollo paralelos con dependencias y configuración aisladas. Manages the full lifecycle of git worktrees — create, list, update, and remove. Handles environment setup (.env), dependency installation (bun install), and port allocation using setup-dev-env script. Use when the user wants to create a worktree, list worktrees, update a worktree, remove a worktree, or set up a parallel development environment.

¿Por qué usar esta habilidad?

Habilita a los agentes a gestionar ciclos de vida de git worktree completos, incluyendo la creación, lista, actualización y eliminación de worktrees, con dependencias y configuración aisladas para SolidJS, utilizando comandos y protocolos git.

Mejor para

Ideal para agentes de desarrollo que requieren una gestión eficiente de git worktree para entornos de desarrollo paralelos con dependencias y configuración aisladas.

Casos de uso accionables for worktree-manager

Creación de nuevos worktrees para desarrollo paralelo
Lista y administración de worktrees existentes y su estado
Actualización de worktrees mediante la extracción de cambios y la reinstalación de dependencias

! Seguridad y limitaciones

  • Requiere instalación y configuración de git
  • No es adecuado para la ejecución manual de comandos git

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

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 worktree-manager?

Ideal para agentes de desarrollo que requieren una gestión eficiente de git worktree para entornos de desarrollo paralelos con dependencias y configuración aisladas. Manages the full lifecycle of git worktrees — create, list, update, and remove. Handles environment setup (.env), dependency installation (bun install), and port allocation using setup-dev-env script. Use when the user wants to create a worktree, list worktrees, update a worktree, remove a worktree, or set up a parallel development environment.

How do I install worktree-manager?

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

What are the use cases for worktree-manager?

Key use cases include: Creación de nuevos worktrees para desarrollo paralelo, Lista y administración de worktrees existentes y su estado, Actualización de worktrees mediante la extracción de cambios y la reinstalación de dependencias.

Which IDEs are compatible with 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 worktree-manager?

Requiere instalación y configuración de git. No es adecuado para la ejecución manual de comandos git.

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 carere/zaidan/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 worktree-manager immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

worktree-manager

Install 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

Worktree Manager

Complete git worktree lifecycle management for parallel development environments with isolated dependencies and configuration.

When to use this skill

Use this skill when the user wants to:

  • Create a new worktree for parallel development
  • List all worktrees and their status
  • Update an existing worktree (pull changes, reinstall deps)
  • Remove an existing worktree and clean up

Do NOT use this skill when:

  • User wants to manually run git commands directly
  • The task is unrelated to worktree management
  • User just wants to switch branches (use git checkout instead)

Operations Overview

OperationWhen to Use
CreateUser wants a new parallel development environment
ListUser wants to see existing worktrees and their status
UpdateUser wants to refresh a worktree (pull, reinstall deps)
RemoveUser wants to delete a worktree and clean up

Decision Tree

1. User wants to CREATE a worktree

Keywords: create, new, setup, make, start, initialize, add Action: Follow the CREATE operation

2. User wants to LIST worktrees

Keywords: list, show, display, what, which, status, check, view Action: Follow the LIST operation

3. User wants to UPDATE a worktree

Keywords: update, refresh, pull, sync, reinstall, rebuild Action: Follow the UPDATE operation

4. User wants to REMOVE a worktree

Keywords: remove, delete, cleanup, destroy, stop, kill, terminate Action: Follow the REMOVE operation

Quick Start

For step-by-step operation instructions, see OPERATIONS.md.

For concrete usage examples, see EXAMPLES.md.

For troubleshooting common issues, see TROUBLESHOOTING.md.

Important Notes

Directory Convention

All worktrees are created under trees/ at the project root:

project/
└── trees/
    ├── feature-auth/
    ├── fix-bug-123/
    └── refactor-api/

Environment Setup

  • The .env file from the main project is copied into the worktree
  • The bundled scripts/setup-dev-env.ts script is used to allocate free ports
  • It resolves .env from process.cwd(), so always cd into the worktree before running it
  • The --env-key flag writes a free port value directly to the worktree .env
  • bun install is run after creation to install dependencies

Do NOT attempt to:

  • Create worktrees manually outside the trees/ directory
  • Skip bun install after creating a worktree
  • Remove worktree directories with rm -rf (use git worktree remove)
  • Manually edit ports when setup-dev-env is available

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador