From review-cycle
Run the cleanup agent on modified files in the current diff. Applies the comment policy (clean and minimal) and de-slopify methodology. Acts directly via Edit — does NOT loop, does NOT update the review sentinel. Use after ad-hoc edits to tidy up, or as a standalone cleanup pass outside the full /review-cycle:review cycle.
How this skill is triggered — by the user, by Claude, or both
Slash command
/review-cycle:cleanup [--base <ref>] [--files <file1,file2,...>][--base <ref>] [--files <file1,file2,...>]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Thin wrapper that spawns the `review-cycle:cleanup` subagent on the current diff. The subagent does the actual work; this skill just makes it `/`-invocable for ad-hoc use.
Thin wrapper that spawns the review-cycle:cleanup subagent on the current diff. The subagent does the actual work; this skill just makes it /-invocable for ad-hoc use.
Spawn the cleanup subagent via the Agent tool, forwarding $ARGUMENTS:
Agent({
subagent_type: "review-cycle:cleanup",
description: "Cleanup modified files",
prompt: "Run cleanup on the current diff. Arguments: $ARGUMENTS"
})
The subagent:
git diff HEAD and untracked filesEcho the agent's summary to the user verbatim. Do not paraphrase.
/review-cycle:accept after./review-cycle:review for that.Typical flows:
/review-cycle:cleanup/review-cycle:cleanup → /review-cycle:accept/review-cycle:review (invokes cleanup automatically in Phase 6)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 oakoss/claude-plugins --plugin review-cycle