WEBVTT

00:00:00.000 --> 00:00:35.840
When agent teams first dropped in Cloud Code, pretty much everyone was solely using them for nontechnical tasks. But of the seven cases that I'm about to show you, six of them have absolutely nothing to do with code. And the last one helps you build a personal assistant from scratch. Each example I'm about to show you is composed of a single prompt. You paste it in a team of agents spun up, and they take care of what would normally take you an entire session. By the end of this, you won't look at agent teams in the same way. Let's dive in. Now I already prepared all seven use cases I'm about to show you right here. And just to accompany them from a conceptual standpoint,

00:00:36.000 --> 00:00:58.065
each one, I'll walk through the high level of what the agent team is planning to do, and then we'll go into the actual prompt, and I'll show you the associated output. Now this first case is really straightforward. It is a content repurposing engine, and this is something that you might have built with things like edit n, make, or Zapier in the past. But in my opinion, this is infinitely more dynamic and flexible and malleable

00:00:58.065 --> 00:01:23.755
if you do it in Cloud Code. So the idea is I will give it one of my YouTube scripts, and then it will spawn up an agent team where you have a LinkedIn writer, a thread writer, a newsletter writer, and a blog writer. So the goal is to have one input and multiple outputs, which you will see will be the main theme across all of these different examples. So when it comes to the prompt, you can say create an agent team to repurpose a video transcript into content for four platforms.

00:01:24.120 --> 00:01:38.440
The most important magic words you always need to say is create an agent team or spawn an agent team. If you just say spawn agents, it could get confused between sub agents, which are very different in the way they work versus agent teams. And the core difference TLDR

00:01:38.325 --> 00:02:36.805
is sub agents can work in parallel, but they don't speak to each other. With agent teams, they can have that agent to agent communication. So all you have to do is just tell it exactly where the transcript is. This could also be in the cloud. You could connect it to some form of API or webhook. And here's the important part. So when it comes to asking it to spawn the team of agents, you have to be very intentional here. Do you wanna leave it up to Cloud Code to decide what those agents should be, or do you wanna have some form of autonomy over it? In many cases, it makes sense that you should dictate what these agents should be so you can make sure it's executed in the exact way you expect. So in my case, I'm asking for a blog writer where I specify exactly what their role is, same thing with a LinkedIn writer, same thing with a newsletter writer, and I'm also telling it where to output things. So the more intentional you are on telling it exactly where the inputs lie, what the criteria is, and where it should output, the more control and predictability you have over a pretty unpredictable process. And one key thing you can do is provide conditions.

00:02:36.885 --> 00:02:38.725
So you can say before writing,

00:02:38.965 --> 00:03:10.765
each teammate should read the full transcript and identify the three most compelling insights. So in a way, you're now dictating that they can't move forward until they meet this specific criteria. And one thing you can do to encourage the communication and kind of force the communication is you can say, have them share their chosen insights with each other to ensure that no two platforms lead with the same angle. Each piece should feel fresh and not repetitive. And along with the normal deliverables, you can also push it to do something like synthesizing a summary, comparing the angles each teammate chose,

00:03:10.925 --> 00:03:13.245
and flag any messaging inconsistencies.

00:03:13.245 --> 00:03:21.540
So you can basically get a postmortem report on top of the deliverables you're asking for. So in terms of this process, it was very straightforward. Because we dictated everything,

00:03:21.780 --> 00:03:37.165
it could exactly create the agents we're asking for. It spawned them all. It then went back and forth. We got that criteria of meeting the three blog insights per agent. But one interesting thing that happened was it said, good. Three of four teammates reported their insights,

00:03:37.405 --> 00:03:39.645
but there seems to be heavy overlap.

00:03:39.805 --> 00:03:45.245
All three picked the three level loading system and the kitchen analogy skills plus MCPs.

00:03:45.500 --> 00:04:03.925
I need to wait for the Twitter writer's picks before I assign unique lead angles. So now when you have Claude Code and these agent teams, Claude Code takes this third person perspective looking at what's happening so they can better observe, survey, and intervene when needed. So then ClaudeCode can look at all of the different angles,

00:04:04.085 --> 00:04:17.410
make sure that each one has a unique take, and then it can assign it right here. So it tells you the blog writer, LinkedIn writer, newsletter writer, and Twitter writer. This is the lead angle for each one of them, and this is why they're doing it. So that's the rationale

00:04:17.410 --> 00:04:28.735
by the Claude code agent itself. And at the end, we get a summary of everything that was completed. And then if we go to the bottom here, this goes through all the material that was shared between the agents, any form of inconsistencies

00:04:28.735 --> 00:04:41.695
that were flagged, and then we get the outputs exactly where we ask for them. So the beauty of this is I can click on this URL right here, click on command, open it up, and we can take a look at what the blog post looks like. We can intervene.

00:04:42.060 --> 00:04:54.220
And if you want, you could re spin up the whole agent team to edit it, but in that case, it might make more sense to maybe spin up sub agents to make edits in parallel since they don't need to speak to each other if you can identify independently

00:04:54.220 --> 00:05:35.605
what needs to change. So the second use case might be very helpful, and this is meant to research and create a pitch deck on a particular topic of our choice. So in stage one, you have the researcher, and the goal of the researchers come back with certain data points. Then we have the plan approval on our end. And then once approved, we have the slide writer. And the slide writer comes up with what content should be on each and every slide based on the research. And then beyond that, in stage three, we have the designer. And the designer's role is to actually take all the research, take all the slides, and physically create the PowerPoint file using the HTML to PPTX library. So this is a really good example of a sequential handoff workflow

00:05:35.685 --> 00:05:43.130
where you can't really have the agent teams work in parallel like you would with something like sub agents. You need each one to wait for the prerequisite

00:05:43.130 --> 00:05:46.570
to go to the next stage. So the prompt for this one looks as follows.

00:05:46.810 --> 00:05:54.730
Create an agent team to build a 12 slide pitch deck about how AI automation is transforming small business operations in 2026.

00:05:55.185 --> 00:05:58.945
So once again, I say spawn three teammates with task dependencies.

00:05:58.945 --> 00:06:00.545
We have the researcher,

00:06:00.545 --> 00:06:31.115
which whose role is to find eight to 10 data points, stats, and supporting evidence. And then we have the slide writer. Now in this case, I went down to a very deep level of granularity where I said exactly what should be on each slide. So you can always choose to relinquish control or take control. It's just a matter of the prompt they put together. And then I say exactly what each slide criteria should be. So a max of eight words, three to four bullets, and some speakers notes at the bottom of the slide, and then I tell it exactly where to save to. And then we have the designer.

00:06:31.195 --> 00:06:54.595
So using the slide writer's content, I'm implying the whole sequential handoff from here. Build the actual file using Python. Now this is overkill. It would figure it out on its own, but, again, the less thinking you have to make Claude code do, the more accurate the results. And one last key nugget here is you can force the agent team to interrupt itself by asking for your input. So when you say require plan approval

00:06:54.675 --> 00:07:32.730
for the designer before they start building, once a designer goes, it will actually usually invoke what's called the ask user input tool, and I'll show what that looks like. So I screenshotted this while the agent teams are running because we can't recall it as soon as it's done. In this case, once the designer came up with an idea, it asked me to review the designer's plan and approve as is, approve with notes, or reject with some rework. And the great part is when you say involve me, you essentially create a human in the loop process yourself, and the agents are really good at actually spinning that up and interrupting their flow. So in this case, it spins up three agents as we specified, the researcher, slide writer, and designer.

00:07:32.730 --> 00:07:41.130
And the rule of thumb, by the way, from Anthropic is three to five agents is the sweet spot. Anything beyond that can lead to diminishing returns,

00:07:41.210 --> 00:07:42.330
over engineering,

00:07:42.650 --> 00:07:44.410
overthinking, and most importantly,

00:07:44.490 --> 00:07:50.975
a huge consumption of tokens. So here you can see the research has finished and notified the slide writer. We see the sequential flow.

00:07:51.375 --> 00:07:54.735
We see exactly what it's come up with in terms of stats from its research.

00:07:55.055 --> 00:08:03.270
We then see the pipeline status. This is the example of the plan from the designer that I was asked to approve. So the the color palette, the typography,

00:08:03.270 --> 00:08:04.550
the slide dimensions,

00:08:04.950 --> 00:08:07.350
and everything we specified was a little bit more.

00:08:07.670 --> 00:08:12.390
After approval, they went, and it was actually pretty quick. Typically, some of these tasks,

00:08:12.550 --> 00:08:17.430
for technical tasks, can take up to thirty, forty, fifty minutes and 300,000.

00:08:17.795 --> 00:08:19.555
This still took a 150,000

00:08:19.555 --> 00:08:27.395
tokens, but it was very efficient. And then like I said, you can always hover over this URL, click it, open up this pitch deck. It's not gonna be absolutely

00:08:28.035 --> 00:08:32.390
beautiful, but it's respectable. So if you go through it, everything is well organized.

00:08:33.030 --> 00:08:50.175
Everything looks pretty straightforward. We have our speaker notes at the very bottom like we requested. And you can imagine if you could dictate exactly a certain brand guide or a brand style, then you can make this very business friendly. And one extra super nugget for you is you can actually install this new extension called Claude for PowerPoint,

00:08:50.255 --> 00:09:15.355
and the whole point of it is you can open it up, authorize using your existing Claude account, and you can make specific tidbit updates without having to waste your tokens in Cloud Code or spin up a brand new agent team. So you can make any specific or surgical changes here and take it from 80% to a 100%. So this next one will appeal to all the consultants out there. So if you've ever written an RFP or a request for proposal or a tender opportunity

00:09:15.355 --> 00:09:16.875
for a government contract,

00:09:17.035 --> 00:09:29.380
you'll know that the tender descriptions are really long, and the amount of work you have to do to actually complete and satisfy them is equally, if not more, very long. So this will take the requirements of these proposals,

00:09:29.700 --> 00:09:39.835
and then it will go create an agent team where you have an RFP analyst to look at all the different requirements you have to satisfy in your proposal. And then you have the capability researcher,

00:09:39.835 --> 00:09:48.955
which you could give examples of who works on your team, who has what experience, what case studies do you have for it to draw from to help with the creation of this RFP.

00:09:49.035 --> 00:10:05.640
Then they will share their data, and then it will pool everything. Then you'll have writer a, and you'll have writer b. The goal of writer a will be to create an executive summary, talk about technical management, assuming there's a technical component to the RFP, and writer b will have the qualifications,

00:10:05.915 --> 00:10:15.195
past performance, and pricing. So they will work together again to cross reference and build the whole proposal. So in this case, instead of having a sequential handoff,

00:10:15.355 --> 00:10:43.095
we essentially spawn these agents to work in parallel here and then spawn them to work in parallel here. But the sequence is that this parallel task comes first, then the second parallel task. So for this, the prompt is create an agent team to respond to a request for proposal, then we just provide it access to the URL right here, which corresponds to an actual RFP to create an AI scribe and dictation solution. And you'll see here, if you're not as familiar, you have bidding details, you have eligibility conditions,

00:10:43.335 --> 00:10:44.855
you have contact information,

00:10:44.935 --> 00:11:11.155
you have more information about the proposal in general. And then you give it more information about your particular organization. So you could say, we are a 15 person AI consulting firm specializing in building custom automation workflows for mid market companies. We use tools like Cloud Code, etcetera. Our average project size is between this and this, and we've completed 40 plus projects. Now naturally, you might wanna feed more information in the form of markdown files so you can really dial down the proposal.

00:11:11.475 --> 00:11:15.075
Then you spawn the four agents like we specified, the RFP analyst,

00:11:15.420 --> 00:11:17.900
then the company capability researcher,

00:11:17.900 --> 00:11:31.595
then the section writer a, and the section writer b, each of them with their own details, and then you basically dictate the flow like we said before. After both section writers have finished, review all sections for consistent tone and terminology,

00:11:31.755 --> 00:11:55.460
no contradictions between sections, and every RFP requirement addressed. Then flag any requirements that we didn't address. In terms of the setup, it's pretty straightforward. As you go down, we see the first two agents are launched. They run-in parallel right here, and you can see that the next section a and section b writer are blocked until they run. So once they go through that entire process, this took around a 180,000.

00:11:55.715 --> 00:12:23.135
I'm just telling you that so you can gauge your limit based on your plan. It comes back with the deliverables that I actually asked for in markdown format just because I didn't wanna create a docx or PDF just yet. I want to review it just to preserve on those tokens. Then you have task five right here, which is the final team lead boss, and you could see the output if you click right here. Then you have each part. You have the capability matrix of everyone in the company, obviously, hypothetical.

00:12:23.295 --> 00:12:26.895
Then you have the full proposal that you can review in pure markdown.

00:12:27.055 --> 00:12:51.190
And assuming it fits your requirements, then you can say, okay. Cool. Can you go and create a PDF or a doc x out of this? And then it will be able to invoke the skill that comes out of the box from the Anthropic team that can create that file. So then you have both proposal sections as well, so you can audit each and every deliverable from each and every agent. So this next use case is a spicy one. We're gonna use agent teams to do competitive analysis,

00:12:51.595 --> 00:12:54.395
compare Claude code to four other competitors,

00:12:54.555 --> 00:12:55.515
antigravity,

00:12:55.515 --> 00:12:57.995
cursor, codex, and Copilot.

00:12:58.075 --> 00:13:02.875
Then we have a synthesis lead whose sole job is to take the independent

00:13:02.875 --> 00:13:18.725
research from each one of these platforms and bring it all together. So our prompt here is a bit nuanced, and I'll show you how. So in this case, I say create an agent team to build a competitive intelligence report. I tell it what the target product is. I wanna say Claude Code, the AI powered coding assistant CLI,

00:13:18.885 --> 00:13:21.205
and these are the competitors to analyze.

00:13:21.605 --> 00:13:26.725
Document the following for each platform, latest and greatest info as of 2026.

00:13:26.885 --> 00:13:38.210
I give it all the criteria, but I want you to notice one nuance between this prompt and the ones before it. In this case, I'm not specifying it to create an agent team with specific agents to my instruction.

00:13:38.370 --> 00:13:50.745
I'm allowing it the creative freedom to do it itself. So at the end, all I say is have each analyst share their top three findings with the group before the synthesis begins. Meaning, again, I'm encouraging communication

00:13:50.745 --> 00:13:57.865
between these agents. So now it spins it all up. We have the cursor analyst, the copilot analyst, the codex analyst,

00:13:58.025 --> 00:14:10.380
and the antigravity analyst, and then we have that team lead that does the synthesis. And notice how it says me. So Claude from the third person perspective is taking on the persona. So it tells you what each analyst will do.

00:14:11.020 --> 00:14:47.285
It goes to the process. It does the research, and then it comes back with a synthesis file. Each one comes back with a deliverable. So each one has a markdown file of the full synthesis, and it goes through the top strategic takeaways. It creates this competitive intel file right here that I can bring. Each one has analysis on how each and every IDE and platform works, what it brings to the table versus the other ones, and then you could see there's an overall synthesis report where it goes through and compares and contrasts each one of them. So I'm using products here, but this could be competitors as in other companies,

00:14:47.445 --> 00:14:48.565
other platforms,

00:14:48.565 --> 00:15:00.970
other frameworks, whatever you want. This next one has to be one of my favorite examples, which is the AI advisory board. And the point of this use case is you take a very meaty problem or meaty question or opportunity

00:15:01.050 --> 00:15:15.405
and you just pose it, and you create a very comprehensive prompt to help you split up that task in a way where different agents can take different perspectives on it to come up with a cohesive analysis. So in this case, let's say I wanted to launch a $7,500

00:15:15.405 --> 00:15:25.660
higher ticket boot camp for more affluent CEOs and VPs, etcetera. Should I launch it or wait? Could be the overall question or premise. So then you can have a market researcher,

00:15:25.900 --> 00:15:28.540
a financial modeler, a devil's advocate,

00:15:28.700 --> 00:15:42.155
a competitive strategist, and an audience analyst all work together to act as the voice of the customer, voice of the consumer, and most importantly, the voice of the market. So if we go, you'll see that this is a behemoth of a prompt.

00:15:42.395 --> 00:15:46.315
And we started the same way saying create an agent team to analyze a complex

00:15:46.475 --> 00:15:47.515
business decision.

00:15:47.755 --> 00:15:50.875
I posed the question, should we launch a $7,500

00:15:50.875 --> 00:15:58.730
live six week AI leadership boot camp for execs and CEOs who want to manage AI teams and integrate it into their operations.

00:15:58.890 --> 00:16:08.970
And then I give it context about myself, my agency, my community, the fact that I used to teach boot camps all the time, and then we say spawn five agents to investigate different angles.

00:16:09.505 --> 00:16:15.425
I say the market researcher who goes through and analyzes the executive AI education market,

00:16:15.665 --> 00:16:22.625
the audience gap analyst to investigate the gap between our current audience and the target audience, then the financial modeler,

00:16:22.705 --> 00:16:44.235
competitive strategist to see exactly who's selling something like that out there, and then the devil's advocate who takes all the analysis and steps in to say, maybe you shouldn't do this at all, or maybe you should do it in a completely different way or at a different price point. So then this is the key deliverable, and this is where you can get creative. So I say, once consensus or informed disagreement,

00:16:44.235 --> 00:16:46.395
really good nuance here, emerges,

00:16:46.475 --> 00:16:49.595
synthesize into a single executive brief with

00:16:49.915 --> 00:16:52.940
go, no go, or conditional recommendation.

00:16:53.340 --> 00:16:55.180
Top three reasons for the recommendation,

00:16:55.340 --> 00:17:08.025
top three risks regardless of the decision, and suggested next steps. This is where prompt engineering meets agentic workflows in a way where both become really powerful. So then we tell it exactly where to save it.

00:17:08.425 --> 00:17:18.585
This one spins them all up. In this case, it can make sense that all of them can run-in parallel because they're all taking mutually exclusive tasks. So it's not necessarily a sequential handoff.

00:17:19.130 --> 00:17:27.210
Then as we go down, we get the analysis from each one. We can take a look at all the files they came up with from the audience strategy

00:17:27.370 --> 00:17:29.130
to the competitive framework.

00:17:29.370 --> 00:17:32.810
Obviously, lot of reading. You might wanna ask it for a TLDR of the TLDR,

00:17:33.195 --> 00:17:40.155
but it gives you out of the box. It tells you conditional go. Start with a $2,000 course, then upgrade to $7,500

00:17:40.155 --> 00:17:44.235
within four to six months, then you can go through the risks, the key debates,

00:17:44.875 --> 00:17:46.475
everything that we used to see before,

00:17:47.350 --> 00:17:50.950
the revised numbers of what it would look like from a financial standpoint,

00:17:51.270 --> 00:17:52.790
all the permutations of it.

00:17:53.350 --> 00:18:13.745
And this runs for a while, and this really helps you if you have a very deep problem you wanna go through and you might not have the colleagues of your own to be able to push back on you. This is a great way to get an initial lens from different virgin eyes of different agents. And for our penultimate example, we'll take on a marketing use case. So let's assume you have a full campaign launch

00:18:13.905 --> 00:18:16.785
and you are looking to market your new FocusPods

00:18:16.785 --> 00:18:18.840
Pro. I know, very original name,

00:18:19.080 --> 00:18:27.000
you'll need a email marketer to come up with the three email sequence for the launch. You'll need the social media manager. You'll need the ad copywriter,

00:18:27.000 --> 00:18:31.960
and you'll need the landing page creator for the product itself. And then you need some way to have

00:18:32.475 --> 00:18:43.995
consistency, some fluency between each and every part of this process. So, again, you have that team lead or that synthesis agent at the end that make sure that each individual output has some cohesion.

00:18:44.315 --> 00:19:02.770
So if we go over, we also have a pretty legendary prompt here as well, but notice that most of these are very granular. You don't necessarily have to go to this level. So even though I go to levels like this where I'm pretty much spoon feeding and dog fooding it exactly what to do, you could just say email marketer. You could just say social media manager.

00:19:03.505 --> 00:19:22.890
And in this case, I say the product. I explain exactly what it is. I see that we're creating the agent team to build a complete marketing campaign for the product launch. So notice now we're at this stage. This is always the goal. So having your objective function or your goal you're optimizing for is the most important part. And then we're just contextualizing it. We're giving it all the nuance.

00:19:23.050 --> 00:19:34.570
With the ad copywriter, this is where it's valuable to add some granularity. I'm saying, I don't want you just to create three variations of ad copy in general. I want you to create variation a where it's problem agitation, so the friction point.

00:19:35.205 --> 00:19:39.045
Variation b would be the social proof angle, and then variation c,

00:19:39.285 --> 00:19:43.925
us versus them comparison. A lot of more social psychology grounded variations,

00:19:43.925 --> 00:20:11.765
and you can really have fun with this. You could go and say, you know what? I want variation d to also take on the persona of Edward Bernays, which if you don't know, kind of invented all the trends, the whole notion of breakfast and bacon and eggs being a couple. He was the mastermind behind all those marketing campaigns. So if you added that as an extra lens, now you have the capacity to have one agent take on different lenses without diluting any one of them since it's so focused on the task at hand.

00:20:12.165 --> 00:20:14.885
So after that, this runs as expected.

00:20:15.240 --> 00:20:17.240
We get all the email sequences.

00:20:17.240 --> 00:20:30.440
We get the entire marketing campaign as a series of markdown files. And once again, you can spin these up. If we take a look at the email sequence, for example, you have email number one, the teaser, the subject line. It tells you how long to release it before the launch.

00:20:31.745 --> 00:20:35.905
I don't see too many em dashes. I see a pseudo em dash here with two dashes,

00:20:36.145 --> 00:20:38.145
but you could probably just tell it to avoid that.

00:20:39.025 --> 00:21:30.685
Looks decent, but still AI. So you can focus on the copywriting to make it better. I see some italics here. So it's not completely AI slop, but you could deslopify it with the right instructions. And for the final use case, I'm gonna show you how you can create the 8020 version of your own version of OpenClaw that fits exactly what you're looking for in the easiest way possible. I dropped a whole video kind of alluding to this earlier in the week. Some people loved it. Some people hated it. All good. I'm still gonna show you how to one shot it very closely with a pretty comprehensive prompt. They're gonna use both sub agents and agent teams to work cohesively together in a way where they complement each other. Sub agents will take on more grunt work. We'll use explore sub agents to go and take a look at the existing OpenCLR repo to see what it is we want from it. And then the agent team will have the architect,

00:21:30.685 --> 00:21:31.725
the blue printer,

00:21:31.965 --> 00:21:55.705
and you'll have everything else in terms of your core requirements or wish list. So one in charge of the telegram setup, one in terms of the skill setup, one that's creating a version of memory that might fit for you for your use case, and one to help you create the CLI experience. And like I promised, this is probably the beefiest prompt of all of them. This is a small essay like the hobbit, and it starts off saying,

00:21:56.025 --> 00:22:01.385
create an agent team to build a personal AI assistant, a better customized version of OpenClaw

00:22:01.545 --> 00:22:49.825
built specifically to run my company prompt advisers. Now I give it the URL of my company for a reason. I wanted to tailor what the build of the personal assistant should be that drives business value based on what I do day to day. So the end goal, a working CLI command line interface. If you don't know what that is, that is this. Right? So you where you have the open claw, in this case, it's called mark claw, and we complete the command by saying that we wanna connect it to Telegram, understand our business context, pick the right tool for any task, and help me run my company day to day. And then I say first, before spawning the agent team, use a sub agent to clone and analyze the repo. So now we're offloading that task to preserve tokens to just contextualize exactly what's there. So this is where we specify everything for the sub agent. We tell it exactly to clone this repo,

00:22:50.145 --> 00:22:53.745
read through the code base, summarize the overall architecture

00:22:53.825 --> 00:23:15.900
and how components connect, design patterns used, what technologies and dependencies it relies on, the three best ideas we should steal for our version, and the three things we should do differently. So with that, we have the agent team now spinning up in step two, and we tell it to spawn five teammates to build our custom version. And we tell it we want one for the architect, one for the telegram interface,

00:23:15.980 --> 00:23:24.285
the skill router and tools, memory and context, integration and CLI. So pretty much everything that you would need to put everything together.

00:23:24.685 --> 00:23:26.605
And then if you go to the very bottom here,

00:23:27.245 --> 00:23:31.645
we have the dependency chain it walks through. We have the architect

00:23:31.350 --> 00:23:33.270
taking care of everything

00:23:33.270 --> 00:23:34.710
we need to progress it,

00:23:35.430 --> 00:23:50.725
and it takes around probably twenty to thirty minutes to go from zero till the very end. It originally comes up with this one, which I didn't really like, prompt advisor assistant. A little bit, uh, blinding on the eyes when you open it up. So then I switched it up to, uh, Mark Claw,

00:23:51.205 --> 00:23:56.325
and that was not using the agent team. So the agent team shut down at the point where it completed the

00:23:56.565 --> 00:23:58.565
original version of the command line interface.

00:23:58.910 --> 00:24:05.310
I just wanted to now individually go back and forth with Claude code to get it to the point where I could look at it and be like,

00:24:05.630 --> 00:24:11.550
This works. This is cool. And then in literally one shot featuring some more aesthetic updates,

00:24:11.630 --> 00:24:22.325
we can go add our telegram token onboard and have this up and running in a matter of minutes. So hopefully this walkthrough shows you the power of agent teams applied to nontechnical

00:24:22.325 --> 00:24:23.525
and a pseudotechnical

00:24:23.525 --> 00:24:44.380
use case. So you can start using it for everything where it makes sense to break down heavy problems or break down heavy tasks. And I know you're probably waiting for me to say it. Yes. I'm gonna make all the prompts I showed you available to you for free in the second link in the description below. But what I teach here on YouTube is just a sliver of what I go through in my exclusive community, and I wanna do a whole masterclass

00:24:44.605 --> 00:25:11.000
on setting up and configuring my own version of OpenClaw, MarkClaw, whatever claw you want. So if you wanna check that out and every other resource we have, then check out the first link in the description below, and I'll see you inside. And for the rest of you, if you enjoyed this video and it helped illuminate more use cases where you can practically use agent teams, I'd super appreciate if you could like the video, leave a comment, good or bad, all good, just so the video can get some more recognition in the algo, and I'll see you all in the next one.
