skills/git-worktree/SKILL.md
Manage git worktrees in this repository for parallel implementation, sequential integration, release-branch preparation, and session cleanup. Use when creating a detached worktree first and only then creating its task branch inside that worktree, aligning task branches with shipping policy (`develop` for beta integration, `release/*` or `hotfix/*` for stable lanes), rebasing session branches into `develop`, or removing merged worktrees after validation.
npx skillsauth add arisng/github-copilot-fc 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.
Use one task branch per worktree and one integration branch in the primary repo.
develop for normal feature integration.develop as feature/YYMMDD-slug or openspec/YYMMDD-slug./ with - and placing it under .worktrees/.develop passes validation.release/*, hotfix/*, and main for stable shipping lanes; do not use them as disposable agent branches.scripts/New-GitWorktreeSession.ps1.scripts/Integrate-GitWorktreeBranch.ps1.scripts/Remove-GitWorktreeSession.ps1 -DeleteBranch.| Use case | Base branch | Branch name | Worktree path |
| --- | --- | --- | --- |
| Parallel task | develop | feature/260503-session-audit | .worktrees/feature-260503-session-audit |
| OpenSpec task | develop | openspec/260503-fix-zoom-status | .worktrees/openspec-260503-fix-zoom-status |
| Release hardening | main or the chosen release base | release/2605-stable | .worktrees/release-2605-stable |
| Hotfix | main | hotfix/login-timeout | .worktrees/hotfix-login-timeout |
scripts/New-GitWorktreeSession.ps1: create a detached worktree from the base ref, then create the branch inside that worktree, and optionally run restore/build.scripts/Integrate-GitWorktreeBranch.ps1: update the base branch, rebase the session branch, and integrate it in the planned order.scripts/Remove-GitWorktreeSession.ps1: remove the linked worktree and, when requested, delete the merged branch.develop in planned order.-Force.devops
Programmatically create tldraw whiteboards and visualize them with a self-hosted tldraw instance. Create boards with shapes, text, and connectors, then deploy to a self-hosted server for collaborative editing and gallery management.
tools
Execute Google Cloud Platform operations using the gcloud CLI (and gsutil/bq where applicable). Use when the user wants to: authenticate with GCP, manage GCP resources, deploy applications, configure projects or IAM, view logs, run SQL/BigQuery, or interact with any GCP service from the command line. Triggers on phrases like "gcloud", "Google Cloud CLI", "deploy to GCP", "create a VM", "Cloud Run", "GKE cluster", "Cloud Storage bucket", "set GCP project", "service account", "Cloud Functions", "App Engine deploy", or any request to manage Google Cloud resources via command line.
testing
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
development
Session-scoped git commit orchestrator that commits only current-session changes and leaves unrelated dirty worktree edits untouched. Inherits git-atomic-commit for atomic grouping and commit message execution, and git-commit-scope-constitution for scope governance and validation. Use when asked to commit this session only or isolate commits from mixed worktree state.