Week 14 · March 30 – April 3, 2026

Tags

official-docs claude-code-cli

Content

Documentation Index

Fetch the complete documentation index at: https://code.claude.com/docs/llms.txt Use this file to discover all available pages before exploring further.

Week 14 · March 30 – April 3, 2026

Computer use in the CLI, interactive in-product lessons, flicker-free rendering, per-tool MCP result-size overrides, and plugin executables on PATH.

Releases v2.1.86 → v2.1.91 5 features · March 30 – April 3
Computer use in the CLI research 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.

/powerup v2.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.

Flicker-free rendering v2.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.

MCP result-size override v2.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:

```json highlight={5} theme={null} { "name": "get_schema", "description": "Returns the full database schema", "_meta": { "anthropic/maxResultSizeChars": 500000 } } ``` MCP reference
Plugin executables on PATH v2.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:

```text highlight={4, 5} theme={null} 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 →