plugins/git-worktrees/skills/worktree-manager/SKILL.md
Proactive git worktree orchestration -- detects WIP state (uncommitted changes, stashes, unpushed commits) and offers to isolate work into worktrees. MUST activate BEFORE any implementation task (add, create, build, implement, develop, make, fix, refactor) when the working directory has uncommitted changes or stashes. Also provides dashboard, context recovery, multi-worktree creation, cleanup advisor, and conflict early warning across parallel development sessions. Triggers: any implementation request when WIP exists, "show my worktrees", "what am I working on", "help me manage parallel tasks", "worktree status", "coordinate my work". TRIGGER WHEN: before any implementation task (add, create, build, fix, refactor) when the working directory has uncommitted changes, stashes, or unpushed commits; when the user asks about worktrees, branches, or parallel development. DO NOT TRIGGER WHEN: the repo state is clean and the user is doing a single-file read-only task.
npx skillsauth add acaprino/alfio-claude-plugins worktree-managerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Orchestrate parallel development through git worktrees. Proactively detect WIP state and offer isolation. Provide dashboards, context recovery, and conflict warnings.
Activate when session starts and working directory has WIP state. Detection:
# Uncommitted or staged changes
git status --porcelain
# Stashes
git stash list
# Unpushed commits (may fail if no upstream - that's ok)
git log --oneline @{u}..HEAD 2>/dev/null
If ANY of these return output, present:
I notice you have work in progress:
[X modified files / Y staged files / Z stashes / N unpushed commits]
Would you like to:
A) Move this WIP into a worktree (stash, create worktree, apply there)
B) Continue on current branch (I'll back off)
C) Show details first
git stash push -m "wt-migration: <name>"/wt new <name> --desc "..." -- pass name and description directly, never prompt for category or work typegit stash popBack off for the session. Do not prompt again about WIP state.
Show full output of all three detection commands, then re-offer A/B.
When asked "show my worktrees", "what am I working on", or "worktree status":
.worktrees/registry.jsongit -C <path> log --oneline <base>..<branch> - commits aheadgit -C <path> log --oneline <branch>..<base> - commits behind basegit -C <path> status --porcelain - uncommitted changesgit -C <path> log -1 --format=%ar - last activityParallel Development Dashboard
==============================
[1] auth-refactor [active] - 2h ago
Branch: wt/auth-refactor (from master)
+5 commits, 0 behind | 3 modified files
"Refactoring auth middleware for compliance"
[2] fix-login [paused] - 1d ago
Branch: wt/fix-login (from master)
+2 commits, 3 behind | clean
"Fix OAuth login redirect bug"
Warnings:
- fix-login is 3 commits behind master - consider rebasing
When user says "what am I working on" or returns after a break:
When user says "I need to work on N things" or lists multiple tasks:
I'll create 3 worktrees:
1. auth-refactor -> wt/auth-refactor "Refactor auth middleware"
2. fix-login -> wt/fix-login "Fix OAuth redirect bug"
3. add-dashboard -> wt/add-dashboard "New analytics dashboard"
Proceed?
/wt new flowWhen asked "clean up worktrees" or detected during dashboard:
Identify candidates:
Present:
Cleanup recommendations:
Done (branch merged):
- fix-login: branch wt/fix-login merged into master
-> /wt rm fix-login
Stale (no activity >7 days):
- old-experiment: last commit 12 days ago
-> Pause? Remove?
Missing (path gone):
- deleted-wt: path .worktrees/deleted-wt not found
-> Remove from registry
When asked "check for conflicts" or proactively during dashboard if >1 active worktree:
# Files changed in each worktree vs its base
git -C <path1> diff --name-only <base1>...<branch1>
git -C <path2> diff --name-only <base2>...<branch2>
git -C <path1> diff <base1>...<branch1> -- <file>
git -C <path2> diff <base2>...<branch2> -- <file>
Conflict Risk Assessment
========================
auth-refactor vs fix-login:
Overlapping files: 2
src/middleware/auth.ts - LIKELY CONFLICT (both modify lines 45-80)
src/config.ts - low risk (different sections)
auth-refactor vs add-dashboard:
No overlapping files - clean
Recommendation: Merge auth-refactor first, then rebase fix-login.
Direct the user to /wt command for operations:
/wt new <name> - create worktree/wt list - compact listing/wt status - detailed dashboard/wt pause <name> / /wt resume <name> - toggle status/wt rm <name> - remove worktree/wt merge <name> - guided merge flowdevelopment
Unified web frontend knowledge base covering CSS architecture, UX psychology, UI components, distinctive aesthetics, and interface design generation. TRIGGER WHEN: working on web styling, design systems, component decisions, responsive strategy, distinctive frontend aesthetics, or exploring multiple interface designs. DO NOT TRIGGER WHEN: the task is purely backend or unrelated to web frontend.
development
Coordinate parallel code reviews across multiple quality dimensions with finding deduplication, severity calibration, and consolidated reporting. Use this skill when organizing multi-reviewer code reviews, calibrating finding severity, or consolidating review results.
tools
Knowledge base for the codebase-mapper plugin. Provides writing guidelines, tone rules, and diagram conventions for generating human-readable project guides. Referenced by all codebase-mapper agents during document generation. TRIGGER WHEN: referenced by codebase-mapper pipeline agents (codebase-explorer, overview-writer, tech-writer, flow-writer, onboarding-writer, ops-writer, config-writer, guide-reviewer) during document generation. DO NOT TRIGGER WHEN: outside the /map-codebase pipeline (general documentation work should use docs:readme-craft or codebase-mapper:docs-create).
tools
Progressive Web App knowledge base for 2025-2026: Web App Manifest, Service Workers (Workbox 7, Serwist), Web Push (VAPID, RFC 8030/8291/8292, Declarative Push for Safari 18.4+), install flows (beforeinstallprompt, Window Controls Overlay), OPFS storage, Project Fugu, Core Web Vitals (INP < 200ms), security (HTTPS, CSP, COOP/COEP), and distribution (Bubblewrap, PWA Builder MSIX, Capacitor). TRIGGER WHEN: building, auditing, or debugging PWAs, including manifest, service worker, Web Push, install flow, OPFS, Background Sync, Wake Lock, vite-plugin-pwa, Next.js Serwist, @angular/pwa, @vite-pwa/nuxt, Bubblewrap, TWA, PWA Builder, or Capacitor wrapping. DO NOT TRIGGER WHEN: the task is generic frontend styling (use frontend), React performance (use react-development:review-react), cross-platform security unrelated to PWA (use platform-engineering), Tauri or Electron wrappers (use tauri-development), or GA4 / analytics (use digital-marketing).