From github-skills
Orchestrates the integration of multiple Git worktrees or branches into a single ephemeral preview branch. Automated strategy for merging, conflict detection, and verification of parallel development streams. ONLY applicable for projects using Git/GitHub.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-skills:tools-github-integrationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides a robust, high-frequency workflow for merging multiple active development streams (from Git worktrees or feature branches) into a disposable `integration-preview` branch. It is designed for fast-paced agentic environments where integration checks should happen continuously or on-demand, rather than just daily.
This skill provides a robust, high-frequency workflow for merging multiple active development streams (from Git worktrees or feature branches) into a disposable integration-preview branch. It is designed for fast-paced agentic environments where integration checks should happen continuously or on-demand, rather than just daily.
git worktree listmain, master, or maintenance branches. Focus on feature/fix branches.git checkout main && git pull
git checkout -b integration-preview-YYYY-MM-DD-HHMMIterate through each discovered active branch:
git merge origin/<branch-name> --no-ffgit merge --abortnpm install, pip install, etc., as appropriate.npm test or pytestintegration-preview branch if the test fails or upon user request.integration-preview branch to production/main.npx claudepluginhub tjboudreaux/cc-github-skills --plugin github-skillsMerges git worktrees after swarm completion: lists status from .aide/state, tests/lints/builds feat branches, reviews changes, merges clean ones, intelligently resolves conflicts.
Use when implementation is finished, tests are green, and you need to decide how to land the work - presents structured integration paths for local merge, pull request, deferral, or abandonment
Merges multiple PRs into a temporal integration branch for staged validation before advancing the base branch, with ordered conflict resolution and build/test checks.