Skip to main content
Releases v2.1.86 → v2.1.915 features · March 30 – April 3
Computer use in the CLIresearch preview

Last week computer use landed in the Desktop app. This week it’s in the CLI: Claude can open native apps, click through UI, test its own changes, and fix what breaks, all from your terminal. Web apps already had verification loops; native iOS, macOS, and other GUI-only apps didn’t. Now they do. Best for closing the loop on apps and tools where there’s no API to call. Still early; expect rough edges.

Run /mcp, find computer-use, and toggle it on. Then ask Claude to verify a change end to end:

Claude Code
> Open the iOS simulator, tap through onboarding, and screenshot each step
Computer use guide
/powerupv2.1.90

Interactive lessons that teach Claude Code features through animated demos, right inside your terminal. Claude Code releases frequently, and features that would have changed how you work last month can slip by. Run /powerup once and you’ll know what’s there.

Run it:

Claude Code
> /powerup
Commands reference
Flicker-free renderingv2.1.89

Opt into a new alt-screen renderer with virtualized scrollback. The prompt input stays pinned to the bottom, mouse selection works across long conversations, and the flicker on redraw is gone. Unset CLAUDE_CODE_NO_FLICKER to roll back.

Set the env var and restart Claude Code:

export CLAUDE_CODE_NO_FLICKER=1
claude
Fullscreen rendering
MCP result-size overridev2.1.91

MCP server authors can now raise the truncation cap on a specific tool by setting anthropic/maxResultSizeChars in the tool’s tools/list entry, up to a hard ceiling of 500K characters. The cap used to be global, so tools that occasionally returned inherently large payloads like database schemas or full file trees hit the default limit and got persisted to disk with a file reference. Per-tool overrides keep those results inline when the tool really needs them.

Annotate the tool in your server’s tools/list response:

{
  "name": "get_schema",
  "description": "Returns the full database schema",
  "_meta": {
    "anthropic/maxResultSizeChars": 500000
  }
}
MCP reference
Plugin executables on PATHv2.1.91

Place an executable in a bin/ directory at your plugin root and Claude Code adds that directory to the Bash tool’s PATH while the plugin is enabled. Claude can then invoke the binary as a bare command from any Bash tool call, with no absolute path or wrapper script needed. Handy for packaging CLI helpers next to the commands, agents, and hooks that call them.

Add a bin/ directory at the plugin root:

my-plugin/
├── .claude-plugin/
│   └── plugin.json
└── bin/
    └── my-tool
Plugins reference

Other wins

Auto mode follow-ups: new PermissionDenied hook fires on classifier denials (return retry: true to let Claude try a different approach), and /permissions → Recent lets you retry manually with r
New defer value for permissionDecision in PreToolUse hooks: -p sessions pause at a tool call and exit with a deferred_tool_use payload so an SDK app or custom UI can surface it, then resume with —resume
/buddy: hatch a small creature that watches you code (April 1st)
disableSkillShellExecution setting blocks inline shell from skills, slash commands, and plugin commands
Edit tool now works on files viewed via cat or sed -n without a separate Read
Hook output over 50K saved to disk with a path + preview instead of injected into context
Thinking summaries off by default in interactive sessions (showThinkingSummaries: true to restore)
Voice mode: push-to-talk modifier combos, Windows WebSocket, macOS Apple Silicon mic permission
claude-cli:// deep links accept multi-line prompts (encoded %0A)
Full changelog for v2.1.86–v2.1.91 →