From hotl
Dispatches a code-reviewer agent with structured context including git range, workflow contracts, and verification evidence at executor review checkpoints.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hotl:requesting-code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Executors invoke `requesting-code-review` at defined checkpoints. This skill dispatches the `code-reviewer` agent with structured context. Returned findings are handled by `receiving-code-review`.
Executors invoke requesting-code-review at defined checkpoints. This skill dispatches the code-reviewer agent with structured context. Returned findings are handled by receiving-code-review.
Only request review when the checkpoint work is in a reviewable state and its planned verification has completed. Do not request review for code that has failing required verification unless the purpose of the review is to diagnose the failure.
The review base defines the git range for the reviewer. Executors record this before starting each reviewable batch.
git rev-parse HEAD recorded by the executor before starting the batchHEAD immediately before the fix. Re-review only the changed scope unless the fix affects shared architecture, risk level, or multiple modules.When dispatching the hotl:code-reviewer agent, provide this context:
Review the following implementation work.
**Review type:** checkpoint | final | follow-up | direct
**Workflow:** {workflow_file} (or "No workflow — reviewing against stated intent")
**Steps reviewed:** {step_range} (or "N/A")
**Git range:** {review_base}..{HEAD_SHA}
**Intent contract:**
- intent: {intent}
- constraints: {constraints}
- success_criteria: {success_criteria}
- risk_level: {risk_level}
(or "No formal contract — review against stated intent and general correctness/risk")
**Implementation summary:**
{summary}
**Changed files:**
{git_diff_stat}
**Verification evidence:**
- Commands run: {verification_commands}
- Outcomes: {pass_fail_status}
- Known gaps: {limitations}
Review against the workflow plan and HOTL contracts (if provided),
or against the stated intent and general correctness/risk.
Produce findings with file:line references.
receiving-code-reviewhotl:code-review (uses READY/NOT READY verdict). Findings are returned to the user without automatically invoking receiving-code-review.npx claudepluginhub yimwoo/hotl-plugin --plugin hotlRequests independent code review by dispatching a subagent with structured context. Use after subagent-driven tasks, before merging high-risk work, or when verification finds uncertainty.
Reviews code against plan and HOTL contracts after implementation, before merging. Dispatches a code-reviewer subagent or runs inline review.
Requests code review via a subagent after completing tasks, implementing features, or before merging. Provides structured context (git diff, requirements) for focused evaluation.