code-review

Automate pre-commit code review and generate conventional commit messages.

Updated Jun 13, 2025
One-click install
npx skills add https://github.com/bingxueai123456/eclair_home --skill code-review-bingxueai123456
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/bingxueai123456/eclair_home/tree/main/.claude/skills/code-review
Command: npx skills add https://github.com/bingxueai123456/eclair_home --skill code-review-bingxueai123456

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the Git commit workflow by integrating a code review step before commit. It helps catch issues early, reducing bugs and rework.

Core Features & Use Cases

  • Pre-commit code review: Automatically run a code review on staged changes using the code-reviewer agent.
  • Decision gate: If Critical Issues are found, the commit is halted with actionable suggestions; if only Warnings, the commit proceeds with caveats; if No Issues, commit proceeds.
  • Conventional commit generation: Analyze changes and produce a Conventional Commit message.

Quick Start

Use the code-review flow on the current changes and commit with a conventional message.

  1. Review staged changes: code-reviewer analyze --staged
  2. If issues exist, fix and re-stage; if not, commit: git commit -m "feat(scope): some meaningful message"