بنقرة واحدة
reviewer-blocking-enable
Restore the stop hook to blocking mode (default: block up to 3 times before letting through)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Restore the stop hook to blocking mode (default: block up to 3 times before letting through)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Disable the code review stop hook entirely by short-circuiting stop_hook.enabled_when in .reviewer/settings.local.json.
Enable the code review stop hook in .reviewer/settings.local.json. Optionally takes a shell expression for when to enforce (defaults to restoring the prior expression, or always).
Configure autofix to only fix MAJOR and CRITICAL issues (unattended mode)
Review the conversation transcript for behavioral issues (misleading behavior, disobeyed instructions, instructions worth saving).
Assess whether the approach taken on a branch is the right way to solve the problem.
Make the stop hook non-blocking (remind once, then let the agent through)
| name | reviewer-blocking-enable |
| description | Restore the stop hook to blocking mode (default: block up to 3 times before letting through) |
Run this command to remove the max_consecutive_blocks override, restoring the default (3):
jq -n --argjson existing "$(cat .reviewer/settings.local.json 2>/dev/null || echo '{}')" '$existing | if .stop_hook then .stop_hook |= del(.max_consecutive_blocks) | if .stop_hook == {} then del(.stop_hook) else . end else . end' > .reviewer/settings.local.json.tmp && mv .reviewer/settings.local.json.tmp .reviewer/settings.local.json
Then confirm that the stop hook has been restored to blocking mode (default: 3 consecutive blocks before safety hatch).