.agent/skills/worktrees/SKILL.md
When and how to use git worktrees for isolated work. Use for parallel development, risky experiments, or review work that should not affect the main working directory.
npx skillsauth add oaknational/oak-open-curriculum-ecosystem worktreesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guidance on using git worktrees to isolate work without disrupting the main checkout.
git worktree add .claude/worktrees/<name> -b <branch-name>
Or use the platform's worktree support (e.g., Claude Code's EnterWorktree tool).
.git directory (commits are visible from both)git worktree remove .claude/worktrees/<name>
Remove worktrees when the work is complete and merged. Stale worktrees consume disk space.
.claude/worktrees/ (gitignored)feature-auth, fix-search-bug, review-pr-42git worktree documentation: git help worktreetools
When and how to use git worktrees for isolated work.
documentation
TSDoc and documentation workflow for canonical source comments, README updates, and ADR touchpoints.
development
Structured debugging workflow: reproduce, isolate, hypothesise, verify, fix, regression test.
data-ai
Load the shared thorough start-right workflow from `.agent/skills/start-right-thorough/shared/start-right-thorough.md`.