The argument in one line.
Claude Code's terminal interface hides ten critical productivity features—from planning mode and image analysis to headless scripting—that transform it from a basic coding tool into a full-featured development environment.
Read if. Skip if.
- A developer who uses Claude Code in the terminal regularly and wants to work faster through keyboard shortcuts and lesser-known modes.
- Someone building production applications with Claude Code who needs to understand IDE integration, dual-monitor workflows, and headless scripting for team deployments.
- A developer new to Claude Code who finds the terminal interface intimidating and wants concrete tactical wins to feel more confident immediately.
- You're using Claude through the web interface or API only — this breakdown is terminal-native and won't translate to your workflow.
- You're still deciding whether to adopt Claude Code at all — this assumes you're already committed and just wants optimization tips, not foundational justification.
The full version, fast.
Claude Code becomes dramatically more useful once you treat it as a coding partner with hidden modes rather than a plain terminal. The video walks through ten mechanics: shift+tab toggles planning mode so Claude researches and proposes architecture before touching code, Ctrl+V (even on Mac) pastes screenshots for UI analysis, /init writes a CLAUDE.md that auto-loads as context in every future session, IDE integration plus a popped-out window enables two-monitor flow, custom slash commands live as markdown files in .claude/commands, the keyword ultrathink unlocks the largest reasoning budget, double-escape forks the conversation to an earlier prompt, dropping URLs triggers ad-hoc web fetches, and claude -p runs headlessly so you can pipe shell output like npm audit straight into scripted workflows.
Chat with this breakdown — free.
Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.
Create a free account →Where the time goes.

01 · Intro / Hook
Claude 4 is the best AI coder, but it lives in a terminal — here are 10 tips to tame it.

02 · #1 Planning Mode
Shift+Tab twice → planning mode. No code edits, just a written plan with web searches and a project-structure report. Shift+Tab again to leave.

03 · #2 Image Recognition
On Mac, Cmd+V doesn't paste screenshots into Claude Code — Ctrl+V does. Once pasted, it shows up as 'image 1' and Claude reads UIs surprisingly well.

04 · #3 /init Command
Run /init to scan the project and generate a CLAUDE.md. Auto-loaded into every new session as context — basically Cursor rules, except free and persistent.

05 · #4 IDE Integration
Claude Code auto-installs an IDE extension when it detects one (Cursor/VS Code). Two-way comms: highlighting code in the editor scopes Claude's edits; visual diffs appear in the editor.

06 · #5 Dual Monitor Workflow
Right-click the Claude Code terminal → 'move into new window' → drag to second monitor. Editor on one screen, Claude on the other.

07 · #6 Custom Slash Commands
Create .claude/commands/<name>.md with arguments and a prompt template. Invoke with /project:<name> <args>. Reusable, project-specific workflows.

08 · #7 'think' / 'ultrathink' Keywords
Drop 'think', 'think hard', or 'ultrathink' into a prompt to escalate the thinking budget. Gray thinking tokens appear before the answer.

09 · #8 Escape vs Double-Escape
Esc once = interrupt. Esc twice = jump to any previous message, fork the conversation, and clear history forward. Caveat: auto-accepted edits don't get rolled back.

10 · #9 Web Search via URL Drop
Outside of planning mode Claude rarely searches the web on its own — but if you paste a URL into the prompt, it'll fetch and use the contents (great for pulling in fresh docs).

11 · #10 Headless Mode (claude -p)
claude -p '<prompt>' runs Claude in the terminal with no UI, just stdout. Pipe inputs in, pipe outputs to files — e.g. npm audit --json | claude -p '...' > vulnerabilities.md.

12 · Outro / Subscribe CTA
Hope you learned a thing or two — more AI software-development videos coming, subscribe.
Lines worth screenshotting.
- Headless mode (`claude -p`) lets you pipe Claude into any terminal script, making it a composable piece of any shell workflow rather than just an interactive tool.
- Planning mode does significantly more web searches than normal mode — use it any time you want Claude drawing on current information rather than training data.
- Pasting images into Claude Code on Mac requires Ctrl+V, not Cmd+V — a counterintuitive quirk that blocks most people from using the feature.
- The CLAUDE.md file generated by /init acts as persistent project memory: every future session loads it as context, so switching back after months costs nothing.
- Double-pressing Escape forks the conversation back to any previous prompt, letting you course-correct without starting over entirely.
- Running `npm audit | claude -p` to triage security vulnerabilities by priority is one line of shell script that would have taken a senior engineer an hour to replicate.
- Dropping a URL directly into a Claude Code prompt causes it to fetch and read that page — the fastest way to feed current documentation into your session.
- UltraThink is a literal keyword that increases Claude's reasoning budget and token spend; the gray text you see is its thinking output, not the final answer.
- Custom slash commands stored in .claude/commands/ as markdown files are one of the fastest ways to encode your own workflow patterns into the CLI.
- Claude Code can be split into a separate window and moved to a second monitor, enabling genuine dual-screen vibe coding without terminal hopping.
Steal the format.
Pick a single tool you use every day, find ten quirks nobody talks about, and shoot them as one numbered list with hard cuts and title cards.
- Promise + count in the title ('10 X You'll Wish You Knew Sooner') — high CTR, low ambiguity, evergreen searchable.
- Hard chapter cards (#1, #2, …) double as scrub-bar anchors AND give you ten clean cut points for shorts later.
- Open with the credential ('produces the best AI code I've seen yet') before the friction ('but it lives in a terminal') — that contrast is the hook.
- Hold up the demo app from tip #1 and reuse it through all ten tips. Continuity = comprehension; viewers don't have to rebuild context every tip.
- Wedge the one CTA between two tips, not at the end — viewers who watched 6 tips have proven they care, so the newsletter ask lands softer.
- Skip B-roll. Talking-head + screen recording is enough. The whole thing was probably shot in one hour and edited in three.
- Joe-specific: this format maps perfectly to JoeFlow ('10 JoeFlow tricks…'), Mod Producer ('10 batch-recording quirks…'), and the $6 Stack ('10 things you can self-host this weekend').
Terms worth knowing.
- Planning mode (Claude Code)
- A Claude Code mode (toggled with Shift+Tab) where the AI produces a detailed plan of proposed changes without modifying any code, letting the user review and approve the approach first.
- Headless mode (Claude Code)
- A non-interactive way to run Claude Code via the 'claude -p' command, where a prompt is passed directly and the output is returned to the terminal — useful for scripting and automation pipelines.
- Ultrathink
- A keyword that can be included in a Claude Code prompt to signal the model to spend its maximum thinking budget on a problem, producing more thorough reasoning at higher token cost.
- /init command
- A Claude Code slash command that automatically generates a CLAUDE.md file for the current project by analyzing the codebase, capturing structure, conventions, and setup instructions.
- Custom slash commands
- User-defined shortcuts in Claude Code that trigger a specific pre-written prompt or workflow when typed, allowing repetitive instructions to be stored and reused quickly.
- Pop-out window (Claude Code)
- A detached Claude Code chat window that can be moved independently of the main IDE, enabling dual-monitor setups where code and the AI chat are visible side by side.
- Conversation fork (double-escape)
- A Claude Code interaction where pressing Escape twice abandons the current response and starts a parallel branch from an earlier point in the conversation, preserving the original thread.
- Headless pipeline
- An automated workflow where Claude Code is invoked programmatically by a script or another tool, processing inputs and producing outputs without any human in the loop.
Things they pointed at.
Lines you could clip.
“If you ever done software development before, you're gonna know that a little bit of planning goes a long way. And Cloud is a secret way to do this.”
“You'd think on a Mac would just be your normal command V. Click on that, nothing happens. The trick is you actually have to do a control V, which is counterintuitive.”
“Every time you do a new chat or start a new session with Claude code, it puts this into the context. So if you put this project in the side for six months, came back to Cloud Code later, it would actually bring in all this and remember all this as context.”
“All the way up to ultra think, which if it sees that word, it's really gonna grind away and try to give you the very best answer.”
“If you hit the escape key twice, it's gonna give you all the previous messages you had. And then you can go back to the one they interrupted, say. And it's gonna clear the history and go back to that prompt, which is a nice clearing way basically to fork the conversation, get it back on track.”
“You can do the Claude dash p again for the headless mode, and then ask it to prioritize these security vulnerabilities and describe them what's critical fixes needed, and then pipe all that to vulnerabilities dot m d.”
Word for word.
Don't just watch it. Burn it in.
See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.
The bait, then the rug-pull.
The whole video is a single, well-disguised promise: "Claude Code is the best coding model out there, but it's hiding ten of its best tricks behind quirks and keyboard shortcuts no one told you about." AI Unleashed opens with the Claude Code splash screen on one side and his face on the other — terminal-shy viewer, meet patient teacher — and immediately launches into tip #1 before anyone can scroll away.
Named ideas worth stealing.
Shift+Tab mode cycle
Shift+Tab once = auto-edits on; twice = planning mode on; third time = back to normal. One key, three workflow modes.
Project memory via /init → CLAUDE.md
/init scans the codebase and writes a markdown file (architecture, conventions, components). Auto-loaded into every new session. You can hand-edit it to inject permanent context.
Thinking-budget keywords
- think
- think hard
- think harder
- ultrathink
Magic words inside a prompt that escalate Claude's reasoning budget. The gray text streamed before the answer is the thinking trace.
Custom slash commands as .md files
Drop a markdown file at .claude/commands/<name>.md with $ARGUMENTS placeholders → invoke as /project:<name> <args>. No code, no plugin system, just files.
Headless mode as a Unix citizen (claude -p)
claude -p turns Claude Code into a stdin → stdout filter. Composes with pipes, redirects, and any other CLI tool.
How they asked for the click.
“Make sure you subscribe to the channel. And I hope you have an amazing day. I'll talk to you in the next one.”
Soft outro CTA, no urgency. Mid-roll newsletter pitch at 6:30 is more interesting — wedged between two tips so it doesn't feel like a sponsor break.




































































