From arcforge
Requests code review after task completion by gathering git SHAs and dispatching a code-reviewer subagent. Mandatory per task in agent-driven mode and before merge.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arcforge:arc-requesting-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Mandatory:**
Mandatory:
Optional:
Review frequency by workflow:
Get git SHAs:
BASE_SHA=$(git rev-parse HEAD~1)
HEAD_SHA=$(git rev-parse HEAD)
Dispatch code-reviewer subagent (arcforge:code-reviewer) using the template at arc-requesting-review/code-reviewer.md (this skill's directory) and fill placeholders:
Required placeholders:
{WHAT_WAS_IMPLEMENTED}{PLAN_OR_REQUIREMENTS}{BASE_SHA}{HEAD_SHA}{DESCRIPTION}[Just completed Task 2: Add verification function]
BASE_SHA=$(git rev-parse HEAD~1)
HEAD_SHA=$(git rev-parse HEAD)
[Dispatch code-reviewer]
WHAT_WAS_IMPLEMENTED: Verification and repair functions
PLAN_OR_REQUIREMENTS: Task 2 from docs/tasks/verify-index-tasks.md
BASE_SHA: a7981ec
HEAD_SHA: 3df7661
DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types
[Reviewer feedback]
Important: Missing progress reporting
Minor: Magic number for reporting interval
[Fix Important, note Minor, then continue]
When reviewer feedback arrives:
arc-receiving-review to process feedback with technical rigorarc-verifying → arc-finishing (Step 0 discriminates on .arcforge-epic)Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub gregoryho/arcforge --plugin arcforge