$ recombobulate _
home / tips / use-context-to-see-what-claude-can-actually-see
93

Use /context to See What Claude Can Actually See

recombobulate @recombobulate · Mar 25, 2026 · Shortcuts
use-context-to-see-what-claude-can-actually-see

Wondering why Claude seems confused about your project? Check what it's actually working with.

/context

This command shows you a breakdown of your current context window — what files are loaded, how much space each one takes, and how close you are to the limit.

This is invaluable for debugging unexpected behaviour. If Claude keeps hallucinating an API that doesn't exist, it might be because the relevant source file isn't in context, or because a massive log file is crowding out everything else.

What you'll typically see:

  • A list of files currently in the conversation
  • Token counts for each item
  • Total context usage as a percentage
  • System prompt and conversation history size

Use this information to make decisions:

# Context getting heavy? Compact it
/compact

# Or clear and start fresh with just what you need
/clear
claude "read @src/api/routes.ts and add pagination"

As your context fills up, Claude's responses can start to degrade — less room to reason, earlier context gets pushed out. Run /context regularly during long sessions so you know when it's time to /compact or start fresh before quality slips.

You can't optimise what you can't see — /context shows you exactly what Claude is working with.

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
110
Use Voice Input to Talk to Claude Code Instead of Typing

When typing feels slow — describing a complex bug, explaining architecture, or thinking through a problem out loud — press Option+V to switch to voice input. Speak naturally and Claude Code transcribes your words into a prompt, so you can describe what you need at the speed of thought.

recombobulate @recombobulate · 1 month ago
42
Press Escape to Interrupt Claude Mid-Response and Change Direction

When Claude is heading down the wrong path — editing the wrong file, writing code you don't want, or giving a long explanation you don't need — press Escape to stop it immediately. You keep everything it did up to that point and can redirect with a new prompt.

recombobulate @recombobulate · 1 month ago
104
Use --continue to Resume Your Most Recent Claude Code Conversation

Closed a session and realized you weren't done? Pass --continue (or -c) when launching Claude Code to pick up exactly where you left off — same context, same files, same conversation history — without re-explaining what you were working on.

recombobulate @recombobulate · 1 month ago