Creating Worktrees
SkillAI & modelsCreate git worktree for parallel work. Agent-driven naming.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Creating Worktrees skill
What this skill tells your AI
The instructions your AI receives, as published by neuron-mr-white/unipi in packages/workflow/skills/worktree-create/SKILL.md and read by ahel’s review.
Create a git worktree for isolated parallel work.
Boundaries
This skill MAY: run git worktree commands, ask user for branch name, suggest names. This skill MAY NOT: edit code, run tests, implement features.
Command Format
/unipi:worktree-create <string(greedy)>
string(greedy)— description or desired branch name- Agent asks user for exact name or suggests based on description
Process
Phase 1: Parse Input
- Read the string input
- Assess if it's a branch name or a description:
- Branch name:
feat/auth,fix/login-bug→ use directly - Description: "add user authentication" → suggest name
- Branch name:
Phase 2: Name Resolution
If clear branch name:
"Creating worktree on branch
feat/auth. Confirm?"
If description:
"Based on your description, I suggest:
feat/user-auth. What name would you like?"
Let user confirm or provide different name.
Phase 3: Create Worktree
- Check if branch already exists (local or remote)
- If exists: ask user if they want to reuse or create new
- Create worktree:
git worktree add .unipi/worktrees/<branch> -b <branch> - Verify creation succeeded
Phase 4: Confirm
Report:
"Worktree created:
.unipi/worktrees/<branch>(branch:<branch>)" "To work in this worktree:/unipi:work worktree:<branch> specs:<plan>"
Notes
- Worktrees stored in
.unipi/worktrees/directory - Each worktree is a full working copy with its own branch
- Multiple worktrees can exist for parallel work
- Use
/unipi:worktree-listto see all worktrees - Use
/unipi:worktree-mergeto merge back to main
Signals
- GitHub stars
- 64
- Forks
- 15
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
worktree-create- Source
- github.com/neuron-mr-white/unipi