skills/git-worktree/SKILL.md
Create and manage git worktrees for isolated development. Use when pipeline needs an isolated workspace.
npx skillsauth add the-own-lab/Claude-company-of-one git-worktreeInstall 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.
Create and manage git worktrees for isolated, parallel development.
git worktree add <path> <branch>
Place worktrees in a predictable location relative to the main repository:
../worktrees/<branch-name>
git worktree list
Shows all worktrees, their paths, and which branch each has checked out.
After the branch has been merged or the work is complete:
git worktree remove <path>
Then prune any stale references:
git worktree prune
documentation
Update BRIEF.md sections during a command run. Any skill that produces a brief-persisted artifact calls this to write it back.
development
Post-code check: run tests + confirm TODO acceptance items map to passing tests; applies a security lens but is not a separate scan.
documentation
Command post-step: write CHANGELOG + TODO once per command run. One call, not per-skill doc writes.
content-media
Author REQUIREMENTS.md + DESIGN.md + TODO.md for a feature. The three files are one contract; they ship together.