Agent skill · Testing & QA

phase-gated-commits

Phase-gated commit workflow for clean git history -- implement, review, test, commit per phase

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill phase-gated-commits --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/phase-gated-commits/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Phase-Gated Commits Break large features and refactoring into discrete phases. Each phase follows a strict implement -> review -> test -> commit cycle. The result is a clean, bisectable git history where every commit represents a working state. ## When to Use - Multi-file features where changes span 3+ files - Refactoring that touches shared code used by many modules - Any work where you want the ability to revert one phase without losing others - Migrations or upgrades that should be applied incrementally ## When NOT to Use - Single-file changes or small fixes - Exploratory work where the final shape is unknown - Prototyping where speed matters more than history ## Phase Structure Break the work into 2-5 phases. Each phase should: - Be independently functional (the codebase works after each commit) - Have a clear scope (you can describe it in one sentence) - Be reviewable in isolation (a reviewer can understand the diff without needing other phases) ### Phase Sizing | Phase Size | Guideline | |-----------|-----------| | Too small | Renaming a single variable is not a phase | | Right size | Add the data model + migration + basic tests | | Too large | Implement entire feature end-

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to Use
  3. Phase Structure
  4. Phase Sizing
  5. Workflow Per Phase
  6. Step 1: Implement
  7. Step 2: Review
  8. Step 3: Test
  9. Step 4: Commit
  10. Step 5: Pause
  11. Rules
  12. Integration with Plan Documentation
More from vibecosystem
All skills →
About this skill
What does the phase-gated-commits skill do?

Phase-gated commit workflow for clean git history -- implement, review, test, commit per phase

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill phase-gated-commits --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going