When you start new work on a code project, your main checkout should stay clean. This skill helps you work in an isolated workspace using a git worktree. It keeps your changes separate from the main branch.
First, it checks if you are already in an isolated worktree. If yes, it works right there. If not, it prefers the harness's native worktree tool. Only as a last resort does it use plain git to create a new worktree.
This way your work stays safe and the harness can manage everything properly. No more messing up your main checkout.
Global
mkdir -p ~/.claude/skills/ce-worktreeProject
mkdir -p .claude/skills/ce-worktreeSource Repository
Caveman Commitjuliusbrussee/caveman
Generate ultra-compressed commit messages with Conventional Commits format
Verification Before Completionobra/superpowers
Always run fresh verification before claiming work is complete or passing
Git Guardrails Claude Codemattpocock/skills
Stop dangerous git commands from running automatically with safety hooks
Setup Pre Commitmattpocock/skills
Automate code formatting type checking and tests before every commit
Using Git Worktreesobra/superpowers
Isolate your feature work with git worktrees and keep your main branch safe
Finishing A Development Branchobra/superpowers
Finish your development branch with merge, pull request, or cleanup options
Resolving Merge Conflictsmattpocock/skills
Resolve Git merge conflicts step by step preserving both intents
Git Commitgithub/awesome-copilot
Automatically write standardized git commits by analyzing your code changes