Cancel an active Codex review gate.
Deactivates an active Codex review gate by deleting its state file.
/plugin marketplace add 0xBigBoss/claude-code/plugin install codex-reviewer@0xbigboss-pluginsCancel an active Codex review gate.
Find the state file at .claude/codex-review.local.md in the git root (or cwd if not in a repo)
Delete the state file to deactivate the review gate
Confirm cancellation to the user
# Find base directory (git root or cwd fallback)
BASE_DIR="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
# Delete state file
rm -f "${BASE_DIR}/.claude/codex-review.local.md"
After deleting the state file, confirm:
Codex review gate cancelled. You can now exit normally without triggering a review.
/codex-reviewer:review again