git-review-orchestrator

Orchestrate a fail-fast git quality review pipeline with preflight checks, tests, and linting.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/cromesdk/ai-skills --skill git-review-orchestrator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-review-orchestrator
Source: https://github.com/cromesdk/ai-skills/tree/main/skills/project/git-review-orchestrator
Command: npx skills add https://github.com/cromesdk/ai-skills --skill git-review-orchestrator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the process of ensuring code quality and release readiness by orchestrating a deterministic, fail-fast review pipeline. It prevents common errors and ensures consistency before code is merged or deployed.

Core Features & Use Cases

  • Comprehensive Quality Gates: Executes a sequence of checks including preflight, code review, automated tests, and code formatting/linting.
  • Automated Documentation Updates: Integrates with changelog and README update skills to ensure documentation is current.
  • Fail-Fast Mechanism: Stops execution at the first failed gate, providing clear diagnostics and preventing further issues.
  • Use Case: Before merging a new feature, run this orchestrator to automatically review the code, execute all relevant tests, ensure code style compliance, and update the changelog and README. If any step fails, you get immediate feedback on how to fix it.

Quick Start

Run the git review orchestrator on current changes to ensure code quality and release readiness.

Frequently Asked Questions about git-review-orchestrator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate git code review and quality checks before merging?

Automate git code review by orchestrating a deterministic, fail-fast pipeline that executes preflight checks, code reviews, automated tests, and formatting. This ensures release readiness by stopping at the first failed gate and providing clear diagnostics to fix issues before merging.

What is a fail-fast quality gate pipeline in CI/CD?

A fail-fast quality gate pipeline stops execution immediately at the first failed check, whether it is a preflight test, linter, or automated test. This mechanism prevents further issues by providing clear diagnostics and ensuring code quality before deployment.

How do I run linters and automated tests on changed git files?

Run linters and automated tests on changed files by using an orchestration pipeline that routes relevant skills based on the modified content. This automatically executes code formatting, linting, and testing to ensure style compliance and release readiness.

Can I automatically update changelog and README files during code review?

Yes, you can automatically update changelog and README files during code review. The orchestration pipeline integrates documentation update skills to ensure all documentation remains current alongside the automated quality checks.

Does the git quality gate orchestrator automatically commit changes?

No, the git quality gate orchestrator explicitly forbids automatic git commits. It executes preflight checks, code review, tests, and formatting to ensure release readiness, but leaves the final commit action to the user.