Claude Code Plan Mode 2026: Complete Guide With Shortcuts

Plan Mode lets Claude Code analyze your codebase before changing anything. Learn shortcuts, when to use it, and how to get free Anthropic credits.

Claude CodeClaude Code Plan ModePlan ModeAnthropicAI Perks
Author Avatar
Andrew
AI Perks Team
10,218

Quick Answer

Activate Plan Mode in Claude Code by pressing Shift+Tab twice or typing /plan. Plan Mode is read-only - Claude analyzes your codebase and proposes a plan without making changes. Edit the plan with Ctrl+G, then approve to execute. Get free Anthropic credits worth $1,000-$25,000+ at getaiperks.com.

AI Perks

AI Perks curates and provides access to exclusive discounts, credits, and deals on AI tools, cloud services, and APIs to help startups and developers save money.

AI Perks Cards

What Is Claude Code Plan Mode?

Claude Code Plan Mode is a read-only exploration mode that lets Claude analyze your codebase, reason about architecture, and propose a step-by-step implementation plan without making any changes. It's the workflow change that prevents 90% of AI coding mistakes - you review the plan before any code is written.

Plan Mode is especially powerful for multi-file refactors, complex features, and unfamiliar codebases. Combined with free Anthropic credits worth $1,000-$25,000+ from AI Perks, you can run unlimited Plan Mode sessions to design changes carefully without burning through API budget.


Save your budget on AI Credits

Search deals for
OpenAI
OpenAI,
Anthropic
Anthropic,
Lovable
Lovable,
Notion
Notion

Promote your SaaS

Reach 90,000+ founders globally looking for tools like yours

Apply now

How to Activate Plan Mode in Claude Code

There are three ways to enter Plan Mode:

Method 1: Keyboard Shortcut (Fastest)

Press Shift+Tab twice during any Claude Code session. The first Shift+Tab cycles to the next permission mode; the second lands on Plan Mode, shown as ⏸ plan mode on in the status bar.

Method 2: Slash Command

Type /plan and press Enter. Added in January 2026, this is the most discoverable way to enter Plan Mode.

Method 3: Start a New Session in Plan Mode

Launch Claude Code with the flag:

claude --permission-mode plan

This starts the session in Plan Mode without needing to switch later.


AI Perks

AI Perks curates and provides access to exclusive discounts, credits, and deals on AI tools, cloud services, and APIs to help startups and developers save money.

AI Perks Cards

What Plan Mode Can and Cannot Do

OperationPlan ModeNormal Mode
Read filesYesYes
Search codebaseYesYes
Use grep, glob, findYesYes
Reason about architectureYesYes
Edit filesNoYes
Run shell commandsNoYes (with permission)
Create new filesNoYes
Delete filesNoYes
Run testsNoYes
Modify git stateNoYes

Plan Mode is a hard read-only sandbox. Claude physically cannot make changes - which is exactly why it's safe to use on production codebases or unfamiliar code.


How Plan Mode Workflow Actually Works

Step 1: Enter Plan Mode

Press Shift+Tab twice or type /plan. You'll see ⏸ plan mode on in the status bar.

Step 2: Describe Your Goal

Tell Claude what you want to accomplish. For complex tasks, Claude will use AskUserQuestion to clarify requirements before planning.

You: "Add a rate limiter to all API endpoints that returns 429 with retry-after header"

Step 3: Claude Researches and Plans

Claude reads relevant files, searches for patterns, and reasons about the change. This can take 30 seconds to several minutes for complex tasks.

Step 4: Claude Saves the Plan

Plans are saved as markdown files in ~/.claude/plans/ with random names like dreamy-orbiting-quokka.md. The plan persists across sessions and survives /clear and context compaction.

Step 5: Review and Edit the Plan

Press Ctrl+G to open the plan in your editor. You can:

  • Remove steps you don't want
  • Adjust the approach
  • Add specific files or functions to modify
  • Add caveats or constraints

Step 6: Approve and Execute

Tell Claude to proceed. Claude exits Plan Mode and implements exactly what was agreed upon - no scope creep, no surprise edits.


When You Should Use Plan Mode

ScenarioWhy Plan Mode Helps
Multi-file refactorSee all changes before any commit
Complex featureCatch design issues early
Unfamiliar codebaseForce exploration before action
Production codeEliminate surprise modifications
MigrationsValidate sequence of changes
Architectural changesGet a written contract
Code reviewReview without modifying
DebuggingUnderstand before fixing

When You Don't Need Plan Mode

  • Single-file edits with clear scope
  • Trivial bug fixes
  • Quick prototyping
  • Pure code generation (greenfield)

For these, normal mode is faster and the planning overhead isn't worth it.


Plan Mode Keyboard Shortcuts

ShortcutAction
Shift+TabCycle through permission modes
Shift+Tab × 2Activate Plan Mode
/planActivate Plan Mode (slash command)
Ctrl+GOpen current plan in editor
EscCancel plan generation
Shift+Tab againExit Plan Mode

Why Plan Mode Saves You Money on Claude Credits

Without Plan Mode, Claude often does:

  1. Reads files (uses tokens)
  2. Makes a wrong edit (uses tokens)
  3. You ask to revert (uses tokens)
  4. Claude reads files again (uses tokens)
  5. Tries different approach (uses tokens)
  6. Finally gets it right (uses tokens)

Total: 6+ rounds of token consumption.

With Plan Mode:

  1. Reads files (uses tokens)
  2. Proposes plan (uses tokens)
  3. You edit the plan (no tokens)
  4. Claude executes correctly (uses tokens)

Total: 3 rounds of token consumption.

For complex tasks, Plan Mode can cut total token cost by 50-70% by avoiding wasted attempts. Even more savings come from running Plan Mode sessions on free Anthropic credits worth $1,000-$25,000+ via AI Perks.


Plan Mode + Free Anthropic Credits

Credit ProgramAvailable CreditsHow to Get
Anthropic Claude (Direct)$1,000 - $25,000AI Perks Guide
AWS Activate (Bedrock - Claude)$1,000 - $100,000AI Perks Guide
Google Cloud Vertex (Claude)$1,000 - $25,000AI Perks Guide
Microsoft Founders Hub$500 - $1,000AI Perks Guide

Total potential: $4,500 - $156,000+ in free Claude credits

Configure Claude Code to use your API key (powered by free credits) instead of paying for Pro/Max subscriptions. Run unlimited Plan Mode sessions at zero cost.


Step-by-Step: Use Plan Mode With Free Credits

Step 1: Get Free Anthropic Credits

Subscribe to AI Perks and follow guides for the highest-value Anthropic credit programs.

Step 2: Configure Claude Code With Your API Key

Set the API key in ~/.claude/auth/ or via ANTHROPIC_API_KEY environment variable.

Step 3: Start a Session in Plan Mode

claude --permission-mode plan

Step 4: Describe Complex Tasks

Use Plan Mode for any change touching 3+ files or affecting architecture.

Step 5: Review, Edit, Approve

Use Ctrl+G to refine the plan. Approve only when you're confident.

Step 6: Execute With Confidence

Claude implements the agreed plan exactly. No surprises, no wasted tokens.


Frequently Asked Questions

What is Claude Code Plan Mode?

Plan Mode is a read-only mode in Claude Code where Claude analyzes your codebase and proposes a plan without making any changes. Activate it with Shift+Tab × 2 or by typing /plan. Once you approve the plan, Claude exits Plan Mode and executes the plan exactly.

How do I exit Plan Mode in Claude Code?

Press Shift+Tab to cycle out of Plan Mode, or approve a plan to auto-exit. The status bar shows your current mode (⏸ plan mode on means active).

Can Plan Mode run shell commands?

No. Plan Mode is strictly read-only - no file edits, no shell commands, no git operations, no test runs. This is the safety guarantee that makes it suitable for production codebases. To execute, exit Plan Mode and approve the plan.

Where are Claude Code plans saved?

Plans are saved in ~/.claude/plans/ as markdown files with random names (e.g., dreamy-orbiting-quokka.md). They persist across sessions, survive /clear, and survive context compaction. You can edit plans manually with any text editor.

Does Plan Mode use fewer Claude tokens?

Plan Mode uses tokens like normal mode for analysis, but saves tokens overall by avoiding wasted attempts. A complex task might cost 50-70% less in total tokens because you catch design issues before Claude makes wrong edits. Free Anthropic credits via AI Perks cover Plan Mode usage at $0.

Can I edit a Claude Code plan before approving?

Yes. Press Ctrl+G to open the current plan in your editor. Remove steps, adjust the approach, add constraints, then return to Claude and approve. Claude follows your edits exactly.

Should I always use Plan Mode?

No - use Plan Mode for complex or risky changes only. Single-file edits, trivial fixes, and greenfield prototyping are faster in normal mode. Plan Mode shines on multi-file refactors, architectural changes, and unfamiliar codebases.


Use Claude Code Plan Mode Without Worrying About Costs

Plan Mode prevents AI coding mistakes - but it still consumes Anthropic API tokens. AI Perks eliminates that cost:

  • $1,000-$25,000+ in free Anthropic credits
  • Stacking strategies for $50,000+ runway
  • 200+ additional startup perks beyond AI credits
  • Updated programs every month

Subscribe at getaiperks.com →


Plan first, code second, pay nothing. Free Anthropic credits at getaiperks.com.

AI Perks

AI Perks curates and provides access to exclusive discounts, credits, and deals on AI tools, cloud services, and APIs to help startups and developers save money.

AI Perks Cards

This content is for informational purposes only and may contain inaccuracies. Credit programs, amounts, and eligibility requirements change frequently. Always verify details directly with the provider.