GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
      • Apple Intelligence
      • Gemini AI
      • Google DeepMind
      • Anthropic
      • Claude AI
      • Claude Code
      • OpenAI
      • ChatGPT
      • Codex
      • Perplexity
      • SpaceXAI
      • Grok AI
      • Microsoft Copilot
      • Meta AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Computing
  • Gaming
  • Mobile
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • Buying Guide
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • AI
    • Apple Intelligence
    • Gemini AI
    • Google DeepMind
    • Anthropic
    • Claude AI
    • Claude Code
    • OpenAI
    • ChatGPT
    • Codex
    • Perplexity
    • SpaceXAI
    • Grok AI
    • Microsoft Copilot
    • Meta AI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Follow US
AIGoogleTech

Google adds read-only plan mode to Gemini CLI

Google is giving Gemini CLI a new plan mode that analyzes your codebase in read-only mode before proposing any risky edits, keeping big changes under control.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Mar 12, 2026, 1:03 PM EDT
Share
We may get a commission from retail offers. Learn more
Gemini CLI icon on a background with code snippets
Image: Google
SHARE

Google is giving its Gemini CLI a much more thoughtful “measure twice, code once” brain with the rollout of plan mode, a new read-only mode designed to help developers research, reason, and design before a single line of code is touched. Instead of jumping straight into auto-editing your files, Gemini now has a dedicated planning phase where it can explore your codebase, map dependencies, and ask clarifying questions, all without the risk of it silently refactoring something you didn’t mean to change.

At its core, plan mode is a safety rail and a workflow upgrade rolled into one. It restricts Gemini CLI to a limited toolset: it can read files, run grep-style searches, glob through directories, and consult documentation, but it can’t modify anything except its own internal plan artifacts. That creates a clear separation between “thinking” and “doing” — you get a detailed strategy first, then explicitly opt in when you’re ready for the agent to edit code. For teams wary of letting an AI loose on a large monorepo, this is an important trust-building step.

Where this gets interesting is how interactive the planning flow is. Google has paired plan mode with a new ask_user tool, which effectively formalizes what should have been happening in AI coding sessions all along: the agent stops, asks you targeted questions, and only proceeds when requirements are clear. Instead of making up architecture decisions, Gemini CLI can ask whether you prefer a migration approach A vs B, which database to target, or where the real configuration file lives in a legacy project. The end result is a plan that feels more like a collaborative design doc than a black-box suggestion.

Plan mode also isn’t confined to your local filesystem. Thanks to support for read-only MCP tools, Gemini CLI can pull in context from the rest of your developer stack — GitHub issues, Postgres schemas, Google Docs, and more — but still remain in a non-destructive state. That makes it particularly useful for bigger refactors or cross-service feature work, where understanding how systems talk to each other is more important than writing the first function. This is the kind of scenario where traditional “chat with your code” setups often fall down because they lack structured, multi-source context.

On the ergonomics side, Google is making plan mode feel like a first-class citizen rather than an obscure flag. It’s enabled by default for all users, and there are multiple ways to invoke it: type /plan in the Gemini CLI input, press Shift+Tab to cycle approval modes until you land on Plan, or just ask Gemini to “start a plan for…” a task you have in mind. If you live in the terminal and want to build planning into muscle memory, you can flip a setting so new sessions start in Plan by default via /settings and choose Plan as the Default Approval Mode.

Under the hood, plan mode also ties into Gemini’s model-routing story. During planning, Gemini CLI automatically routes to higher-reasoning Pro-tier models, including the newer Gemini 3.1 Pro, to handle the heavier architectural thinking. Once a plan is approved and you move into implementation, the CLI can switch to a faster Flash-style model to actually execute edits at speed, balancing quality and responsiveness without forcing you to think about which model to pick.

If you want more than a single session plan, Google is positioning plan mode as a foundation for richer workflows, not just a toggle. A good example is Conductor, a Gemini CLI extension that already leans heavily on planning concepts like “tracks,” specs, and Markdown-based plans. Conductor effectively turns AI-driven development into a structured pipeline: define context, generate specs and plan files, then implement step by step while keeping the human developer in charge. With the first-class plan mode and the ask_user tool, Conductor can now run exhaustive pre-flight checks, confirm decisions at milestones, and then hand off to editing modes with less risk.

Extensibility is a recurring theme. Google’s documentation calls out that you can layer your own policies and workflows on top of plan mode, using tools like enter_plan_mode and exit_plan_mode and custom policies to enforce team-specific rules. For example, you could require a plan step for touching certain critical services, or wire plan mode into a homegrown extension that enforces test-driven workflows. With Gemini CLI extensions installable via a simple gemini extensions install <URL> command, the ecosystem around these planning-focused workflows should be straightforward for teams to experiment with.

Importantly, Google is also acknowledging that not everyone wants another mode in their stack. If you prefer a lean terminal or already have a battle-tested planning process, you can disable plan mode entirely from /settings by searching for “Plan.” Doing so removes it from the Shift+Tab rotation and unregisters the plan-related tools, leaving you with the existing Default and Auto-Edit (or “YOLO”) style flows. The message is clear: Gemini CLI is meant to adapt to your workflow, not force a particular process on you.

From a broader perspective, plan mode nudges AI-assisted development closer to how experienced teams already ship features: gather context, discuss tradeoffs, write a plan, then implement. Traditionally, most AI coding tools have optimized for “just write the code,” which is great for small tasks but dangerous for multi-service changes, migrations, or anything that requires real systems thinking. By formalizing planning as a dedicated, read-only phase with high-reasoning models, integrated Q&A, and extension hooks, Google is betting that the next wave of AI coding productivity comes from better process, not just faster code generation.

If you’re already using Gemini CLI, this release doesn’t require any special setup: plan mode is live and ready to try on your next feature, refactor, or migration. The more interesting question is how quickly teams will bake it into their standard dev playbooks — for example, “all risky changes must go through a plan” — and how the extension ecosystem evolves around it. For now, it’s a strong signal that AI tooling is maturing beyond autocomplete: from just writing code to actually helping you decide what to build and how to build it.

Topic:Gemini AI (formerly Bard)
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Apple Watch Ultra 4 gets its first post-launch discount
Googlebook laptops are now up for pre-order
The new M6 Mac mini and M5 Max/M5 Ultra Mac Studio are now available
The iPhone Duo nearly came with a smaller Apple Pencil
Google Gemini breached private corporate systems during cybersecurity test

Also Read

Promotional image set against a solid black backdrop showcasing a sleek, dark-blue metallic Googlebook laptop seen from a tilted top-down angle. The top chassis features a multi-colored Google accent line and logo, with keyboard keys visible on the left edge. Floating above the laptop is a glowing dark blue capsule pill displaying a multi-colored Gemini sparkle icon and the text 'Let Gemini help with that'. Below the device, white typography reads 'Designed for Gemini Intelligence' accompanied by a Gemini sparkle icon.

Googlebook is Google’s new $899 premium laptop

Five sleek Googlebook laptops arranged in a row against a black background, showcased from left to right by partner brands Acer, ASUS, Dell Technologies, HP, and Lenovo, beneath a centered white Googlebook logo.

Google just introduced Googlebook, and yes, that’s the name

The OpenAI logo displayed in white against a deep blue gradient background. The logo consists of a stylized hexagonal geometric shape resembling an interlocking pattern or aperture on the left, paired with the text "OpenAI" in a clean, modern font on the right. The background features subtle lighting effects with darker edges and a brighter blue glow in the upper right corner, creating a professional and technological atmosphere.

OpenAI calls for global standards to tackle frontier AI and recursive self-improvement risks

Artificial neuron in concept of artificial intelligence.

OpenAI and Anthropic want smaller data centers, and they want them fast

SpaceXAI logo displayed in white on a black background, featuring the official wordmark of the merged SpaceX and xAI brand.

SpaceXAI launches Grok 4.7 with longer-running AI tasks

A close-up view of a person with freckled skin peering down into a miniature, dollhouse-style city made of blue modular cubic rooms. The tiny illuminated cut-out interiors showcase miniature domestic scenes, including a room with a green jacket hanging on a rack, a study lined with bookshelves, and small furnished living spaces.

Perplexity Computer adds MiniMax H3 and Seedance 2.5 for AI video creation

Wide front view of the Apple Music Hall interior showcasing illuminated fluted arch borders, tiered red seating in the background, and an open stage area.

Apple Music opens high-tech music venue in London

Ring 2K Battery Doorbell + Indoor Cam Plus bundle

Get the Ring 2K Battery Doorbell & Indoor Cam bundle for just $59.99

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.