🎯

config-management

🎯Skill

from mthines/gw-tools

VibeIndex|
What it does

Configures and customizes Git worktree setups for specific project types, enabling automatic file syncing and environment-specific workflows.

config-management

Installation

Install skill:
npx skills add https://github.com/mthines/gw-tools --skill config-management
1
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

# gw-tools

Git Worktree Tools - A CLI for managing Git worktrees with automatic file syncing.

πŸ› οΈ gw CLI Tool

gw simplifies Git worktree management with features like:

  • Create worktrees with automatic file copying (.env, secrets, configs)
  • Quick navigation with gw cd and smart partial matching
  • Proxy commands for git worktree operations with enhanced output

Installation

```bash

npm install -g @gw-tools/gw-tool

```

Quick Start

```bash

# Create a new worktree (auto-creates branch if needed, auto-copies files)

gw add feature-auth

# Navigate to worktree

gw cd feature-auth

# Sync files between worktrees

gw sync feature-auth .env secrets/

# List all worktrees

gw list

# Remove when done

gw remove feature-auth

```

πŸ“– Full documentation: [packages/gw-tool/README.md](packages/gw-tool/README.md)

---

πŸŽ“ AI Skills (for Claude Code, Copilot, Cursor, etc.)

Enhance your AI agent with gw-tools knowledge using [skills.sh](https://skills.sh):

```bash

npx skills add https://github.com/mthines/gw-tools --skill @gw-git-worktree-workflows @gw-config-management @gw-multi-worktree-dev # installs all skills

```

```bash

# Master Git worktrees and gw workflows

npx skills add https://github.com/mthines/gw-tools --skill @gw-git-worktree-workflows

# Configure gw for your project type (Next.js, monorepos, etc.)

npx skills add https://github.com/mthines/gw-tools --skill @gw-config-management

# Advanced parallel development patterns

npx skills add https://github.com/mthines/gw-tools --skill @gw-multi-worktree-dev

```

Once installed, your AI agent can:

  • Create worktrees for bug fixes and features automatically
  • Configure gw for your specific project type
  • Navigate between worktrees and manage files
  • Create PRs from isolated worktrees

πŸ“– Skill documentation: [skills/README.md](skills/README.md)