Install
openclaw skills install git-factoryProvision and manage isolated git worktrees for individual coding tasks, enabling parallel branches and clean PR workflows without merge conflicts.
openclaw skills install git-factoryEach moth gets its own branch, its own workspace, its own PR. No conflicts. No merge hell.
# From the repo root
.\skills\git-factory\scripts\new-worktree.ps1 -RepoPath . -TaskSlug "fix-login-bug"
# Returns: C:\Users\spaz\clawd\.worktrees\fix-login-bug
.\skills\git-factory\scripts\finish-worktree.ps1 `
-WorktreePath ".worktrees\fix-login-bug" `
-CommitMessage "moth(fix-login-bug): fix auth redirect loop" `
-CreatePR -PRTitle "Fix login redirect bug" `
-PRBody "Fixes the auth redirect loop on expired sessions"
.\skills\git-factory\scripts\list-worktrees.ps1 -RepoPath .
.\skills\git-factory\scripts\cleanup-stale.ps1 -RepoPath . -MaxAgeDays 7
When spawning a coding moth, include the worktree in the task prompt:
Your working directory is: C:\Users\spaz\clawd\.worktrees\<task-slug>
You are on branch: moth/<task-slug>
Base branch: master
Work ONLY in this directory. When finished:
1. Stage and commit your changes
2. Push your branch: git push -u origin moth/<task-slug>
3. Report what you built and any issues
Do NOT modify files outside your worktree.
| Item | Convention |
|---|---|
| Worktree location | <repo>/.worktrees/<task-slug> |
| Branch naming | moth/<task-slug> |
| Commit prefix | moth(<task-slug>): <description> |
| PR mode | Draft by default |
| Stale threshold | 7 days (configurable) |
.worktrees/ | Added to .gitignore automatically |
new-worktree.ps1 creates a branch moth/<slug> and a worktree at .worktrees/<slug>finish-worktree.ps1 commits, pushes, optionally creates a draft PR, then removes the worktreecleanup-stale.ps1 runs periodically to remove abandoned worktrees.git directory — large repos may have lock contention on heavy git ops