Claude-Code v2.1.111 adds Opus 4.7 xhigh effort, /ultrareview, and PowerShell tool

What's new in Claude-Code v2.1.111
Claude-Code v2.1.111 is a significant update to the AI coding assistant that adds new model capabilities, productivity features, and platform improvements. The release focuses on giving users more control over model behavior while reducing friction in common workflows.
Key features and changes
- Claude Opus 4.7 xhigh effort level: A new effort setting between
highandmaxfor Opus 4.7. Available via/effort,--effort, and the model picker. Other models fall back tohighwhen xhigh is selected. - Interactive /effort control: Calling
/effortwithout arguments now opens an interactive slider with arrow-key navigation between levels and Enter to confirm. - Auto mode for Max subscribers: Available when using Opus 4.7, and no longer requires
--enable-auto-modeflag. - /ultrareview command: Runs comprehensive code review in the cloud using parallel multi-agent analysis and critique. Invoke with no arguments to review your current branch, or
/ultrareview <PR#>to fetch and review a specific GitHub PR. - /less-permission-prompts skill: Scans transcripts for common read-only Bash and MCP tool calls and proposes a prioritized allowlist for
.claude/settings.json. - PowerShell tool rollout: Windows users can opt in or out with
CLAUDE_CODE_USE_POWERSHELL_TOOLenvironment variable. On Linux and macOS, enable withCLAUDE_CODE_USE_POWERSHELL_TOOL=1(requirespwshon PATH). - Auto theme matching: Added "Auto (match terminal)" theme option that matches your terminal's dark/light mode — select it from
/theme. - Reduced permission prompts: Read-only bash commands with glob patterns (e.g.
ls *.ts) and commands starting withcd <project-dir> &&no longer trigger a permission prompt.
UI and workflow improvements
- Plan file naming: Plan files are now named after your prompt (e.g.
fix-auth-race-snug-otter.md) instead of purely random words. - Typo suggestions: Suggests closest matching subcommand when
claude <word>is invoked with a near-miss typo (e.g.claude udpate→ "Did you meanclaude update?"). - /skills menu sorting: Now supports sorting by estimated token count — press
tto toggle. - Keyboard shortcuts:
Ctrl+Unow clears the entire input buffer (previously: delete to start of line); pressCtrl+Yto restore.Ctrl+Lnow forces a full screen redraw in addition to clearing the prompt input. - Transcript view shortcuts: Footer now shows
[(dump to scrollback) andv(open in editor) shortcuts. - Truncated paste indicator: The "+N lines" marker for truncated long pastes is now a full-width rule for easier scanning.
Configuration and debugging enhancements
- Improved /setup-vertex and /setup-bedrock: Show the actual
settings.jsonpath whenCLAUDE_CONFIG_DIRis set, seed model candidates from existing pins on re-run, and offer a "with 1M context" option for supported models. - OpenTelemetry debugging: Added
OTEL_LOG_RAW_API_BODIESenvironment variable to emit full API request and response bodies as OpenTelemetry log events for debugging. - Headless JSON output:
--output-format stream-jsonnow includesplugin_errorson the init event when plugins are demoted for unsatisfied dependencies.
Bug fixes and stability improvements
- Fixed terminal display tearing (random characters, drifting input) in iTerm2 + tmux setups when terminal notifications are sent.
- Fixed
@file suggestions re-scanning the entire project on every turn in non-git working directories. - Fixed LSP diagnostics from before an edit appearing after it, causing the model to re-read files it just edited.
- Fixed tab-completing
/resumeimmediately resuming an arbitrary titled session instead of showing the session picker. - Fixed
/contextgrid rendering with extra blank lines between rows. - Fixed
/cleardropping the session name set by/rename, causing statusline output to losesession_name. - Improved plugin error handling: dependency errors now distinguish conflicting, invalid, and overly complex version requirements.
- Fixed stale resolved versions after
plugin update;plugin installnow recovers from interrupted prior installs. - Fixed Claude calling a non-existent
commitskill and showing "Unknown skill: commit" for users without a custom/commitcommand. - Fixed 429 rate-limit errors on Bedrock/Vertex/Foundry referencing status.claude.com (it only covers Anthropic-operated providers).
- Fixed feedback surveys appearing back-to-back after dismissing one.
- Reverted the v2.1.110 cap on non-streaming fallback retries — it traded long waits for more outright failures during API overload.
- Suppressed spurious decompression, network, and transient error messages that could appear in the TUI during normal operation.
This update is for developers using Claude-Code who want more granular control over model effort levels, automated code review capabilities, and improved terminal integration across platforms.
📖 Read the full source: GitHub Claude-Code
👀 See Also

Screenbox: Open-Source Virtual Desktops for AI Agents Built Entirely by Voice
Screenbox provides isolated Linux desktops in Docker for AI agents, solving conflicts when multiple agents run in parallel. The project was built entirely using voice commands with Claude Code, and the creator hasn't seen a single line of the code.

MultiModel Code Review Workflow Packaged as Reusable Skill
A reusable skill that orchestrates multiple AI models for PR and non-PR code reviews, tested with OpenClaw and models like GPT-5.5, DeepSeek V4 Pro, Kimi K2.6, Qwen 3.6 Plus, and GLM-5.1.
UI and Server for Anthropic's Natural Language Autoencoders on llama.cpp
A custom llama.cpp server and Mikupad UI for Anthropic's open-weight Natural Language Autoencoders, supporting activation extraction, explanation, reconstruction, and steering via explanation editing.

Routerly: Self-Hosted LLM Gateway with Runtime Routing Policies and Budget Control
Routerly is a free, open-source, self-hosted LLM gateway that provides runtime model selection based on routing policies like cheapest, fastest, or most capable, along with project-level budget limits with per-token tracking. It's OpenAI-compatible for drop-in use with tools like Cursor, LangChain, and Open WebUI.