# Reviewer Blocking Enable

> Run this command to remove the max_consecutive_blocks override, restoring the default (3):

- Skill: `imbue-ai/reviewer-blocking-enable` (Agent Skill)
- Install (CLI): `npx skillmds@latest add imbue-ai/reviewer-blocking-enable`
- Raw SKILL.md: https://api.skillmd.com/api/skills/imbue-ai/reviewer-blocking-enable/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: imbue-ai (https://skillmd.com/u/imbue-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/imbue-ai/reviewer-blocking-enable

---


Run this command to remove the max_consecutive_blocks override, restoring the default (3):

```bash
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).

