AIToday
AI Coding AssistantsAI Safety & AlignmentHacker NewsPublished: Aug 7, 2026, 06:00 JST2 min read

Humans miss a third of dangerous AI coding requests in approval game

Humans miss a third of dangerous AI coding requests in approval game

Key takeaway

  • A game-based study of over 40,000 human approval decisions on AI coding agent requests found that players missed roughly one in three malicious commands, with scope violations (like exposing cloud credentials) missed 35 percent of the time.

  • The finding reveals a real-world security problem: as developers increasingly rely on AI agents to handle complex tasks, approval fatigue—users approving around 93 percent of permission prompts—makes it harder to catch dangerous requests, creating a gap that tooling alone cannot solve.

3 Key Points

  1. What happened

    A browser-based game testing human judgment on AI coding agent permission requests found that players approved roughly one in three malicious commands on average, with scope violations like exposing AWS credentials or Kubernetes config files missed 35 percent of the time. The game analyzed over 40,000 runs and 409,000 approval/denial decisions.

  2. Why it matters

    As developers increasingly delegate complex tasks to AI coding agents rather than reviewing single-line suggestions, approval fatigue sets in—Anthropic telemetry shows users approve around 93 percent of permission prompts. The more approvals a person sees, the less attention they pay to each, creating a real security gap where dangerous commands slip through undetected.

  3. What to watch

    Anthropic built Claude Code auto mode to catch roughly 83 percent of overeager behaviors before execution, though about 17 percent still get through; developer awareness of sandbox environments, devcontainers, and permission-model trade-offs will be critical as these tools mature.

Ask the AI about this article →

Context & Analysis

The study emerges from a genuine design problem: coding agents by default require human approval for every command, which sounds safe but proves impractical. Belgian developer Alex Wauters built the game after observing that approval fatigue—combined with the lack of clear context around each decision—leads developers to either skip permissions entirely using '--dangerously-skip-permissions' flags or become sloppy reviewers. This tension between security and usability sits at the heart of the current AI coding-agent tooling landscape.

Anthropric's own telemetry backs up the game's findings: a 93 percent approval rate in real-world Claude Code usage suggests that the human-in-the-loop model, while theoretically sound, breaks down under the cognitive load of frequent decisions. Wauters notes that commands appearing benign—like npm run analyze—can be modified by agents to run any payload, so genuine safety requires stopping to investigate all files before approval. This is precisely the time sink that defeats the purpose of using an AI agent to free up developer bandwidth, so the incentive structure itself pushes toward corner-cutting.

The path forward, according to Wauters and Anthropic, involves layered defenses: sandboxed execution environments, cloud-based devcontainers, model-based classifiers to filter obviously unsafe actions (like Anthropic's auto mode), and developer awareness of the permission-model trade-offs. Neither side frames human-in-the-loop approval alone as a sufficient safeguard anymore.

FAQ

What was the most frequently missed malicious command?
npm run analyze was approved nearly 65 percent of the time despite being able to run whatever is defined in a project's package.json file, even though the game provided the agent's history log showing what the script contained.
How does Anthropic's Claude Code auto mode perform?
Auto mode catches roughly 83 percent of what Anthropic calls 'overeager behaviors' before they execute, meaning about 17 percent still get through in its evaluation.
What approval rate do real users show with Claude Code?
Anthropic telemetry from Claude Code shows users approve around 93 percent of permission prompts.

Get the latest AI Coding Assistants news every morning

For example, today's edition would include:

  • OpenClaw 2.0 launches, targeting enterprise AI teamsVentureBeat AI · 7h ago
  • AI Coding Shifts from Prompts to Context to HarnessITmedia AI+ · 14h ago
  • Workday brings AI agents into Gmail, keeping ERP guardrailsSiliconANGLE AI · 16h ago

AI-summarized, only the topics you pick — one digest a day via Email, Slack, or Discord.

Free · takes 30 seconds · unsubscribe anytimeWhat is AIToday? →

Ask AI

Ask AI anything about this article. Q&As are published on this page for other readers too.

Related Articles

Next articleGitHub Copilot app adds slash commands for faster workflows