KI

Records a user's choice to skip the final review gate for the current session.

Install

mkdir -p .claude/skills/kit-skip-review && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18780" && unzip -o skill.zip -d .claude/skills/kit-skip-review && rm skill.zip

Installs to .claude/skills/kit-skip-review

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Record a USER-approved skip of the kit's final-review Stop gate
63 charsno explicit “when” trigger
Beginner

Key capabilities

  • Record user-approved skips of the final review gate
  • Write a bypass flag for the current session
  • Include the user's exact words in the bypass flag
  • Inform the user that the gate is bypassed for the next turn-end only

How it works

The skill writes a bypass flag to a temporary file, including a timestamp and the user's exact words, which allows the `verify-final-review.sh` Stop hook to be bypassed for one turn.

Inputs & outputs

You give it
User's explicit request to skip review
You get back
A bypass flag file for the current session

When to use kit-skip-review

  • Bypass final review gate
  • Record user approval for skip

About this skill

/kit-skip-review — user-approved gate bypass

The Stop hook (verify-final-review.sh) blocks turn-end when business-logic files changed without a review. This skill records the user's decision to waive that review once.

Steps

  1. Verify this is the user's call. This skill must be triggered by an explicit user request. If you (Claude) merely want to end the turn, the answer is /kit-review, not this skill.

  2. Write the bypass flag for this session — the exact path is in KIT_CONTEXT (session start). The gate only accepts a flag whose first line starts with user-approved (a bare touch is discarded): echo "user-approved date=<YYYY-MM-DD> quote=\"<the user's actual words>\"" > /tmp/claude-skip-review-<session_id> The quote field is the audit trail — put the user's real words in it, never a paraphrase you wish they had said.

  3. Tell the user the gate is bypassed for the next turn-end only — the hook consumes the flag when it fires, so later turns are gated again.

When not to use it

  • To self-invoke to get past a block
  • When the user has not explicitly asked to skip the review
  • To end the turn without user approval

Limitations

  • Must be triggered by an explicit user request
  • The bypass flag is consumed after one turn-end
  • The gate only accepts a flag whose first line starts with `user-approved`

How it compares

This skill provides an auditable, user-approved mechanism to bypass a specific review gate for a single turn, unlike simply ignoring the gate or manually editing files.

Compared to similar skills

kit-skip-review side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
kit-skip-review (this skill)023dNo flagsBeginner
conversation-analyzer88moReviewIntermediate
wrap06moReviewIntermediate
file-operations18moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry