review-changes

Installation
SKILL.md

Review Changes

Orchestrate the full review pipeline: handoff → review → fix. This skill chains three phases with user checkpoints between each.

Phase 1: Create Handoff

Run the full handoff generation inline (do not invoke /create-handoff as a sub-skill — execute the steps directly):

Step 1.1: Determine the session name

  1. If the user provided $ARGUMENTS, sanitize it using a shell command — not LLM interpretation — to produce a safe kebab-case string:
    echo "$ARGUMENTS" | tr '[:upper:]' '[:lower:]' | sed -E 's/[^a-z0-9-]+/-/g; s/^-+//; s/-+$//; s/-{2,}/-/g'
    
    Use the output as the session name. If the sanitized result is empty, fall back to option 2.
  2. Otherwise, infer from the current branch name (e.g. feature/issue-24-authenticationissue-24-authentication)
  3. If on main/master, ask the user what to name the session

Step 1.2: Create the session directory

Related skills
Installs
13
GitHub Stars
6
First Seen
Mar 10, 2026