with one click
requesting-review
Dispatch code review subagent on completed work.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Dispatch code review subagent on completed work.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Post-implementation integrity and quality audit.
Session-start skill discovery protocol.
Structured root-cause investigation for bugs and failures.
Execute implementation plan task-by-task inline.
Complete work with merge, PR, or cleanup options.
Integrity guardrails during code implementation.
| name | requesting-review |
| description | Dispatch code review subagent on completed work. |
Dispatch an arsyn:code-reviewer subagent to catch defects before they compound. The reviewer receives crafted context โ never your session history โ keeping it focused on the work product.
Required: after each orchestrated task, after completing a feature, before merging to main.
Worthwhile: before refactoring (baseline audit), after resolving a tricky defect, when you want a second perspective.
1. Determine diff range:
BASE_SHA=$(git merge-base origin/main HEAD)
HEAD_SHA=$(git rev-parse HEAD)
2. Dispatch subagent using Task tool with arsyn:code-reviewer type. Fill the template at references/code-reviewer.md.
Placeholders: {WHAT_WAS_IMPLEMENTED}, {PLAN_OR_REQUIREMENTS}, {BASE_SHA}, {HEAD_SHA}, {DESCRIPTION}.
3. Triage response:
| Severity | Action |
|---|---|
| Critical | Fix immediately โ blocks all progress |
| Important | Fix before moving to next task |
| Minor | Log for later or fix opportunistically |
If the reviewer is wrong, push back with technical reasoning โ reference tests or code that proves correctness.
[Finished Task 3: pagination for search results]
BASE_SHA=$(git log --oneline --grep="Task 2" | head -1 | awk '{print $1}')
HEAD_SHA=$(git rev-parse HEAD)
[Dispatch arsyn:code-reviewer]
WHAT_WAS_IMPLEMENTED: Cursor-based pagination for /search endpoint
PLAN_OR_REQUIREMENTS: Task 3 from docs/plans/search-overhaul.md
BASE_SHA: b4e22f1
HEAD_SHA: 9a3c8d0
DESCRIPTION: Added cursor encoding, page-size limits, next/prev links
[Reviewer returns]
Critical: Off-by-one in cursor decode skips first result
Minor: Magic number 50 for default page size
โ Fix cursor bug, extract PAGE_SIZE_DEFAULT constant, proceed to Task 4.