Modern Creator Network
Simon Scrapes · YouTube · 39:22

Every Level of Claude Code Explained in 39 Minutes

A 39-minute level-by-level map of Claude Code mastery, from plan-mode basics to fully autonomous multi-agent pipelines that run while you sleep.

Posted
3 months ago
Duration
Format
Tutorial
educational
Channel
SS
Simon Scrapes
§ 01 · The Hook

The bait, then the rug-pull.

One hundred and fifty hours of study distilled into 39 minutes. Simon opens with the gap most builders miss: they think they are good at Claude Code, but they are parked at level two or three, unaware that levels four through seven even exist. The promise is a shortcut, skip the trial-and-error, land at the frontier.

§ · Stated Promise

What the video promised.

stated at 00:15I will walk you through all seven levels of Claude Code from beginner workflows to fully autonomous systems so that you can skip the trial and error and start using it to its full potential today.delivered at 38:22
§ · Chapters

Where the time goes.

00:0000:41

01 · Cold open

Host establishes authority via 150-hour time investment, identifies the gap (most users stuck at L2/L3), previews all 7 levels.

00:4103:25

02 · Level 1: Prompting with intent (Plan Mode)

Shift+Tab activates read-only plan mode. Claude uses ask-user-questions tool to surface assumptions before execution. Boris Cherny: plan until you like the plan, then one-shot execute.

03:2510:25

03 · Level 2: CLAUDE.md

5-question framework: what is this, how to run it, brand voice/rules, mistakes to avoid, how we work. Under 30 rules. Reference external docs rather than dumping everything inline.

10:2521:21

04 · Level 3: Slash commands, skills & hooks

Commands = manually triggered saved prompts. Skills = auto-loaded context folders (skillsmp.com). Hooks = mechanical post-action checks in settings.json with no LLM tokens.

21:2126:18

05 · Level 4: MCP servers

MCP bridges Claude Code to external apps. Airtable demo: /mcp add airtable, paste access token, restart. Claude reads content calendar, creates posts, writes results back to Airtable rows.

26:1829:34

06 · Level 5: GSD framework (supervisor mode)

Plan/Execute/Verify loop with per-phase files. .planning/ folder with roadmap, state tracker, UAT file per phase. Solves context rot by externalizing memory into files not conversation.

29:3435:57

07 · Level 6: Agent teams

Two use cases: quality (specialist sub-agents in sequence) vs speed (parallel terminals). --dangerously-skip-permissions for headless parallel runs. Boris runs 5 local + 5-10 on claude.ai/code.

35:5739:22

08 · Level 7: Fully autonomous pipelines (Ralph loop)

Three files: bash executor + PRD.json with user stories/acceptance criteria + state file. Claude self-assesses, loops with fresh context if not done. Cap with --max-iterations.

§ · Storyboard

Visual structure at a glance.

open talking head credential
hookopen talking head credential00:00
Level 1 card
chapterLevel 1 card00:41
Level 2 card
chapterLevel 2 card03:25
slash command demo VS Code
valueslash command demo VS Code10:25
hooks settings.json demo
valuehooks settings.json demo20:11
Level 4 MCP Airtable demo
chapterLevel 4 MCP Airtable demo21:21
Boris X post parallel agents social proof
social-proofBoris X post parallel agents social proof32:00
Level 7 Ralph loop autonomous pipelines
chapterLevel 7 Ralph loop autonomous pipelines35:57
CTA next video
ctaCTA next video38:22
§ · Frameworks

Named ideas worth stealing.

03:25list

CLAUDE.md 5-Question Framework

  1. What is this project?
  2. How do you run things (exact steps)?
  3. What are the rules/brand voice/non-negotiables?
  4. What mistakes should Claude avoid?
  5. How do we work (naming conventions)?

Structured onboarding doc for Claude. Keep under 30 rules, reference separate docs for details.

Steal forEvery project CLAUDE.md
26:18model

GSD Framework

  1. Plan the phase
  2. Execute the phase
  3. Verify via user acceptance testing

Per-phase file system with roadmap.md, state.md, phase-N-plan.md, phase-N-uat.md. Solves context rot.

Steal forAny multi-week Claude Code project where context window rot causes drift
35:57model

Ralph Loop

  1. PRD.json with user stories + acceptance criteria
  2. Bash executor script
  3. Completion state file

Self-assessing loop: Claude checks output against criteria, refeeds context into fresh window, continues until done or max-iterations hit.

Steal forBatch content generation and automated code tasks with clear acceptance criteria
20:11concept

Skills vs Commands vs Hooks

Skills = how Claude thinks (auto-loaded). Hooks = what fires automatically after Claude acts (no LLM tokens). Commands = what you manually trigger.

Steal forTeaching Claude Code Level 3
§ · Quotables

Lines you could clip.

20:11
Skills is how Claude thinks. Hooks are what happens automatically after Claude acts. Commands are stuff we trigger manually.
Complete standalone concept in one sentence, no setup neededTikTok hook
27:21
Context rot: as we increase the number of input tokens, our reliability on the output gets less. At around 7,500 words we lose 50% of the context.
Concrete stat that names a pain every Claude Code user has felt but never quantifiedIG reel cold open
32:00
Boris runs five Claudes in parallel in his terminal, and five to ten more on claude.ai/code.
Power-user benchmark that reframes what using Claude Code even meansnewsletter pull-quote
00:47
Even if you think you are using Claude Code well today, you are probably stuck at level two or level three.
Gap-identification hook with ego challengeTikTok hook
§ · Pacing

How they spent the runtime.

Hook length27s
Info densityhigh
Filler8%
§ · Resources Mentioned

Things they pointed at.

§ · CTA Breakdown

How they asked for the click.

38:22next-video
If you want to see a full project build using the GSD framework that uses all the elements we talked about today, then check out the next video.

Clean content-forward CTA, no hard sell. Full course link also at video open in description.

§ · The Script

Word for word.

metaphoranalogy
00:00I spent over a hundred and fifty hours now inside Claw code, not just building with it, but studying every single major resource on it. I've broken down the creator Boris Cherni's post, tested real workflows from top builders, and watched every single master claw tutorial that I could find. And here's what most people miss.
00:16Even if you think you're using claw code well today, you're probably stuck at level two or level three. This video shows you what's beyond that. I'll walk you through all seven levels of claw code from beginner workflows to fully autonomous systems so that you can skip the trial and error and start using it to its full potential today.
00:34And by the way, if you're looking for a full Claude code course that takes you from zero to expert, then check out the link in the description below. Now let's dive into level one. Let's quickly make sure it's set up in our environment.
00:45So we're gonna come into a fresh instance of Versus Code, open a folder, and open a new terminal. I'm just gonna open the the README here, and we're gonna run this native installer that doesn't require Node. Js.
00:55Gonna run that inside our terminal, and that's gonna make sure that Claude code is installed for us. And we're gonna start running it just by running Claude with the basic permissions. And once Claude opens, it's gonna look a little bit like this.
01:06Now level one is actually prompting but with intent. So most people just type and hope at the start. But the difference between somebody who's a beginner with claw code and someone who's gonna get real results is one single habit, and that is planning before building.
01:18So plan mode, which you can turn on by hitting shift and tab and cycle between the modes. You can see down here we've got accept edits, which is the default mode, and plan mode is a read only mode. It's designed to research your code base and propose a plan before you touch anything.
01:33So whether you've got an existing code base, it will go through and read those files. Or if we're starting from scratch and we're giving it some context brief, it's really critical that we start with planning mode. And Boris Cherny, the creator of Claude code, has strong opinions about using planning mode.
01:49If my goal is to write a pull request, I will use plan mode. And I'll go back and forth with Claude until I like its plan. So it does not take any execution actions until a plan is made.
01:58From there, I switch into auto accept edits mode, and Claude can usually one shot it. So it saves us going back and forth, and, actually, we only need to one shot prompt for the execution once we've got a clear plan. And the reason this mode is so powerful is because it leverages an inbuilt ask user questions tool inside Claude Code.
02:15Claude will literally come back to us with a series of questions to understand the underlying detail and the assumptions that we're making in our plan, therefore, building out a really comprehensive set of context that you can use in the execution phase. So we're gonna look at an example today of a content creation system and how we can use Claude code to actually build us out a system that creates all of our content for us.
02:38So if I put in something vague during plan mode, like help me build out a social media content creation system, we know that that's not gonna execute very well, or it will veer off course and not meet our assumptions because we're not actually specifying that. So by doing this in plan mode, we can force Claude to give come back with the ask user questions tool, ask us a bunch of questions, build out a plan dot m d file, which then when it executes on, it will understand in detail exactly what we want to do.
03:04And then we can see down here which social media platforms do you wanna create content for. We click that. It will come up with the next set of questions in the calendar, then about the automation, the brand voice, and then we submit, and it will create a plan for us and ask us any additional questions or ask us for any additional assumptions before we start executing a thing.
03:21So level one users make sure that they're planning before they execute. So now that you've got a plan, you need to make sure that ClaudeCode isn't gonna put out generic slot within that plan, and it's gonna work in a way that actually saves you time and not cost you more time in the end. And that brings us to the Claude dot m d file and the importance of having one for your team.
03:39So Claude, like a coworker, needs to actually understand your rules and the way you want to work with it. We use Claude dot m d to show that.
03:47It's a file that tells Claude how you work, and you can think of it like literally onboarding a new team member. You write down your tech stack, your preferences, the mistakes you don't want repeated, and Claude reads the file every time you start a session.
03:59And this is how Boris himself uses it. So their team shares a single Claude dot m d file. They keep it version controlled on Git, and the whole team contributes lines to that file or edits lines to that file.
04:10Don't necessarily add more lines to that file every single week. And they'll even go to the point where they'll tag it on GitHub, and it will make the changes automatically to tell it what mistakes it shouldn't make again.
04:20And there's lots of opinions on how you should write your claude.md file and what should be included. But the golden rule here is keep it short, keep it specific, and only include what Claude can't figure out for itself.
04:31So we've got a very simple framework that you can follow to set up your Claude dot m d file for any project, and we're gonna talk about how we do that for building a social media content machine that sounds exactly like your brand voice. Now question one, what is this? Should just be a single line to tell Claude exactly what it's doing.
04:48It's not your brand manifesto. For this social media content machine, this project generates daily social media content across various different platforms in a brand voice, pulling topics from a content calendar in Airtable. That's it.
05:01Claude is then able to understand exactly what its purpose is before we tell it how you're gonna run things, which brings us on to the second bit, and these should be the exact steps. So the content calendar lives in Notion. This should actually be Airtable.
05:13We're gonna pull topics from the ready to write view. It's gonna put generated posts into a new folder inside this explorer, and we're gonna store any image assets in a separate folder.
05:23Now once it knows how, I e, the instructions it's gonna follow, we're gonna add things about brand voice, your rules, your nonnegotiables. So what patterns do I follow? And you can use emphasis on words like important where you need to make sure that actually it's really important that Claude follows those instructions.
05:39And we've got some example brand voice stuff in here, like write like you're talking to one person over coffee, not presenting to a boardroom. But actually, better thing to do here is not to write this directly in here. It's to separate a brand voice document and then reference it later on.
05:54And this brings us to the point, don't dump trick, which is actually keep claude.md super lean, tell Claude where to find the details. So if you're saying, follow these brand voice guidelines, you would say for full brand voice guides with examples, see this folder slash docs slash brand voice dot m d.
06:10And this might be things about brand voice. And the what patterns do I follow might be things about platform formatting, like keep it under 200 characters. It might be content rules, so every post must teach something or share a real experience and be very, very practical.
06:23But, again, these rules can live separately in separate folders, and the Claude dot m d file needs to just reference where it understands and reads those rules from. Question four is where we ask the things about mistakes. So what are the things that's gonna trip Claude up because it's not counterintuitive?
06:38Like, for example, our Airtable or Notion might have a status and post status column. Which one should it use? So these are the things that you'd put as your edge cases for an employee that you're training on this.
06:49And then the final part of the framework is how do we work? So every file is gonna be named in this convention. We're never gonna publish or schedule anything.
06:56When repurposing, we're gonna change the angle, not just shorten. So it's additional information that feeds into the instructions to make sure that it delivers the outcome that you expect.
07:05So this is your guide and your your set of rules. And down here, we've got a copy paste template, which you can grab that goes over all of these with an example and create your very own Claude dot m d file. And we would click on the tab over here and actually introduce our own Claude dot m d file.
07:19For For now, we're gonna keep it super simple and just give it the project instructions. This project generates daily social media content across LinkedIn x and Instagram in my brand voice, pulling topics from a content calendar in Airtable. It's important to add things like mistakes in here and how to reload that into your context.
07:34We're gonna say write a LinkedIn post about Google antigravity versus Claude code for business use cases. And this is the equivalent of not telling a new employee how we want the outputs and just giving it this very generic project instruction.
07:47But as we understand how they work and how they perform, we add in rules that help clarify the direction that we're looking in as well. And it's come back with an okay LinkedIn post. It's had a first stab at it.
07:59This is the equivalent of putting something into ChatGrpT and just hoping for the best without telling it anything about brand voice, how you want the outputs, etcetera. So we're just gonna add some simple rules. Never use em dashes because we know that signifies that it's written by AI.
08:12Instead, regular dashes. Always replace the word antigravity with AG.
08:18Maybe we've got a specific rule in our company that we always write AG instead of antigravity. And I also felt that it was a very, very technical output here. It talks about existing stacks.
08:28Claude code is a CLI tool, command line interface tool, the full IDE, whereas actually, want to talk in business terms, never use technical jargon. So what we need to do then is effectively add that to our project rules inside the Claude dot m d file. You can format these however you want, and we need to restart for these to take effect.
08:46So we're gonna hit clear or slash clear command. It's gonna basically effectively restart then. So we're gonna reask it again, write a LinkedIn post about antigravity versus claw code, and now it's gonna have these rules embedded into it.
08:58So, hopefully, it changes things like antigravity to AG. It talks about only business value and not such technical jargon and has no Emdashes inside. And we see it's been reloaded, AG versus Claw code.
09:10It's got no Emdashes inside. It talks about time to value, quality control, and scalability instead of previously talking about very technical content. So it's understood and ingested the rules that we've applied by reading that claude.md file.
09:24Now a bit of a sense check you can do is, can I read this Claude dot m d in sixty seconds? Am I under 30 instructions? So 20 to 30 is kind of the maximum.
09:32And, again, you can reference other files and folders where it can find things. Did I include specific examples, not vague rules?
09:38Again, those can be elsewhere. And would a freelancer, a human freelancer taking over my content find this useful? If you're already inside a project and you wanna set up this Claude dot m d file, then you can run slash init, and it will actually go through your project repository and create a Claude dot m d file for you that you can go back and rectify and remove lines from.
09:57But if you're starting from fresh, just copy the template and fill in the blanks as you build. Like Boris, fix mistakes in real time. And when something goes wrong mid session, you can just tell it, Claude, add this rule to my Claude dot MD file, and it will do it for you or you can add it directly into the lines.
10:11So at level two, Claude is now following your personalization and your rules. And Claude may be following your rules, but we're still having to start fresh every single time. We're typing the same things over and over like create me a LinkedIn post to get it to perform our actions in the way we want.
10:25So level three is all about slash commands and skills. Now you can just think of slash commands as saved prompts that you can reuse with one keystroke. So tasks that you're doing again and again that you can manually trigger at specific moments.
10:39So for example, we might say, write me three LinkedIn posts about this topic. And all we'd have to do is type in slash LinkedIn post. And actually, the command, the prompt says, write me three LinkedIn posts about this topic.
10:52And then we actually pass in dynamically the topic name when we're prompting it or slash commanding it. So the way that we do this is actually just creating a new folder inside our explorer called dot Claude, and we'll keep using this folder slash command.
11:05So it's a subfolder inside dot Claude. And then inside that, we would actually create a new command folder. Let's call it LinkedIn dash post dot m d.
11:13So it's a markdown file again. It's a folder inside of that command subfolder, and we've got an example command here for our social media system. Write three LinkedIn post variations about, and then we've got this dollar arguments, which is where we're gonna pass in our dynamic values, which we'll show you in a second.
11:26And then we've got some rules. So pull my brand voice from /docs/brandvoice.nd. Right now, we don't actually have that file, but we'll set that up next.
11:35Start with a hook, then have a line break, then the body. So this is specific context for this specific command.
11:42So think of this as a prompt for this command. End each post with a question or CTA. Keep each post under 200 words.
11:48No hashtags. And then save the drafts to a slash output slash drafts folder. And right now, that's not created, so it will automatically create that for us.
11:55Now if we just clear our memory here, this resets the Claude code instance. And I start typing in the name of the command, LinkedIn dash post, and for some reason, it doesn't show. So what we need to do is actually hit control c control c, close the session with Claude, and reopen it with Claude.
12:11And now it should recognize when it's restarting that we have this dot Claude slash commands folder with this new command thing. And as soon as we hit slash, you can see that we've got our new command linked in post in there.
12:22So we're gonna use the command linked in post anti gravity versus Claude code, and it's gonna understand now and pass that link anti gravity versus Claude code as this argument. So it's gonna say write three LinkedIn post variations about this and follow these rules.
12:37So instead of typing this command every single time that I want to create a post, I'm just gonna use the slash command, pass my arguments, and now it's gonna add them to a draft folder. It's outputting our different variations in here, but we told it we also want it to output them as documents in an outputs folder so that we have them stored.
12:53So it's created this output folder. We've got the drafts, and we can click in the specific file. Open that up, and we've got the variations here.
13:00I've been using both a g and Claude code, and you can see it's now reading from our claude.md document, which said actually replace it with a g. Don't use technical jargon, but also it's followed the slash command perfectly to create three variations of LinkedIn posts and then given us a summary down here of the hooks, the angles, and the CTAs.
13:18Now we gave an example of writing three LinkedIn posts, but you can literally turn any task that you do on a daily, weekly, monthly basis into one of these slash commands. The importance here is you want to manually invoke or trigger it at certain moments. So it could be generate all posts for this week based on my Notion calendar.
13:34This is where skills come in, and skills are slightly different but still represented as these slash commands down here. You can think of skills as an upgraded version of slash commands. They're effectively background knowledge that's loaded in automatically only when it's relevant.
13:49So you don't need to trigger these, although you can tell Claude to use that specific skill. Claude just knows from their project description and their skill description when it needs to use that skill specifically. And unlike commands, which are fairly basic, one single file like LinkedIn post dot m d, skills can include a whole folder of supporting files.
14:06So it can have, for example, for our content creation example posts, style guides, brand voice, reference docs. So it gives a richer set of context for which Claude code can actually work from. So skills are effectively repeatable actions with context.
14:20And guess what? You don't need to create all the skills yourself. You can actually get those skills from anywhere, and they're, again, gonna sit inside this dot Claude folder.
14:29So if I click on the dot Claude folder, create a new folder called skills, they're gonna sit under there with their skill dot m d file for specific skills. So you might have a brand voice folder, and inside that, we'd have a skill dot m d file with supporting files inside that brand voice as well. And we're gonna look for a humanizer skill on skills m p that takes our writing and creates more human like and less AI slop like written context.
14:53So we can go down and browse agent skills here, but it's easiest to browse by category. We're gonna go to content and media because we're creating social media content, and we will see very quickly we've got things like the ability to actually create images using Nano Banana Pro, content creation, technical writers.
15:09But what we're gonna type in is human, and, hopefully, there's a humanizer we can grab from here. We'll click inside that, and this one removes signs of AI generated writing from text. Use it when editing or reviewing text to make it sound more natural and human written.
15:21This sounds exactly what we're looking for. We're gonna open up the GitHub repository by clicking that button. And what we're gonna do is grab this line here because we've already got our skills folder, and and we're gonna git clone into our own skills here.
15:34Now you have a choice. You can git clone it into your global directory using this squiggly line and slash.
15:40Or if I just want to actually see the skill inside this directory, I'm gonna install it without the squiggly line and slash, and it's now gonna clone that repo and add it inside our skills folder. And we'll be able to see exactly what files make up that humanizer skill.
15:55And if we go in the skill dot m d, this is effectively the context for this skill that when Claude code is understanding how to write a post, it's gonna always look, okay. I'm gonna create this in a human like way, and then it will absorb and read all the context only when relevant of this skill dot m d. So it's a way to segregate and isolate that context without bloating our main Claude dot m d file in case the task is not related to actually humanizing text, for example.
16:20And it talks about personality and soul, how to add voice, how to add opinions, and gives clear examples in this very comprehensive file that we didn't need to create for ourselves to create human like writing very quickly. So here's the key thing with a skill.
16:34You effectively need a really, really precise description for Claude to understand exactly when to use that skill.
16:41So here we've got remove signs of AI generated writing from text, use when editing or reviewing text to make it sound more natural and human written. So Claude will understand when we ask for a human like article to actually then use this skill in its process.
16:56And we don't need to say slash humanizer, but we can do if we wanted to. So we can invoke it manually, but also automatically it will look to do that.
17:04But the way we ensure that in the Claude dot m d file instead, every time you write some content, make sure you use the humanizer skill in slash skills slash humanizer. So now it will understand because we've added it both globally and for this specific command that it's gonna use that skill when it tries to make human like writing.
17:21Now you could go and export entire libraries of content and media and have, you know, 14,000 skills within your directory, but I prefer to control exactly what skills I'm getting and actually just pull in these specific skills that I'm looking for so I know when I'm invoking certain things and not blending things too much.
17:38So you could do things like front end design, SEO review, email drafter, absolutely anything. People have turned into a skill, and you can go through and edit those skills to your requirements too. So we're gonna run our command again, LinkedIn post anti gravity versus claw code, and we should have more naturally written content.
17:53And we've not had to do a huge amount of work. We've just installed the skill, and already we should be getting some really good outputs from this. I stopped using AG last month.
18:00AG builds things fast. You describe what you want. It writes codes you ship.
18:03The problem is what happens six weeks later when something breaks and nobody on your team understands how it works. So this is a lot clearer, a lot less AI slot like. So it's gone through, written the post, humanized them, and then actually even given us a summary of the things that it's changed to make it sound more human.
18:20So for example, these tools aren't competitors. They're different answers to different questions. It's it's actually changed it to the real question is, do you want to outsource your thinking or augment it?
18:30So we've got slash commands, which you want to manually invoke for certain tasks. We've got skills, which are automatically invoked based on their description and can have a huge amount of context in them. That brings us to the final part of level three, which are hooks.
18:42Now hooks don't require a brain. They don't require any LLM tokens specifically. They're just automatic triggers, anything that you can do mechanically that fire off when Claude code does something.
18:53And to use it, we're gonna need to create a dot Claude slash settings JSON inside our project file. We're gonna create a new file, and it's gonna sit within our dot Claude file.
19:02And in our example for content creation, we might have a list of banned words that we're gonna check every single content post for, and it's gonna do that automatically. So it doesn't require any thinking at all. It's just check this text against these words.
19:14It's very programmatic, and it's gonna do that every single time invoked after we've created a LinkedIn post, for example.
19:21And therefore, we're not relying on the LLM to actually think through this step. It's just automatically done.
19:26The things that we know should be true, like we're gonna check for banned words. We're gonna check for word count and flag if it's over our limit. We're gonna auto format into a certain specific format.
19:36Those things don't require thinking power, so we turn them into hooks. The way that we do that is just copy this into our settings dot JSON. We have this hooks outer object.
19:46It has a few commands, but to be honest, I never write these myself. I always get Claude to write the JSON object for me to say run this hook after this happens, and it will automatically do that. It can even add it to your settings dot JSON file.
19:58And now whenever we write a post, this is gonna run and make sure that no band words that no band words are in our output variations variations here. And I can just say run the hook for band words on the output drafts to do it retrospectively.
20:11But from now on, if we've got this in our settings dot JSON and we've restarted our instance, it will automatically run it on everything. And it would just appear like this. No band words found in the output draft.
20:21So it gives us peace of mind that it's actually running that hook. So the simple way to remember these three things are skills is how Claude thinks. So it's gonna load the skill with its context into its brain while working depending on the description of the skill.
20:33So hooks are what happens automatically after Claude code actually acts, And then commands are just stuff that we want to trigger manually with a prompt that's fed into the context when it runs. Now for every piece of content we write, it's only right that we should have a brand voice skill in there.
20:47So I've gone ahead and created a brand voice skill with our band words and phrases. It talks about how I sound, words I never use, platform specific rules, and then we've also fed it a series of examples like best LinkedIn posts, best x posts, etcetera in this example's file. Okay.
21:04So we're getting faster at performing actions by leveraging our own slash commands, other people's skills, and running repeatable tests as hooks at the end of actions. Now up until this point, we're still doing everything inside of Claude code. So we're not actually taking actions using our day to day apps like Airtable or Notion.
21:21So level four is about connecting to everything using MCP servers. So an MCP server is a model context protocol server, which is effectively just a bridge between Claude code and an external app. So instead of copying data out of Airtable and then pasting it into Claude, say we have our content ideas stored in Airtable, we just get Claude to actually connect to our app automatically via the MCP server, read our content calendar, and then create posts based on our ideas in our content calendar.
21:50Let's bring it to life by showing you how to set this up with Airtable, and we have this MCP command inside here. And you don't even need to do this anymore. You can just ask for code to set up the Airtable MCP for you, but I'm gonna show you how to actually do this for a specific MCP server.
22:05And we can have a ton of MCP servers available, again, to connect to all your different apps at a repo like the one here, which is just a list of literally thousands of services that we can automatically connect to. So we just add it to the project root. We can literally create a new file dot m c p dot json, and we can paste that code in.
22:24And it's basically saying, pick up these MCP servers, and then we need to actually insert our Airtable API key, for example. But if you didn't want to do that, we could actually remove this and just use the command slash m c p, which is built in, add Airtable, and it will start setting up this m c p dot json file for us.
22:42And then take in, for example, our Airtable personal access token, which for Airtable we can get from airtable.com/create/token/new. Give it a name, Claude Code, and we're gonna give it the scopes of reading records, writing records, and access to actually the bases, the Airtable bases too.
23:00So we need to actually give it access to a given base, and we've got one where we have our LinkedIn carousel ideas. So we're gonna create a token for that. We're gonna copy that token, and we're gonna bring it back and effectively feed that into either the dot m c p dot JSON file or just give it to Claude to add that for us.
23:16So it's created the dot m c p dot JSON format for us. We're gonna paste in our access token, and it says restart Claude code to confirm the setup. So we're gonna control c control c to shut down the Claude code instance.
23:28We're gonna hit Claude again, and we're gonna just test that we actually have that connection set up for our Airtable. So we're just gonna hit what Airtable bases do I have.
23:38And it should understand that it needs to use the Airtable MCP to actually make that request. And it's gonna return a list of bases that it has access to, which should just be that single, uh, LinkedIn carousel's base.
23:49Would you like me to explore the tables within this base? Yes. Show me the tables.
23:54So we're already reading access from our tables, but we can also take actions with those tables. And if we open up the table, we've got a bunch of content ideas from mid Jan, and you can see it's pulled out all the different tables and the key fields inside those tables as well.
24:08This looks like a content pipeline for LinkedIn carousels. Ideas flow into draft posts with a brand voice and design templates applied along the way. So it's nailed it from just that MCP understanding of the fields and the descriptions that understands exactly the content it's looking at.
24:21So this is where things get really powerful because if we wanted to combine our content creation system a content pipeline that we're storing in Airtable, for example, we could say, pull all ideas from after January 20, which was actually just one idea. It should be able to pull that specific record from the Airtable, which is a transcript of a video that I created.
24:42And what we're gonna do is actually push that into our slash command to create a post or variations of posts for us. So we're gonna say take this idea, and we're gonna use our slash command slash LinkedIn post.
24:53And what it's gonna do is then take the idea, take the transcript of that idea, and turn it into three variations of LinkedIn posts, and we can then demonstrate that we can add it back into our field inside Airtable. So if we're managing our content pipeline in Airtable, we can still actually interact and do things with Claude code, but actually then put those inputs or the outputs back into our table where we work every day.
25:15And that's the power of connecting to the data through an MCP server. So it says it's done the three variations, added them to here. Cool.
25:21So update the record table with just idea three.
25:26In the system message column, everyone's talking about AI coding tools. Most of the demos are underwhelming. So now we are giving it permission to actually go through and add that directly into our data where we work every day.
25:39So we have our content pipeline being updated by our ClaudeCode instance, and it's saying it's now updated the record. We can go along, and we can see that it's just added to the system message.
25:48Everyone's talking about AI coding tools. Most of the demos are underwhelming. So it can work exactly where we're working, and it's updated that row perfectly.
25:56So at level four then, we're taking actions directly in our apps, reading the data, adding things back to the data, updating. It's gone through a full plan and execute loop so far. We're no longer needing to do manual updates in our apps directly, and it's using the skills that we've given it as well.
26:12But so far, we're still having to contribute the majority of the thinking time to this and planning efforts for Claude. But why not leverage a framework like GSD to plan in high detail and then move us to a supervisor role instead of somebody who's executing these things on a day to day?
26:28So GSD is all about removing us from the thinking home overhead, and it's a framework that takes skills one step further. And what this framework is designed to do is break down huge projects into individual phases and execute a loop of let's plan the phase first, let's execute the phase second, and let's verify using user acceptance testing methods that the phase has been completed successfully.
26:52So this is great for where you've not got a really defined scope and you have a larger project that you want to effectively build out in great detail so that it can be run on your behalf. And when we start planning the project, it's gonna leverage that ask user questions to actually come through and get a full understanding of all of the project scope, all the dependencies, all of our assumptions, and exactly how we wanna build it out.
27:13And it's like planning on steroids. It's gonna break down individual to dos inside individual phases that are gonna be marked as completed as it goes through and executes on that brief.
27:24And the reason that power users use a framework like this is because a huge problem with Claude during long sessions is that we actually fill up the context window. So you can see down here with this bar, we're at 50% of the maximum context window that Claude code can take.
27:39As soon as we get towards 95%, Claude is gonna automatically compress all that context into summaries, and we're not gonna be able to find it. This is something known as context rock, which is basically as we increase the number of input tokens, our reliability on the output gets less to the point where if we're actually putting in 10,000 tokens or around 7,500 words, we'd lose 50% of the context.
27:59Now a framework like GST helps tackle this because it actually keeps context in individual files. So we have overall project documents that are spun up like road map, requirements, and state, but we also have context that's kept in specific phase level documents with to do level tasks.
28:16And you can see this demonstrated in a previous video that I did that I'll link above where I built out an entire SaaS application, so a large project using the GSD framework. So it takes planning to the next level.
28:28We have a dot planning folder with the project road map, which is gonna tell you exactly what the phases are about. We have foundation and authentication. We have data management.
28:36We have the AI generation pipeline and things like payments. We have the state, which is a document which tells us actually which plans have been executed and which need to be done. So it's a memory of what progress we've made against the given plan.
28:49And then we've got various other high level documents which feed in context at the relevant points and solve that contextual problem. Not to mention each phase is individually broken down into a series of waves and tasks.
29:02So inside, for example, phase five Stripe Billing, we have a plan of what we're gonna do for the first part of Stripe Billing. We have a summary of what's been executed when we run the execute command, and then we also have a user acceptance testing file that runs through and automatically tells us what to test based on our Stripe Billing requirements in the first place.
29:20So at level five, we've taken planning to the next level by using the GSD framework, but we're still just supervising one agent whilst we get on with other tasks in the background. So why not instead run a team of agents that can verify each other's work? And that brings us to level six where instead of one Claude doing everything, researching, writing, reviewing, you just split the jobs into separate sub agents.
29:44And, ultimately, we do this to increase our leverage. And it's summarized really well inside this Reddit thread by Saxapil and Kitay. So subagents are specialized personas that you may want to offload specific types of work to.
29:56And, basically, each agent has a fresh context that is then able to be pulled into your main context window that's fed by your claws.md. So use sub agents to keep your context clean, I e stop that context rot. But also, it's about context isolation.
30:10The sub agent, therefore, is not gonna bloat your main agent's context. So it makes your responses much faster if you're executing it as a sub agent and also cheaper because you're using fewer tokens because you've given it less context or isolated context. And you do this particularly when you're working on a problem that requires a lot of expertise.
30:28So break down a bigger project into its components and let agents work on it in either sequence or parallel. So for our content creation system, this might be represented like a content research team. So we might have a researcher sub agent one, which is in-depth research with access to additional tools that the main ClawCode instance doesn't have access to.
30:47We then have our main instance, which is here, which we've been using so far, which is our content writer. And then we might also have a reviewer, a second sub agent that can only suggest edits to things we've already written but not make edits. Now there are two main reasons that you might run a team.
31:03The first is to improve our output quality. So if you think of a specialist versus generalist, we might have one Claude delegating to specialists like a researcher within the same session, and the main Claude agent that we've been using might call the researcher sub agent, receive the research brief back, and then use that research to write because the main instance is the writer.
31:22And this would all happen in one terminal window. Or if our main goal is actually to get things done faster and work on multiple nondependent tasks at once, then we might have parallel terminals opening up new terminal windows where we might, for example, have tab one working on writing LinkedIn posts, tab two working on writing Instagram posts, and tab three doing something else as well.
31:41So those two never interact, but the value we're getting from those sub agents in parallel is the speed, not that they're able to collaborate and specialize on certain things. And the master of this is Boris himself who runs five chords in parallel in his terminal. You can see the tabs where he switches between the different chords and get system notifications when it needs his input.
32:00But he also runs five to 10 chords on Claude dot a I slash code as well in parallel with the local. So he's getting a lot done by running sub agents. But he goes on to mention that he uses actually few sub agents regularly, just stuff that automates some of the most common workflows that he goes through.
32:17So let's set up our agent team here to demonstrate. So, again, it's gonna sit under dot Claude. Instead of this commands and skills, we're gonna create an agents folder.
32:25And inside that folder, we're creating a content researcher dot m d file, which is basically gonna be our agent with a prompt that's basically a research specialist for a social media content team. Now this is just a fairly basic agent and actually could be run as a skill or a command, but it just demonstrates how you would actually use this.
32:42And agents would often have a lot more context because they're doing a very specialized task. So we're gonna copy paste that in there. We've got the description.
32:48We've got the allowed tools that it's allowed to use, and it's going basically going out to find interesting angles on a given topic. So it's content researching for us. We're then gonna set up our content reviewer.
32:59Again, we don't have a specific folder for this, but we're gonna set up just as a dot m d file. And this is all about after it's been created, review the drafted social media post against the brand voice guidelines and platform rules. So we can demonstrate now with a single task how you can get them to work together in one terminal, and then the second task will be working two terminals in parallel.
33:19So we're gonna pull an idea from the Airtable content calendar. We're gonna use the content researcher sub agent to research angles and then use that research to and then invoke the command LinkedIn post on that topic.
33:30So you can see how we're building every time on that. And then we're gonna use the content reviewer to review the drafts. And if I wanted multiple ideas to be processed at once, I could open up a new terminal.
33:39Whilst that runs in the background, we'd open up a new Claude instance. We can demonstrate the speed of doing multiple in parallel now.
33:46So you've now got two terminals actually open, and we're executing on both of those terminals. So we need to give this the go ahead on permissions here.
33:54And the first one is launching the content researcher. The second one is starting to actually access the Airtable data as well. So we could launch multiple terminals and have them side by side in this view here to both get higher quality outputs, but also run them faster.
34:09So if we need multiple of the same things doing at once, we can run multiple shells, multiple commands at once. And I can even open up multiple more instances if I have the capacity myself to actually supervise these.
34:21Now if you only have to approve a few things, this is okay. But as soon as you start approving absolutely every action you take, then you're gonna wanna use what's called clawed dangerously skip permissions, which as it sounds, basically says, I'm not gonna ask for any permission to access any file that you're giving me access to.
34:37I'm just gonna go ahead and do it. So if we start Claude with this dash dash dangerously skip permissions, it's gonna start and tell us, do you trust everything in this folder? Am I able to actually go ahead and skip permissions?
34:48So we're accepting liability for any actions it's gonna take, and you can see we've got this bypass permissions on here as well. And we could again feed this new instance the same task, and it will run-in parallel to everything we're doing so fast. We've got four three or four windows running in parallel, same sub agent doing the same thing, pulling a content idea, and actually creating new content drafts for us.
35:08And now we're really starting to get leverage because we have some drafts. We have some reviews coming in now as well. So we have, for example, this LinkedIn post about hiring somebody for traits instead of a degree.
35:20We have one about Stanford's free AI courses, and it's gone out and done the research on those actual courses as well. Whilst we've also got a third terminal running on the same task where it's pulled a topic from the Airtable and is scheduling our weekly content. So this ran for four minutes.
35:35This is running for five minutes, and the previous one ran for five minutes as well. So we can condense our potential fifteen minute end to end process into five minutes and start reviewing those outputs as they come in rather than waiting fifteen minutes for them all to complete.
35:49We're able to run them in parallel like that. So now that we've got a team set up and we've got guardrails in place, why not just get it to run the whole show? And we're gonna talk about level seven now, is which what people are doing with fully autonomous pipelines.
36:02So for our content creation system, this is where you set it up, you walk away, and you come back to a week's worth of content already drafted, reviewed, and ready for your approval. So everything we've seen so far is implemented in what's called a Ralf loop, which is literally just three files.
36:17It's a bash script that tells it, do not stop working until you've met this condition. And the condition can either be the max number of iterations to stop us spending too many tokens or a done completion state. So we tell it exactly what done means in our PRD dot JSON file, which is just our product requirements document file, and it continues to push that context back into a fresh context window for Claude.
36:41Every time it thinks it's done a task, it will say, have you completed or have you met the conditions of completion? If not, go again. And to use it, we're literally gonna install the plug in by using the command slash plug in install Ralph Wiggum.
36:54But the only thing that we need to create and make sure that we create here is a PRD dot JSON file. So for our weekly content, this would literally look like user stories. So it's a description of exactly the tasks that they need to do and tells the acceptance criteria for which it should assess against.
37:09So it'll create its own verification test when it runs the Ralf loop to say, have I met this acceptance criteria for this user story? If I have, then update that to done or completed, and then go through, feed it into a new context window to stop the context drop problem with the second task that we're gonna run, and it will see that the status of the first one is now done.
37:29So it's updating those statuses but feeding back in the original task, and it will move on to post two, post three, post five, whatever, until it meets that acceptance criteria. So we're just gonna set up a new file, PRD dot JSON, and we're gonna feed these content ideas into our PRD document. And this is a task that's well scoped, so it will find it hard to actually go off the rails and do something different.
37:53And all we need to do to run this is actually just run the Ralf loop command. So we hit slash Ralf loop, and I always recommend actually running this with max iterations because if you don't, it could potentially run on larger projects indefinitely and cost you a lot of money in spent tokens.
38:09So always try to run it with max iterations as well as a completion promise as a safeguard too. So Ralph is very much an executor.
38:17It works brilliantly when all of your tasks are really well defined, clear description, a clear acceptance criteria, and a clear completion status. And the content matching process that we've done is a perfect example of this.
38:28Like, write a LinkedIn post under 200 words with no banned words in it and write six of them and the these are the topics. So there's literally nothing it needs to figure out. It just needs to do the work.
38:38So compared to Ralph, GSD framework, which we saw earlier, is a planner and an executor. So when you need a larger project to be broken down into a really comprehensive plan, we use something like GSD because it helps us with the scoping out. So it might be, for example, I need a content strategy for q two rather than write these specific posts because we need to do the planning first.
38:59And if you know all of this, you can build out fully autonomous pipelines for any business task that you want to do inside ClaudeCode and have it interact with any of your day to day apps. So there you have it.
39:10These are the top ways to get the most leverage from Claude Code. If you want to see a full project build using the GSD framework that I showed earlier that uses all of the elements we've talked about today, then check out the next video.
§ · For Joe

Seven levels is a format, not just a framework.

Killing Excuses content playbook

The level-ladder structure turns any tool tutorial into a progression narrative: viewers self-sort into a tier and immediately want the next one.

  • Run this seven-level format on JoeFlow, ModBoard, or any tool you ship. The structure holds regardless of subject.
  • The content-creation system throughline is the structural secret: one project that accumulates complexity level by level keeps abstract concepts grounded.
  • The skills/commands/hooks mental model is your best standalone short. It is the clearest one-sentence summary of Claude Code architecture anywhere.
  • Context rot (50% loss at 7,500 words) is a shareable stat that legitimizes the pain and sets up GSD and the Ralph loop as the cure.
  • The Ralph loop closer is a strong Level 7 payoff: something installable in one command beats a vague automation promise every time.
  • Boris Cherny parallel-terminal social proof reframes the ceiling. Use it as a hook in your own Claude Code content.
§ · For You

Where you actually are and what to do next.

For anyone using Claude Code today

Most Claude Code users are at Level 2 or 3 without knowing levels 4 through 7 exist. The jump from Level 3 to Level 4 alone eliminates most copy-paste between Claude and your other tools.

  • Start with the CLAUDE.md 5-question framework today. It takes 15 minutes and immediately improves every session.
  • Learn the skills/commands/hooks distinction before anything more advanced. It resolves 80% of Claude Code confusion.
  • If long sessions feel like Claude forgets things, that is context rot. GSD solves it by keeping memory in files, not conversation.
  • MCP servers (Level 4) remove manual copy-paste between Claude and apps like Airtable or Notion. Highest ROI jump for most people.
  • The Ralph loop (Level 7) is only worth setting up when your task has crystal-clear acceptance criteria. Do not automate ambiguous work.
§ · Frame Gallery

Visual moments.