worktree
Creates an isolated git worktree for the current task and switches into it, so the task never collides with the main checkout. Use when the user says '/worktree <slug>' or wants an isolated working copy for a new task.
Install
npx skills add https://github.com/domengabrovsek/agent-config/tree/main/skills/worktree
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install domengabrovsek-claude@llmmart
git clone https://github.com/domengabrovsek/agent-config.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole domengabrovsek/claude collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Create a worktree for: $ARGUMENTS
Slug
If $ARGUMENTS is non-empty, treat the first argument as the slug.
If $ARGUMENTS is empty:
- If a plan file exists at
.claude/state/plans/<latest>.mdin the current project, derive slug from its basename (strip date prefix and.mdextension). - Else generate
<topic>-<6char-hex>and report it.
The slug must be lowercase, hyphen-separated, no spaces.
Branch type
Default to feat/<slug>. If the user's request looks like a bug fix, use fix/<slug>. For cleanups, chore/<slug>.
Steps
Find the repo root:
git rev-parse --show-toplevel. Refuse if not inside a git repo.Compute target dir:
<repo-parent>/<repo-basename>-<slug>. Refuse if it already exists (offer tocdinto the existing one instead).Create the worktree on a new branch:
git worktree add "<target>" -b "<branch>"cdinto the worktree dir for all subsequent operations.If
package-lock.jsonexists, runnpm ci. The worktree holds only tracked files, and the pre-push gate needsnode_modules.Report the new working dir and branch name, then continue with the task.
After creation
The worktree is its own working tree, so the session can change files without colliding with the main checkout.
When work is done:
- Open a PR from the worktree's branch as normal.
- After merge, run
/worktree-mergeto clean up the worktree and remove the local branch.
Files (claude)
-
SKILL.md 1.7 KB
--- name: worktree description: "Creates an isolated git worktree for the current task and switches into it, so the task never collides with the main checkout. Use when the user says '/worktree <slug>' or wants an isolated working copy for a new task." --- Create a worktree for: $ARGUMENTS ## Slug If $ARGUMENTS is non-empty, treat the first argument as the slug. If $ARGUMENTS is empty: - If a plan file exists at `.claude/state/plans/<latest>.md` in the current project, derive slug from its basename (strip date prefix and `.md` extension). - Else generate `<topic>-<6char-hex>` and report it. The slug must be lowercase, hyphen-separated, no spaces. ## Branch type Default to `feat/<slug>`. If the user's request looks like a bug fix, use `fix/<slug>`. For cleanups, `chore/<slug>`. ## Steps 1. Find the repo root: `git rev-parse --show-toplevel`. Refuse if not inside a git repo. 2. Compute target dir: `<repo-parent>/<repo-basename>-<slug>`. Refuse if it already exists (offer to `cd` into the existing one instead). 3. Create the worktree on a new branch: ```bash git worktree add "<target>" -b "<branch>" ``` 4. `cd` into the worktree dir for all subsequent operations. 5. If `package-lock.json` exists, run `npm ci`. The worktree holds only tracked files, and the pre-push gate needs `node_modules`. 6. Report the new working dir and branch name, then continue with the task. ## After creation The worktree is its own working tree, so the session can change files without colliding with the main checkout. When work is done: - Open a PR from the worktree's branch as normal. - After merge, run `/worktree-merge` to clean up the worktree and remove the local branch.
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.