From joe
Create, list, switch, and delete git worktrees. Use when the user says "worktree", "wt", "new branch", "gwa", "gwd", "gwl", wants to work on a feature in isolation, or needs to manage parallel working directories.
How this skill is triggered — by the user, by Claude, or both
Slash command
/joe:worktreeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Wraps the user's `git wt` aliases for worktree operations.
Wraps the user's git wt aliases for worktree operations.
| Alias | Description |
|---|---|
gwl | List all worktrees |
gwa <branch> [start-point] | Create/switch worktree (also creates .envrc with CLAUDE_CODE_TASK_LIST_ID) |
gwd <branch> | Safe delete worktree + branch |
gwD <branch> | Force delete worktree + branch |
gwac <branch> | Create with .env* files copied |
gwn <branch> | Create but stay in current dir |
gwall <branch> | Create with ignored + untracked files copied |
Based on $ARGUMENTS, perform the appropriate action:
gwl
Show the worktree list to the user.
Before creating, always ask the user:
"Do you want to branch off
main(default) or a different base branch?"
main (or master if that's the default branch)# Default: checkout from main/master
gwa <branch> main
# From a user-specified base branch
gwa <branch> <start-point>
# Safe delete (default)
gwd <branch>
# Force delete only if user explicitly asks
gwD <branch>
Always confirm with the user before force-deleting.
gwall <branch>
wt.basedir (default: ../{gitroot}-wt).gwa automatically creates .envrc with CLAUDE_CODE_TASK_LIST_ID set to the branch name for Claude Code task tracking.gwd) unless the user explicitly requests force (gwD).Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub obengwilliam/ai-assisted-plugin