- name
- git-workflow
- description
- Advanced git workflows with branch management, conflict resolution, and PR lifecycle
- argument-hint
- <branch|pr|merge|rebase> [options]
- allowed-tools
- mcp__claude-flow__analyze_diff mcp__claude-flow__analyze_diff-risk mcp__claude-flow__analyze_diff-stats mcp__claude-flow__github_pr_manage mcp__claude-flow__github_repo_analyze mcp__claude-flow__github_metrics Bash
Git Workflow
Advanced git workflow automation for branch management and PR lifecycle.
When to use
When managing complex git operations — multi-branch workflows, release branching, conflict resolution, or PR coordination.
Steps
- Analyze repo — call
mcp__claude-flow__github_repo_analyzefor repository health metrics - Check diff risk — call
mcp__claude-flow__analyze_diff-riskbefore merging - Manage PRs — call
mcp__claude-flow__github_pr_managefor PR lifecycle operations - View metrics — call
mcp__claude-flow__github_metricsfor merge frequency, review times, etc.
Common workflows
Feature branch
git checkout -b feat/my-feature
# ... make changes ...
# analyze diff before PR
# create PR with risk assessmentRelease branch
git checkout -b release/v1.2.0
# cherry-pick fixes
# analyze all diffs for risk
# merge when risk score is acceptableCLI alternative
npx @claude-flow/cli@latest hooks pre-task --description "git workflow"