Anthropic launched /ultraplan, moving Claude Code planning into a web review flow with cloud execution or terminal handoff. Claude Code 2.1.101 also adds OS certificate-store trust by default, a command-injection fix, and new prompt rules for browser validation and prompt caching.

You can read Anthropic's docs for the exact handoff flow, skim the official changelog for the 46 CLI changes, and check marckrenn's tracker for the prompt diffs Anthropic does not spell out in the main release notes.
/src:0|The launch post frames /ultraplan as a web planning surface for Claude Code, not just another slash command. The official Ultraplan docs say the CLI hands the task to a Claude Code on the web session running in plan mode, where Claude drafts the plan in the cloud while your terminal stays free.
The docs list three entry points:
/ultraplan <prompt>ultraplanAccording to the docs, the feature is in research preview, requires Claude Code v2.1.91 or later, requires Claude Code on the web plus a GitHub repository, and does not work on Bedrock, Vertex AI, or Microsoft Foundry because the cloud run happens in Anthropic's environment.
The useful part is the review surface. Anthropic's docs say you can comment on individual plan sections, react with emoji, jump through an outline sidebar, and iterate on revisions before choosing where the code actually runs.
The execution paths are concrete:
Anthropic's thread reply adds one operational detail engineers will care about immediately: /ultraplan uses about the same number of tokens and rate-limit budget as plan mode.
ClaudeCodeLog's summary is a Christmas-come-early release for people running Claude Code in messy enterprise setups. The official changelog says OS CA certificates are now trusted by default, which removes extra setup for enterprise TLS proxies unless you explicitly force bundled certs with CLAUDE_CODE_CERT_STORE=bundled.
The same release also fixes a command-injection vulnerability in the POSIX shell fallback used by LSP binary detection, plus a pile of failure modes that show where Claude Code has been hurting in the wild:
--resume and --continue recovery on large or branched sessionsOne small but important /ultraplan tie-in appears in the changelog too: remote-session features now auto-create a default cloud environment instead of requiring web setup first.
The official release notes barely mention the prompt layer, but ClaudeCodeLog's tracked diff surfaces three behavior changes that will be visible in day-to-day use.
claude-api skill now covers debugging and optimization, and it explicitly tells Claude to include prompt caching in generated SDK and API apps.That last change is a quiet but meaningful correction to the usual “looks done in the diff” problem.
The additional diff summary is where 2.1.101 turns from a feature release into a map of where Claude Code is expanding. The tracked metadata shows a 95.3 kB bundle increase, about 2,043 more prettified lines of code, 60 more prompt files, and 11,837 more prompt tokens in a release that landed just 13 hours after 2.1.100.
The same diff also lists two new env vars and a new batch of config keys:
CLAUDE_CODE_CERT_STORE, CLAUDE_CODE_SDK_HAS_OAUTH_REFRESHscheduledFor, rewakeMessage, clampedDelaySeconds, end_time, total_paused_msaccessToken, callback_url, payloadVE, xIThe tracker also notes a new warning for manifests that reference a hooks file already loaded, a tiny prompt tweak that makes sense in the same release as the broader config and remote-session cleanup.