
Review Branch
- 2 repo stars
- Updated July 24, 2026
- cboone/agent-harness-plugins
Review all work on the current branch — summarize changes, assess plan compliance, and evaluate code quality before merging.
About
Review-branch evaluates all work done on the current branch by summarizing the changes, assessing how well they follow the plan, and judging code quality. It gives a structured pre-merge review so problems are caught before integration. Aimed at developers reviewing their own or an agent's branch work.
- Branch change summary
- Plan-compliance check
- Code-quality evaluation
- Pre-merge review
Review Branch by the numbers
- Data as of Jul 25, 2026 (Skillselion catalog sync)
/plugin marketplace add cboone/agent-harness-plugins/plugin install review-branch@agent-harness-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 24, 2026 |
| Repository | cboone/agent-harness-plugins ↗ |
What it does
Review all work on the current branch — summarize changes, assess plan compliance, and evaluate code quality before merging.
README.md
Review Branch
Review and evaluate all work done on the current branch compared to the base branch.
Type: Skill
Trigger: /review-branch
Installation
See the marketplace install instructions.
What It Does
Summarizes changes by area/concern, lists new/modified/deleted files, and highlights notable changes. By default, saves the review to docs/reviews/ with a datestamp-prefixed filename (e.g., 2026-03-08-feature-store-reviews.md) for use with the Address Review skill (saving can be skipped with --no-save). Then goes further with two evaluations:
- Plan compliance: When a plan document is available (auto-detected or specified), rigorously evaluates whether the implementation matches the plan's intent. Checks for deviations, scope additions and omissions, and assesses implementation fidelity, not just task completion.
- Code quality assessment: Always runs, regardless of whether a plan exists. Examines the diff for readability, maintainability, potential bugs, edge cases, error handling, security issues, and completeness. Delivers a direct verdict on merge readiness.
Usage
/review-branch
/review-branch --plan docs/plans/my-plan.md
/review-branch --since v1.2.0
/review-branch --brief
/review-branch --no-save
| Option | Description |
|---|---|
--plan <path> |
Compare progress against a plan document |
--since <ref> |
Use a specific tag, branch, or commit as the base |
--brief |
Output only a high-level summary |
--no-save |
Skip saving the review to docs/reviews/ |
Examples
- "review branch": full summary of all changes
- "where are we on this branch": same as above
- "compare branch to plan": auto-detects a matching plan file
See Also
- Address Review: work through review feedback items
- PR: create a pull request after reviewing
- All plugins