tools-github-workflow
GitHub Workflow Orchestration
Overview
Manage the complete GitHub development workflow from the terminal using gh and git. Covers branch hygiene, commit crafting, issue triage, PR lifecycle, and parallel worktree operations.
Branch Management
Sync & Create
# Sync with upstream
gh repo sync --force
git fetch origin main && git rebase origin/main
# Create feature branch
git switch -c feature/payments-123 origin/main
# Checkout existing PR
gh pr checkout <number>
More from tjboudreaux/cc-github-skills
tools-gh-search
Unified GitHub search across code, commits, issues, PRs, and repos using the gh CLI. Find patterns, track bugs, evaluate dependencies, and monitor changes.
1tools-github-integration
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.
1tools-git-advanced
Advanced git operations including rebase, cherry-pick, bisect, reflog, stash, and history manipulation for complex workflows.
1tools-github-actions
GitHub Actions workflow authoring for CI/CD pipelines, job configuration, matrix builds, secrets, and common automation patterns.
1