원클릭으로
worktree
Create git worktrees for parallel feature development. Use when working on multiple features simultaneously.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create git worktrees for parallel feature development. Use when working on multiple features simultaneously.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Fast headless browser for QA testing and site dogfooding. (gstack)
Safety guardrails for destructive commands. (gstack)
OpenAI Codex CLI wrapper — three modes. (gstack)
Design consultation: understands your product, researches the landscape, proposes a complete design system (aesthetic, typography, color, layout, spacing, motion), and generates font+color preview... (gstack)
Designer's eye QA: finds visual inconsistency, spacing issues, hierarchy problems, AI slop patterns, and slow interactions — then fixes them. (gstack)
Post-ship documentation update. (gstack)
| name | worktree |
| description | Create git worktrees for parallel feature development. Use when working on multiple features simultaneously. |
| argument-hint | ["branch-name"] |
When the user invokes this skill:
Fetch latest changes
git fetch origin
Ensure .gitignore is configured
.worktrees/ is in .gitignore.worktrees/ to .gitignoreDetermine branch type - Check if the branch already exists:
git branch -a | grep -E "(^|\s)feat/<name>$|origin/feat/<name>"
Determine base branch (only needed for new branches):
git branch -r | grep -E "origin/(develop|master)$"
origin/develop if it existsorigin/master if develop doesn't existCreate the worktree
If branch does NOT exist → create new branch from base branch:
# If origin/develop exists:
git worktree add .worktrees/<name> -b feat/<name> origin/develop
# If origin/develop doesn't exist, use origin/master:
git worktree add .worktrees/<name> -b feat/<name> origin/master
If branch EXISTS → use existing branch:
git worktree add .worktrees/<name> feat/<name>
Report the result
git worktree list.worktrees/<name>User: /worktree auth-refactor
→ Branch feat/auth-refactor doesn't exist
→ origin/develop exists
→ Creates .worktrees/auth-refactor on NEW branch feat/auth-refactor (from origin/develop)
User: /worktree new-feature
→ Branch feat/new-feature doesn't exist
→ origin/develop doesn't exist, using origin/master
→ Creates .worktrees/new-feature on NEW branch feat/new-feature (from origin/master)
User: /worktree metaknow_url_header
→ Branch feat/metaknow_url_header already exists
→ Creates .worktrees/metaknow_url_header using EXISTING branch
git worktree remove .worktrees/<name>
git worktree list