Modern Creator Network
AI Unleashed · YouTube · 09:45

10 Claude Code Tips You'll Wish You Knew Sooner

A ten-minute tactical loop through the keyboard tricks, hidden modes, and headless workflows that make Claude Code feel less like a terminal and more like a coding partner.

Posted
10 months ago
Duration
Format
Tutorial
educational
Channel
AU
AI Unleashed
§ 01 · The Hook

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.

§ · Stated Promise

What the video promised.

stated at 00:10In this video, I'll show you the top 10 essential tips you need to know to get the most of Cloud Code.delivered at 09:36
§ · Chapters

Where the time goes.

00:0000:18

01 · Intro / Hook

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

00:1801:30

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.

01:3002:46

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.

02:4603:54

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.

03:5404:29

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.

04:2904:56

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.

04:5605:59

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.

05:5906:42

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.

06:4207:30

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.

07:3008:14

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).

08:1409:36

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.

09:3609:45

12 · Outro / Subscribe CTA

Hope you learned a thing or two — more AI software-development videos coming, subscribe.

§ · Storyboard

Visual structure at a glance.

open
hookopen00:00
#1 Planning Mode
value#1 Planning Mode00:18
#2 Image paste
value#2 Image paste01:30
#3 /init
value#3 /init02:46
#4 IDE integration
value#4 IDE integration03:54
#5 Dual monitors
value#5 Dual monitors04:29
#6 Custom commands
value#6 Custom commands04:56
#7 ultrathink
value#7 ultrathink05:59
Newsletter CTA
ctaNewsletter CTA06:36
#8 Double-escape
value#8 Double-escape06:42
#9 URL drop
value#9 URL drop07:30
#10 Headless
value#10 Headless08:14
Outro / subscribe
ctaOutro / subscribe09:36
§ · Frameworks

Named ideas worth stealing.

00:28concept

Shift+Tab mode cycle

Shift+Tab once = auto-edits on; twice = planning mode on; third time = back to normal. One key, three workflow modes.

Steal forAny agent tool with multiple operating modes — overload one key with a visible state line at the bottom of the terminal.
02:48concept

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.

Steal forPersistent agent memory pattern — one auto-generated, hand-editable file that every session reads on boot. Same trick works for any LLM wrapper Joe builds.
05:59list

Thinking-budget keywords

  1. think
  2. think hard
  3. think harder
  4. ultrathink

Magic words inside a prompt that escalate Claude's reasoning budget. The gray text streamed before the answer is the thinking trace.

Steal forSurface this as a user-facing knob in JoeFlow / Mod Producer — give Joe a dial that says 'normal / hard / ultra' that prepends the keyword automatically.
04:56concept

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.

Steal forTemplated batch prompts — ship JoeFlow with a /commands folder so users can swipe Joe's prompt templates (Killing Excuses, Sip Ship Sell, doc-gen) like recipes.
08:15concept

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.

Steal forBuild CLI wrappers that pipe data through Claude as a step in a normal shell pipeline — e.g. transcript → claude -p 'extract quotables' > quotables.md. This is the unlock for Joe's morning batch launcher idea.
§ · Quotables

Lines you could clip.

00:23
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.
Sells planning mode in one sentence — pure positioning bait.TikTok hook
01:40
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.
Pure 'wait, what?' moment — Mac people will stop scrolling.IG reel cold open
03:17
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.
Best explanation of CLAUDE.md persistence in plain language.newsletter pull-quote
06:07
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.
'Ultrathink' is a meme-able single word with payoff baked in.TikTok hook
06:58
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.
Almost nobody knows this — qualifies as a 'wait, you can do that?' clip.IG reel cold open
09:00
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.
Concrete, useful workflow shown end-to-end in one breath.newsletter pull-quote
§ · Pacing

How they spent the runtime.

Hook length18s
Info densityhigh
Filler8%
§ · Resources Mentioned

Things they pointed at.

00:38productShopify (used as a sample app the whole video)
04:00productCursor rules (compared to CLAUDE.md)
07:38linkShopify application design guidelines (used as URL-drop demo)
§ · CTA Breakdown

How they asked for the click.

09:36subscribe
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.

§ · The Script

Word for word.

HOOKopening / re-engagementCTAthe pitchmetaphor
00:00HOOKCloud Code powered by the new Cloud four models produces the best AI code I've seen yet. But it does run-in the terminal, which means it can be a bit intimidating at first. There's also a few quirks. So in this video, I'll show you the top 10 essential tips you need to know to get the most of Cloud Code. Let's go.
00:18So I'm logged in to Cloud Code. And 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. So if you go shift tab, you see in the bottom there, it's gonna switch to auto edits, edit on. Do it one more time, and that's gonna go to planning mode on. And what this mode does is it's not gonna update your code at all. It's just gonna do planning.
00:41So let's put in your plan to build a Shopify application that enhances merchants product descriptions with AI. And in the planning mode, it's gonna start doing some web searches usually, which is great because then your latest information on whatever you're trying to plan to build. Know it does it much more in the planning mode than it does in normal mode,
00:59so that's a really good reason to use it. Then at the end, it gives you a report once in planning mode. So it's gonna tell you the project structure and technology stack to use, what it recommends, core features of this application, implementation steps, all that kind of good stuff. And then at the end of this game, we'd like to proceed. You can actually start building it,
01:16or you can say no, keep planning, and you get it right from there, staying in planning mode. This is also great for adding a new feature to an application. And then when you're ready to leave, just shift tab again, and you go back to back to normal mode.
01:32You can actually add images directly in the Clog code. It's a really powerful feature, but there's a bit of a trick to it. So let's take this application I have built here, and say we wanna get Clog code to analyze it and maybe add a feature. So I could just go take a screenshot of it, and now I have a copy to my clipboard. And then in Clog code, you'd think on a Mac would just be your normal command v.
01:52Click on that, nothing happens. The trick is you actually have to do a control v, which is counterintuitive. When I do that, now image one comes up. So it doesn't give you a preview or anything, but when you see, like, image number one, that's the image you just copied from your clipboard. I haven't tried it on Windows yet. It might be the same kind of trick. Maybe it's the Windows key or something, but watch out for that. But once you do get it in here, it's very powerful. It's just, like, do an analysis of this application's UI, and then what enhancements would you recommend?
02:21And I find this very useful for just looking at bugs in a UI or just adding a feature, adding a button somewhere. It actually is very good at reading the image. And there we go. It gives us some functionality enhancements. These are a couple of things I actually thinking about into the application, so it's good that it picked this up, like directions integration and store hours, stuff like that. Definitely check out how Cloud Code can read images. It does a really good job.
02:46One really powerful command that I think is a bit misunderstood and overlooked is the init command. So if you're in your project and you go to init, what it's gonna do is look through all the files in that project and write a claud dot m d file or markdown file. And it'll give you a comprehensive look at your whole project. It'll give you coding standards,
03:07technologies used, etcetera. And then we see it create the claw dot m d file in this directory. And then, like I said, it gives you the core components, data flow, all that kind of good stuff. And I've been doing software development for a long time. This is some of the best kinda lightweight documentation you can get, especially for a smaller code base.
03:23But the really interesting thing is it takes this Claude dot MD file, and 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, say, six months, came back to Cloud Code later, it would actually bring in all this and remember all this as context, which is a nice head start. But, also, you can add on to this yourself. So if there's things you want Cloud Code to know when it launches up for this project,
03:50this is the place to do it. This is kinda like cursor rules, basically.
03:55If you're used to doing your coding in a code editor, one thing that will really help is if you integrate a code editor with Cloud Code, so you're not always in the terminal. It's really easy to do once you install Cloud Code and it detects you have an IDE, it actually automatically installs it. There's also an IDE command you can run, and that'll tell you what IDs you have and connect to it from there. Once you have it connected, it's gonna tell you what file you're in. And then it has two way communication. So if I highlight some code,
04:20it's gonna say 12 lines selected. So it's just targeting that code to make changes on. It also lets you visually see the differences between a code change you're making.
04:31So once you have Cloud Code hooked up with your IDE, in this case, have Cursor, the next tip is to actually keep Cloud Code and Cursor or Versus Code, whatever you're using for your IDE, in a separate window. It's gonna make it such a nice experience to code in. As to do that, all you have to do is just when you have Cloud Code up, you can just right click on that terminal and say move into new window. Now you just move that to your second monitor and really do some vibe coding.
04:56As well as using the built in commands in Cloud Code, you can actually create your own and they can do whatever you want and they're very useful. So to do that, we'll create a new directory. So you do do a make directory under dot Cloud and then you call it commands. And then you create the commands by just simply creating markdown files. That's what I'm gonna call doc dot m d.
05:14And then inside of it, you can put your arguments. So I'm gonna say create clear thorough documentation for the arguments. That's gonna be the files we pass in. Then include a description, usage examples, and important notes for developers. And once that's created, you can just do slash project colon and then the name of the command, so in this case doc. And then passing your arguments, so we'll pass in store locator dot html. So now it's reading that input parameters. You can make many arguments for whatever you think you can make up in terms of a command that's useful to you.
05:44So it's gonna read through that. And then it just gives you what you asked for basically in the prompt. So this case is a really nice piece of documentation describing this particular file. I mean, the sky's the limit what we can do with these custom commands, so they're gonna save you a lot of time.
06:00Cloud Code actually has some keywords that tell it how much to think, and they all have the word of think in them. So if you say think, it's actually gonna reason more, spend more time, chew more tokens, 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. Let's try out let's just say UltraThink, the best way to package this Shopify application,
06:23CTAthen merchants can deploy it. And then it came back with the answer. But you'll notice in this case, the gray text is all the thinking tokens it used along the way. Definitely very useful to know in certain situations. If you're into AI software development like me, make sure you subscribe to my newsletter, the AI unleash news. It's the first link in the description, and I hope to see you there.
06:43I think most people know that if cloud's going in the wrong direction, like, it's not really following the prompt or you can just see right away it's kinda doing the wrong thing. If you just hit the escape key in the middle, then anytime you're gonna interrupt it. But what you can also do, which is very useful, is if you hit the escape key twice,
07:00it'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 to what you actually want it to be. One thing to keep in mind though is if you do do auto edits and it and they were accepted already, and then you just press escape key and then you go back, it's not gonna
07:24revoke those and go back to this breakpoint, but it will take the conversation to this point.
07:31Cloud Code can look at websites and do web searches. It just doesn't do it very often, I've noticed. Except for that is when you go into planning mode. But say you're just doing coding. You can actually put in URLs and it will go and look at them. So I'm say make this application conform to these style guides. Then I'm gonna paste in the Shopify application design guidelines.
07:49And now it's gonna go out and actually fetch all the content from that website. So this is a great way to just bring in documentation, the latest documentation you have into Cloud Code. But now you see it's gone out to that website, come back with very specific things to do to make it conform with the style guidelines. So, for example, updating the typography to match the Shopify
08:08admin interface. So it's really got all the great information we need here. Now it's gonna update the code.
08:15Alright. We're down to the last one and I find this one so useful. I use it all the time. You can actually run Claude code in headless mode, which means it doesn't actually load up the UI or anything. So check it out. You can just say clod in any terminal. You say clod dash p for headless. That's the headless mode switch. Let's ask the question, what is the capital of Slovakia?
08:34It's just going to return the response to me in the command line. So what this means, we can use it all kinds of different places, pipe it to different files, use it to look at images, all kinds of useful functionality just by using the claw dash p command. So check out this much more useful example. If I run an NPM audit, which is gonna tell me all the vulnerabilities with all the packers I have in my application, then take the results of that, pass them to Claude, so I 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, which will a markdown file which will have all that information. Now it generated this vulnerabilities file, which gives me all the critical things I need to do, like, right away. For example, this one is a Next. J s authorization bypass vulnerability. So I have to get that figured out right away. And then it lists the high priority and low priority from there. So I'm sure your head's spinning all the different places you could use Clog code in headless mode. It's such a powerful tool that add any script,
09:32CTAany kind of workflow. I hope you learned a thing or two. Clock code is great, and I'm do lots of videos on it coming up, as well as everything else around AI software development. So if you're into that, make sure you subscribe to the channel. And I hope you have an amazing day. I'll talk to you in the next one.
§ · For Joe

Steal the format.

The '10 things you didn't know' playbook

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').
§ · For You

What this means if you actually use Claude Code.

Ten keyboard tricks worth memorising tonight

If you're already using Claude Code daily, four of these tips will pay back the ten minutes by tomorrow morning.

  • Shift+Tab twice = planning mode. Use it before any non-trivial task — you'll catch missing requirements before you've burned tokens on the wrong solution.
  • Run /init once per project. The CLAUDE.md it generates becomes your project's persistent memory across every future session — you can hand-edit it to add anything you wish Claude knew at the start.
  • On Mac, paste screenshots into Claude Code with Ctrl+V (not Cmd+V). It reads UIs well enough to find bugs and suggest layout fixes.
  • Esc twice rewinds the conversation to any earlier message — use it to recover when Claude went sideways instead of starting a fresh chat and losing all context.
  • Type the word 'ultrathink' inside any prompt where you need the best possible answer — Claude will spend more thinking tokens and produce noticeably better output.
  • Drop a URL into your prompt to make Claude fetch and read that page — fastest way to feed it fresh docs without leaving the terminal.
  • claude -p '<prompt>' is the headless mode that turns Claude into a Unix-friendly filter. Pipe npm audit, log files, or any text through it from any script.
§ · Frame Gallery

Visual moments.