git-workflow
Advanced git workflows with branch management, conflict resolution, and PR lifecycle
Works with
--- name: git-workflow description: Advanced git workflows with branch management, conflict resolution, and PR lifecycle license: MIT --- # 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 1. **Analyze repo** — call `mcp__plugin_ruflo-core_ruflo__github_repo_analyze` for repository health metrics 2. **Check diff risk** — call `mcp__plugin_ruflo-core_ruflo__analyze_diff-risk` before merging 3. **Manage PRs** — call `mcp__plugin_ruflo-core_ruflo__github_pr_manage` for PR lifecycle operations 4. **View metrics** — call `mcp__plugin_ruflo-core_ruflo__github_metrics` for merge frequency, review times, etc. ## Common workflows ### Feature branch ```bash git checkout -b feat/my-feature # ... make changes ... # analyze diff before PR # create PR with risk assessment ``` ### Release branch ```bash git checkout -b release/v1.2.0 # cherry-pick fixes # analyze all diffs for risk # merge when risk score is acceptable ``` ## CLI alternative ```bash npx @claude-flow/cli@latest hooks pre-task --description "git workflow" ```
More Git Workflows skills
git-commit
github/awesome-copilot
Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions "/commit". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping
git-workflow-and-versioning
addyosmani/agent-skills
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump, tagging, or writing a changelog.
resolve-merge-conflicts
warpdotdev/common-skills
Resolve Git merge conflicts by extracting only unresolved paths, conflict hunks, and compact diffs instead of loading whole files into context. Use when a merge, rebase, cherry-pick, or stash pop stops on conflicts, when `git status` shows unmerged paths, or when files contain conflict markers.

