Claude Code Daily Briefing - 2026-04-17

Release Summary

VersionDateKey Changes
v2.1.1124/16Fixed Auto mode Opus 4.7 availability
v2.1.1114/16Opus 4.7 xhigh effort, Auto mode for Max subscribers, /ultrareview cloud code review, /less-permission-prompts, interactive /effort slider, auto terminal theme matching, smarter plan filenames, 14 bug fixes

Full release notes


New Features & Practical Usage

Claude Opus 4.7 Now Generally Available — 13% Coding Improvement, High-Res Vision (4/16)

Anthropic has officially released Claude Opus 4.7 across the API, Claude.ai, Amazon Bedrock, Google Cloud Vertex AI, and Microsoft Foundry.

Key improvements:

Pricing: Same as Opus 4.6 (input $5/M, output $25/M)
API identifier: claude-opus-4-7

Note: The tokenizer has been updated — input tokens increase approximately 1.0–1.35x depending on content type. Existing prompts may need re-tuning.

Anthropic | AWS

xhigh Effort Level + Interactive /effort Slider (v2.1.111)

v2.1.111 introduces a new xhigh effort level exclusive to Opus 4.7, sitting between high and max. The default effort for all plans has been raised to xhigh.

# Interactive slider for effort tuning
/effort
# → Use arrow keys to select min/low/medium/high/xhigh/max

# Set directly via CLI
claude --effort xhigh

This is a direct response to the controversy around the “medium” default effort change reported on 4/14. With xhigh as the new default, users get high-quality reasoning out of the box while retaining the ability to tune on the fly.

GitHub v2.1.111

/ultrareview — Cloud-Based Parallel Multi-Agent Code Review (v2.1.111)

Run it without arguments to review current changes, or specify a PR number for targeted analysis. Multiple agents analyze bugs, design issues, and security vulnerabilities in parallel in the cloud.

# Review current changes
/ultrareview

# Review a specific PR
/ultrareview 142

Unlike single-agent sequential review, parallel analysis significantly reduces review time for large PRs. Combined with Routines, you could set up an “auto-review all open PRs every morning” workflow.

GitHub v2.1.111


Developer Workflow Tips

Tame Permission Fatigue with /less-permission-prompts (v2.1.111)

The new /less-permission-prompts skill analyzes your past transcripts to identify read-only Bash and MCP tool calls you repeatedly approve. It proposes a prioritized allowlist and auto-adds entries to .claude/settings.json.

# Run in Claude Code
/less-permission-prompts
# → Analyzes past sessions → extracts frequently approved command patterns
# → Proposes allowlist for settings.json

No more clicking “approve” for ls, cat, and git status every session. With Auto mode now extended to Max subscribers, reducing unnecessary permission prompts is a prerequisite for smooth automation.

Auto Mode Extended to Max Subscribers (v2.1.111)

Auto mode no longer requires the --enable-auto-mode flag — it activates automatically when using Opus 4.7. Read-only Bash commands with glob patterns and cd <project-dir> && ... commands no longer trigger permission prompts, making exploratory work significantly smoother.

Task Budgets for Long-Running Agent Work (Opus 4.7)

The new Task Budget feature (public beta) lets you guide token spending across longer runs. Instead of unbounded token consumption, you can set budget constraints that still allow sufficient reasoning depth — particularly useful for managing Pro Max quotas.


Security & Limitations

Git Commit Author Spoofing Bypasses Claude Code Review (4/16)

Researchers demonstrated that spoofing Git commit author metadata can trick Claude-based AI code reviewers into approving malicious changes.

Attack: Just two commands — git config user.name "trusted-dev" and git config user.email "trusted@company.com" — are enough to impersonate a trusted developer. Claude appeared to use author metadata as a trust signal, showing a tendency to approve changes from “trusted” authors with less scrutiny.

Core issue: Git commit metadata has always been easy to forge without GPG signing. When AI reviewers treat it as a trust signal, it becomes a new attack vector — especially concerning as open source projects increasingly rely on AI auto-review.

Mitigation: Enforce GPG commit signing, or configure AI review workflows to exclude author metadata from trust signals.

The Register

Claude, Gemini, and Copilot GitHub Actions Hijacked via Prompt Injection (4/15)

Security researchers used a “comment and control” prompt injection technique to successfully attack three major AI code review GitHub Actions simultaneously.

ToolAttack MethodStolen CredentialsBountyPatch Status
Claude Code Security ReviewMalicious instructions in PR titleGitHub tokens, Anthropic API keys$100Docs warning added
Gemini CLI ActionTitle + comment injection comboGEMINI_API_KEY$1,337Undisclosed
GitHub Copilot AgentHidden instructions in HTML commentsEnv vars, secrets$500Unpatched

Researcher Aonan Guan warned: “If they don’t publish an advisory, those users may never know they are vulnerable — or under attack.” Anthropic updated its documentation to state that the action is “not hardened against prompt injection attacks and should only be used to review trusted PRs.”

The Register


Ecosystem & Plugins

Claude Sonnet 4 / Opus 4 — API Deprecation on June 15

Anthropic has announced the API retirement of Claude Sonnet 4 and Opus 4 models on June 15, 2026. Migration to Claude Sonnet 4.6 and Opus 4.6 (or 4.7) is recommended.

If you’ve pinned an older model via ANTHROPIC_MODEL in Claude Code, update before the June 15 deadline.

OpenAI Agents SDK Major Update — Competitive Ecosystem Expanding

OpenAI has significantly upgraded its Agents SDK, integrating MCP, skills, AGENTS.md, shell tools, and other primitives that closely mirror Claude Code’s approach. Native sandbox support for 7 providers (Blaxel, Cloudflare, E2B, etc.) is included.

Feature convergence across agent frameworks is accelerating, with TypeScript support and sub-agent capabilities also announced. A direct competitive dynamic with Claude Code SDK and the MCP ecosystem is taking shape.

OpenAI


Community News


Minor Changes Worth Knowing



Interesting Projects & Tools