git-pr-workflows-git-workflow

0
0
Source

Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g

Install

mkdir -p .claude/skills/git-pr-workflows-git-workflow && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5867" && unzip -o skill.zip -d .claude/skills/git-pr-workflows-git-workflow && rm skill.zip

Installs to .claude/skills/git-pr-workflows-git-workflow

About this skill

Complete Git Workflow with Multi-Agent Orchestration

Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern git best practices including Conventional Commits, automated testing, and structured PR creation.

[Extended thinking: This workflow coordinates multiple specialized agents to ensure code quality before commits are made. The code-reviewer agent performs initial quality checks, test-automator ensures all tests pass, and deployment-engineer verifies production readiness. By orchestrating these agents sequentially with context passing, we prevent broken code from entering the repository while maintaining high velocity. The workflow supports both trunk-based and feature-branch strategies with configurable options for different team needs.]

Use this skill when

  • Working on complete git workflow with multi-agent orchestration tasks or workflows
  • Needing guidance, best practices, or checklists for complete git workflow with multi-agent orchestration

Do not use this skill when

  • The task is unrelated to complete git workflow with multi-agent orchestration
  • You need a different domain or tool outside this scope

Instructions

  • Clarify goals, constraints, and required inputs.
  • Apply relevant best practices and validate outcomes.
  • Provide actionable steps and verification.
  • If detailed examples are required, open resources/implementation-playbook.md.

Configuration

Target branch: $ARGUMENTS (defaults to 'main' if not specified)

Supported flags:

  • --skip-tests: Skip automated test execution (use with caution)
  • --draft-pr: Create PR as draft for work-in-progress
  • --no-push: Perform all checks but don't push to remote
  • --squash: Squash commits before pushing
  • --conventional: Enforce Conventional Commits format strictly
  • --trunk-based: Use trunk-based development workflow
  • --feature-branch: Use feature branch workflow (default)

Phase 1: Pre-Commit Review and Analysis

1. Code Quality Assessment

  • Use Task tool with subagent_type="code-reviewer"
  • Prompt: "Review all uncommitted changes for code quality issues. Check for: 1) Code style violations, 2) Security vulnerabilities, 3) Performance concerns, 4) Missing error handling, 5) Incomplete implementations. Generate a detailed report with severity levels (critical/high/medium/low) and provide specific line-by-line feedback. Output format: JSON with {issues: [], summary: {critical: 0, high: 0, medium: 0, low: 0}, recommendations: []}"
  • Expected output: Structured code review report for next phase

2. Dependency and Breaking Change Analysis

  • Use Task tool with subagent_type="code-reviewer"
  • Prompt: "Analyze the changes for: 1) New dependencies or version changes, 2) Breaking API changes, 3) Database schema modifications, 4) Configuration changes, 5) Backward compatibility issues. Context from previous review: [insert issues summary]. Identify any changes that require migration scripts or documentation updates."
  • Context from previous: Code quality issues that might indicate breaking changes
  • Expected output: Breaking change assessment and migration requirements

Phase 2: Testing and Validation

1. Test Execution and Coverage

  • Use Task tool with subagent_type="unit-testing::test-automator"
  • Prompt: "Execute all test suites for the modified code. Run: 1) Unit tests, 2) Integration tests, 3) End-to-end tests if applicable. Generate coverage report and identify any untested code paths. Based on review issues: [insert critical/high issues], ensure tests cover the problem areas. Provide test results in format: {passed: [], failed: [], skipped: [], coverage: {statements: %, branches: %, functions: %, lines: %}, untested_critical_paths: []}"
  • Context from previous: Critical code review issues that need test coverage
  • Expected output: Complete test results and coverage metrics

2. Test Recommendations and Gap Analysis

  • Use Task tool with subagent_type="unit-testing::test-automator"
  • Prompt: "Based on test results [insert summary] and code changes, identify: 1) Missing test scenarios, 2) Edge cases not covered, 3) Integration points needing verification, 4) Performance benchmarks needed. Generate test implementation recommendations prioritized by risk. Consider the breaking changes identified: [insert breaking changes]."
  • Context from previous: Test results, breaking changes, untested paths
  • Expected output: Prioritized list of additional tests needed

Phase 3: Commit Message Generation

1. Change Analysis and Categorization

  • Use Task tool with subagent_type="code-reviewer"
  • Prompt: "Analyze all changes and categorize them according to Conventional Commits specification. Identify the primary change type (feat/fix/docs/style/refactor/perf/test/build/ci/chore/revert) and scope. For changes: [insert file list and summary], determine if this should be a single commit or multiple atomic commits. Consider test results: [insert test summary]."
  • Context from previous: Test results, code review summary
  • Expected output: Commit structure recommendation

2. Conventional Commit Message Creation

  • Use Task tool with subagent_type="llm-application-dev::prompt-engineer"
  • Prompt: "Create Conventional Commits format message(s) based on categorization: [insert categorization]. Format: <type>(<scope>): <subject> with blank line then <body> explaining what and why (not how), then <footer> with BREAKING CHANGE: if applicable. Include: 1) Clear subject line (50 chars max), 2) Detailed body explaining rationale, 3) References to issues/tickets, 4) Co-authors if applicable. Consider the impact: [insert breaking changes if any]."
  • Context from previous: Change categorization, breaking changes
  • Expected output: Properly formatted commit message(s)

Phase 4: Branch Strategy and Push Preparation

1. Branch Management

  • Use Task tool with subagent_type="cicd-automation::deployment-engineer"
  • Prompt: "Based on workflow type [--trunk-based or --feature-branch], prepare branch strategy. For feature branch: ensure branch name follows pattern (feature|bugfix|hotfix)/<ticket>-<description>. For trunk-based: prepare for direct main push with feature flag strategy if needed. Current branch: [insert branch], target: [insert target branch]. Verify no conflicts with target branch."
  • Expected output: Branch preparation commands and conflict status

2. Pre-Push Validation

  • Use Task tool with subagent_type="cicd-automation::deployment-engineer"
  • Prompt: "Perform final pre-push checks: 1) Verify all CI checks will pass, 2) Confirm no sensitive data in commits, 3) Validate commit signatures if required, 4) Check branch protection rules, 5) Ensure all review comments addressed. Test summary: [insert test results]. Review status: [insert review summary]."
  • Context from previous: All previous validation results
  • Expected output: Push readiness confirmation or blocking issues

Phase 5: Pull Request Creation

1. PR Description Generation

  • Use Task tool with subagent_type="documentation-generation::docs-architect"
  • Prompt: "Create comprehensive PR description including: 1) Summary of changes (what and why), 2) Type of change checklist, 3) Testing performed summary from [insert test results], 4) Screenshots/recordings if UI changes, 5) Deployment notes from [insert deployment considerations], 6) Related issues/tickets, 7) Breaking changes section if applicable: [insert breaking changes], 8) Reviewer checklist. Format as GitHub-flavored Markdown."
  • Context from previous: All validation results, test outcomes, breaking changes
  • Expected output: Complete PR description in Markdown

2. PR Metadata and Automation Setup

  • Use Task tool with subagent_type="cicd-automation::deployment-engineer"
  • Prompt: "Configure PR metadata: 1) Assign appropriate reviewers based on CODEOWNERS, 2) Add labels (type, priority, component), 3) Link related issues, 4) Set milestone if applicable, 5) Configure merge strategy (squash/merge/rebase), 6) Set up auto-merge if all checks pass. Consider draft status: [--draft-pr flag]. Include test status: [insert test summary]."
  • Context from previous: PR description, test results, review status
  • Expected output: PR configuration commands and automation rules

Success Criteria

  • ✅ All critical and high-severity code issues resolved
  • ✅ Test coverage maintained or improved (target: >80%)
  • ✅ All tests passing (unit, integration, e2e)
  • ✅ Commit messages follow Conventional Commits format
  • ✅ No merge conflicts with target branch
  • ✅ PR description complete with all required sections
  • ✅ Branch protection rules satisfied
  • ✅ Security scanning completed with no critical vulnerabilities
  • ✅ Performance benchmarks within acceptable thresholds
  • ✅ Documentation updated for any API changes

Rollback Procedures

In case of issues after merge:

  1. Immediate Revert: Create revert PR with git revert <commit-hash>
  2. Feature Flag Disable: If using feature flags, disable immediately
  3. Hotfix Branch: For critical issues, create hotfix branch from main
  4. Communication: Notify team via designated channels
  5. Root Cause Analysis: Document issue in postmortem template

Best Practices Reference

  • Commit Frequency: Commit early and often, but ensure each commit is atomic
  • Branch Naming: (feature|bugfix|hotfix|docs|chore)/<ticket-id>-<brief-description>
  • PR Size: Keep PRs under 400 lines for effective review
  • Review Response: Address review comments within 24 hours
  • Merge Strategy: Squash for feature branches, merge for release branches
  • Sign-Off: Require at least 2 approvals for main branch changes

mobile-design

sickn33

Mobile-first design and engineering doctrine for iOS and Android apps. Covers touch interaction, performance, platform conventions, offline behavior, and mobile-specific decision-making. Teaches principles and constraints, not fixed layouts. Use for React Native, Flutter, or native mobile apps.

6338

unity-developer

sickn33

Build Unity games with optimized C# scripts, efficient rendering, and proper asset management. Masters Unity 6 LTS, URP/HDRP pipelines, and cross-platform deployment. Handles gameplay systems, UI implementation, and platform optimization. Use PROACTIVELY for Unity performance issues, game mechanics, or cross-platform builds.

9037

frontend-slides

sickn33

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

8733

fastapi-pro

sickn33

Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use PROACTIVELY for FastAPI development, async optimization, or API architecture.

7131

flutter-expert

sickn33

Master Flutter development with Dart 3, advanced widgets, and multi-platform deployment. Handles state management, animations, testing, and performance optimization for mobile, web, desktop, and embedded platforms. Use PROACTIVELY for Flutter architecture, UI implementation, or cross-platform features.

7030

threejs-skills

sickn33

Three.js skills for creating 3D elements and interactive experiences

8224

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318398

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

451339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.