process-review-requesting-code-review

Dispatches a separate code reviewer subagent to evaluate git diffs against requirements before merging.

1|Updated Jun 23, 2026
One-click install
npx skills add https://github.com/bitranox/bitranox-skills --skill process-review-requesting-code-review-bitranox
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: process-review-requesting-code-review
Source: https://github.com/bitranox/bitranox-skills/tree/main/plugins/bitranox/skills/process-review-requesting-code-review
Command: npx skills add https://github.com/bitranox/bitranox-skills --skill process-review-requesting-code-review-bitranox

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code you wrote yourself is the hardest to review objectively, and skipping review lets bugs, security issues, and plan deviations cascade into later work. This Skill structures the process of requesting an independent code review so issues are caught before merging to main. ## Core Features & Use Cases - Subagent Review Dispatch: Fills a ready-made reviewer prompt template with a description, requirements, and git SHA range, then dispatches a fresh-context subagent that never saw your session. - Severity-Calibrated Feedback: The reviewer returns strengths, issues categorized as Critical, Important, or Minor with file:line references, recommendations, and a merge-readiness verdict. - Gate Integrity Guidance: Explains why an LLM reviewer finds issues but cannot authorize merges, and why verification gates must live outside the actor being checked. - Use Case: After completing a feature task, you capture the base and head SHAs, dispatch the reviewer subagent with the plan reference, fix the Important issues it reports, and only then proceed to the next task or merge. ## Quick Start Ask the AI to request a code review of the changes between the current HEAD and the previous commit using the code-reviewer template before merging.

Frequently Asked Questions about process-review-requesting-code-review

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

FAQPage Schema
How do I request a code review of my changes before merging?▼

Capture the base and head commit SHAs with git rev-parse, then dispatch a general-purpose subagent using the code-reviewer template filled with a description, the plan or requirements, and the SHA range. Act on Critical and Important findings before proceeding.

When should I request a code review during development?▼

Request review after each task in subagent-driven development, after completing a major feature, and before merging to main. It is also valuable when stuck, before refactoring, or after fixing a complex bug.

Can an AI code reviewer replace a merge gate or CI check?▼

No. An LLM reviewer finds issues but cannot authorize a merge, because a gate is only real when the actor being checked cannot satisfy it. Gate on verified fixes confirmed by commands with exit codes, not on the reviewer's prose verdict.

What feedback format does the code reviewer subagent return?▼

The reviewer returns strengths, issues categorized as Critical, Important, or Minor with file:line references and fixes, recommendations, and a final assessment stating whether the work is ready to merge with reasoning.

What should I do if the code reviewer is wrong about an issue?▼

Push back with technical reasoning, showing code or tests that prove the implementation works, and request clarification. Never ignore valid Critical or Important findings, but valid technical disagreement is expected.