From review-cycle
Mark the current uncommitted state as reviewed by updating the review sentinel. Use when you've manually reviewed the substance of your changes and want to commit without running the full /review-cycle:review cycle. Per-state escape hatch, lighter than the project-wide .claude/.no-review-gate opt-out marker.
How this skill is triggered — by the user, by Claude, or both
Slash command
/review-cycle:acceptThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Updates the review sentinel at `${PROJECT_ROOT}/.claude/.review-mark` to match the current uncommitted state. The Stop hook and commit-gate will then pass for this exact state.
Updates the review sentinel at ${PROJECT_ROOT}/.claude/.review-mark to match the current uncommitted state. The Stop hook and commit-gate will then pass for this exact state.
Use cases:
/review-cycle:cleanup and want to commit without running reviewers# Resolve project root
PROJECT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) || {
echo "Error: not inside a git repository."
exit 1
}
# Compute current state hash
if command -v sha256sum >/dev/null 2>&1; then
SHA_CMD="sha256sum"
elif command -v shasum >/dev/null 2>&1; then
SHA_CMD="shasum -a 256"
else
echo "Error: no sha256sum or shasum available."
exit 1
fi
HASH=$(cd "$PROJECT_ROOT" && git status --porcelain --untracked-files=all | $SHA_CMD | cut -d' ' -f1)
# Atomic write to sentinel
mkdir -p "$PROJECT_ROOT/.claude"
SENTINEL="$PROJECT_ROOT/.claude/.review-mark"
TMP="${SENTINEL}.tmp.$$"
echo "$HASH" > "$TMP" && mv "$TMP" "$SENTINEL"
echo "Marked current state as reviewed."
echo "Sentinel: $SENTINEL"
echo "Hash: $HASH"
echo ""
echo "The commit gate will pass for this exact state. Any further edits will re-trigger the gate."
/review-cycle:review (which auto-updates the sentinel at Phase 7)..claude/.no-review-gate exists, hooks ignore the sentinel anyway./review-cycle:cleanup → tidy up edits
/review-cycle:accept → mark as reviewed
git commit → gate passes, commit succeeds
vs the full cycle:
/review-cycle:review → fan out reviewers, apply fixes, cleanup, update sentinel
git commit → gate passes, commit succeeds
npx claudepluginhub oakoss/claude-plugins --plugin review-cycleGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.