← How I Use AI Dispatch #11

#11 Updated April 19, 2026

Annoyed by Claude Code permission prompts? Read this.

We want Claude Code to act as an autonomous agent — go off, refactor a pipeline, run a long analysis, iterate on a benchmark. In practice it interrupts every few seconds asking for permission to run this bash command or that MCP tool. Two recent features let you stop babysitting without reaching for --dangerously-skip-permissions.

The annoyance

Start a long task, walk away, come back ten minutes later, and find Claude Code stopped on the first unfamiliar command waiting for you to click approve. Run two sessions in parallel and the problem doubles. The old workaround — --dangerously-skip-permissions — removes the safety net entirely, which I am not comfortable with for research data and git operations. There are now two better options.

Fix 1: Auto mode

Auto mode routes every permission prompt through a model-based classifier that decides whether the command is safe. Safe commands are auto-approved; genuinely risky ones (destructive git, production writes, unfamiliar network calls) still surface to you. Safer than --dangerously-skip-permissions, because the classifier is actually reading the tool call.

How to turn it on.

The practical win is being able to run several Claudes in parallel. Once one is cooking, switch to the next, and let the classifier handle routine approvals in the background.

Fix 2: The /fewer-permission-prompts skill

Complementary to auto mode. This skill scans your session history, finds bash and MCP commands that are clearly safe but caused repeated prompts (think ls, git status, bq show, specific MCP tools you use every day), and recommends a prioritized allowlist to paste into ~/.claude/settings.json (or the project-level .claude/settings.json).

Run it from any Claude Code session:

/fewer-permission-prompts

Think of it as a one-time tuning pass you repeat every few weeks as your tool use evolves. Official reference: Claude Code — Configure permissions.

Source

Both features are described by Boris Cherny (Anthropic) in this thread on X.