WEBVTT

00:00:00.000 --> 00:00:15.345
I built an AI agent that replaces n8n, make.com, and OpenClaw. You give it a project, it builds the skills it needs, then finishes the job. Tools like OpenClaw are a security nightmare. It modifies itself with zero oversight, and n8n and make.com have you connecting nodes like it's 2,019.

00:00:15.345 --> 00:01:36.620
It took me weeks to architect a system that actually works and lets you review every change to the agent before it goes live. In this video, I'll give my agent a project to step back and we'll watch it build what it needs to finish the job by itself. And by the end of this video, you'll have your own self improving AI agent working for you twenty four seven. Let's get into it. We're gonna get started here in the PopeBot chat interface. This is what you'll see right after you install the PopeBot. And as we go and I prompt the system, I'll be able to explain more about how it works. And I've got an insane new feature that I'm about to release, so make sure to check that out. All right. So I have a prompt that I've already created just to get us going, and I'll link this in the description below. But basically, I'm asking the PopeBot to create me an Airtable content system with a few different columns. I'd like it to create the table and columns for me. I'm letting it know it should let us create AI images, and it should be able to save to Google Drive to track everything in Airtable and to create documents for blogs, and also linking those to Airtable. We should be able to add, update, and delete rows. And then I'm just asking it to enable and create all of the skills that we need. And it would already do this, but I'm asking it to help me set up all the keys and walk me through that process and to use image creation for a test and to leave some of the files in Google Drive during the test so I can see and verify them. And then if something goes wrong, to go ahead and stop and tell me instead of trying to figure everything out. So I'm just gonna go ahead and take this prompt. We'll come over here. We'll drop it here into the chat.

00:01:38.095 --> 00:02:34.070
It's gonna go ahead and think through. It's gonna look and see what skills are available already. So I already have some skills that I've built into the system, but they are inactive and it just needs to be enabled. However, it doesn't have an Airtable skill, so it's gonna build that out for us. Alright. So you can always just scroll down and check out the plan. The first thing that's gonna walk us through is setting up some secrets so that these skills can actually do their job. We're gonna need some API tokens. And just keep in mind, I might do a few things here that seem a little technical, but I'm gonna explain them as I go. So just be patient and I'm also gonna do the install at the end. Basically, just need to set up these tokens here. So the first one we need is Airtable. So I'm gonna go ahead and copy this and I'm gonna jump down to the terminal. If you're on Windows, you should have something just like this. Don't be afraid of the terminal. I'm inside of my PopeBot directory, and I'm gonna show you that as well later. So I'm just gonna type or paste that in. I'm gonna remove that placeholder there. I'm gonna go to Airtable, and remember our prompt already said

00:02:34.310 --> 00:02:55.190
that I had created the Airtable base. So in Airtable, I had gone through the process of just creating the base. It's just an empty base. I haven't changed this at all. I just named it new content system. I could have had the bot do this as well, but then I would have had to give it a API key for the entire system, and I'd rather give it permissions just to this one particular base. So I'm gonna jump over to Airtable. I'm gonna come up here.

00:02:55.750 --> 00:03:01.110
I'm gonna go to my account. I'm gonna go to the developer hub. Gonna go over to personal access tokens.

00:03:01.670 --> 00:03:04.150
Create a new token. Call it the

00:03:04.565 --> 00:03:12.965
PopeBot demo. For scopes, I'm gonna go ahead and give it just about everything down the line. It might be handy to have. It needs to be able to read the base

00:03:13.365 --> 00:03:21.880
and update the base so it can create its own tables and columns. And I'm just gonna give it access to this particular base. New content

00:03:22.680 --> 00:03:50.910
system. That way the bot only can modify this one particular system and then I'm just gonna take this key and I jump back to the terminal, gonna drop that there and it's gonna add it. Now again, I'm gonna go over this in a little bit more detail, but the PopeBot does get its secrets inside of GitHub. This is where we store everything. If you don't know what GitHub is, don't worry. We'll show you that in just a bit. And now if you notice here, we have that token here with the API key. So we'll just keep going. Now we need the base ID. We're gonna copy this, come back to the terminal.

00:03:52.750 --> 00:03:57.390
We'll go to our content system here. The base ID is gonna be right there. Copy.

00:03:58.415 --> 00:03:59.775
Come back to the terminal.

00:04:01.375 --> 00:04:10.015
Drop that right there. Good to go. Again, with the secrets, you're gonna notice that one is here as well. Now we've got the base ID. And just make sure you go through this part carefully.

00:04:10.015 --> 00:04:14.530
If you miss something, it just slows you down. Now we're gonna set up the Google authentication.

00:04:14.530 --> 00:04:24.530
So now this one, just follow me here. This is gonna be easy, but I just wanna show you how to do it. And by the way, if you did ask the bot how to do this, it would walk you through the same steps. I'm gonna head over to Google. I'm gonna type

00:04:25.135 --> 00:04:26.255
Google Cloud

00:04:26.415 --> 00:04:43.960
and I'm gonna jump over into the Google Cloud here and we're gonna go to the console. Now I am using a Google Workspace account for this. I do that because it's able to keep things more secure by using shared drives. Already have a bunch of projects, but if you're new to Google Cloud, you'll need to create a project. New project,

00:04:44.440 --> 00:04:54.245
the Pope Bot. We'll go ahead and create that. It's gonna take just a second. We're gonna select that new project. We're gonna head up to the menu here. Let's try to make things a bit bigger for you.

00:04:54.725 --> 00:04:57.365
We're gonna come over here to APIs,

00:04:57.365 --> 00:04:58.565
enable services,

00:04:59.205 --> 00:05:00.085
Google

00:05:00.085 --> 00:05:01.765
Drive API.

00:05:01.925 --> 00:05:07.445
Just gonna add that. We'll enable it. Once that's enabled, we'll go and do Google

00:05:07.525 --> 00:05:08.485
Docs

00:05:09.180 --> 00:05:12.460
API. Gonna go ahead and enable that as well.

00:05:13.580 --> 00:05:28.665
Now that we have those two, that's all we need. We're gonna come back up to the menu. We're gonna come down to I am an admin, and we're gonna go to service accounts. This allows us to create an account that is separate from our own account so that we can separate my own personal documents

00:05:28.745 --> 00:05:46.620
and what I wanna keep private from the bot and what I want to share with the bot. Next, we're gonna come up to create service account. Now if you run into any security limits as you go, just cut and paste those into Cloud or ChatGPT and have it walk you through how to disable those security warnings. I'm gonna name the service account the POPbot.

00:05:47.020 --> 00:06:13.780
In terms of permissions and principles with access, you can just go ahead and say done. Now before I get the credentials, I'm gonna do one thing. I'm gonna jump over to Google Drive and I'm gonna come to shared drives. I'm actually already here, but make sure you go to shared drives. We're gonna create a isolated drive where the PopeBot can work, but it's not accessing all of my files. You can give it access to all of your files, but you can do it through the shared drive so that you have more control. So I'm gonna come up here, new shared drive, the Pope bot.

00:06:13.940 --> 00:06:20.755
Make sure you follow all these instructions. It'll save you a lot of time. Now we need to share it with this service account. Manage members.

00:06:22.195 --> 00:06:29.635
Simply share it. You're good to go. Now we're gonna go into the service account. And now we're gonna go ahead and generate keys.

00:06:30.515 --> 00:06:31.155
Add key.

00:06:31.740 --> 00:06:35.980
Create new key, JSON. This is where you might hit a security issue.

00:06:36.220 --> 00:06:41.660
Just go ahead and walk through any of those warnings, take screenshots, work it through with ChatGPT.

00:06:41.660 --> 00:06:58.725
You'll notice that it downloaded a security file here. We're gonna use that. That's what we need. I'm gonna jump back to the Pope bot and it gives us this command here. So I'm gonna go ahead and copy this. Now one thing about this, I'm just gonna show you a super easy way to deal with something.

00:06:59.720 --> 00:07:01.640
So the file we just downloaded,

00:07:01.640 --> 00:07:26.615
I'm gonna go ahead and open that up, is multiple lines and that doesn't really work great here on the command line. There is a way to deal with that. If I use a less than sign and I reference the file directly in my downloads, I can do it this way. So that will work. If you wanna do it that way, I'll go ahead and just set it. But another way you could do this if that looks too complicated is you could just simply copy this, paste it like that, and just erase what it has

00:07:27.570 --> 00:07:39.250
and just write temp. Okay. So it put temp into this variable. Then you could come back to the secrets, but we're gonna see that variable is here now, and we could just edit it here. And then I could go to the file,

00:07:40.415 --> 00:07:43.615
just grab it, drop it here, update secret,

00:07:43.695 --> 00:07:57.260
and we're good. So there's a few different ways of doing it and I'll cover more about this as we go and in the install directions. So just hang tight, watch me go through all this, and then you'll feel a lot more comfortable at the end of the video. So now we've set up the Google Drive secret. Now we need the Google Drive ID.

00:07:57.420 --> 00:08:03.260
So I'm gonna come up to our shared folder. There's our ID. I'll grab the Google Drive ID command,

00:08:03.900 --> 00:08:04.940
paste that.

00:08:05.340 --> 00:08:07.980
Again, I'll erase the placeholder,

00:08:13.315 --> 00:08:16.115
drop in the ID. Carefully do this guys or

00:08:16.435 --> 00:08:27.540
you'll just run into issues later. And once you do this once, your bot will be able to do all this stuff without you having to do this over and over again. You just need to do this when you're setting up new skills. Now I'm going to go ahead and set up key.ai.

00:08:27.540 --> 00:08:36.900
This is a AI image and video creation platform. If you're using something else, it's very easy to create a skill for that. I'm gonna go ahead and just copy this, take it back to the terminal,

00:08:38.945 --> 00:08:55.800
erase the placeholder, we'll jump over to a key. I'm in my API keys already. Just gonna copy one that I already created. You can create one here. Add that key and now let's go back to the POPot. Just double check everything. Airtable API key, Airtable base ID. We did this.

00:08:56.120 --> 00:09:03.720
Google Drive key. That looks like everything. So coming back here, it's just saying after you've done those five commands, let me know, and it's gonna write up the full job.

00:09:04.760 --> 00:09:05.560
Go.

00:09:05.720 --> 00:09:07.080
I would recommend always

00:09:07.855 --> 00:09:11.135
just reviewing what it comes up with. Make sure it aligns

00:09:11.455 --> 00:09:50.035
with whatever your prompt was. Make any corrections. So it's going to verify the credentials first, then it's going to activate the skills that it already has in the system when you install the PopeBot. It's gonna build the new one that doesn't exist. And by the way, I'll add this back into the project when I'm done so you can have it. It's deciding what it needs to do for the skill. Step four, it's gonna actually build out the Airtable database. It's gonna create a test image. It's gonna upload it to Google Drive. It's gonna create a test Google Doc. It's gonna add that record to Airtable. It's gonna test everything and then delete it. And then it's gonna commit everything back into the POPbot so that it can use those skills in the future. And I'll show you how that works. And then it just says, this looks good to you, go ahead and go.

00:09:50.830 --> 00:09:51.950
So let's go.

00:09:52.350 --> 00:10:11.285
So it's creating that job. Alright. It looks like it was able to create the job. While it's doing that, we have a couple of minutes to just start talking a little bit about how all of this works. You can always track all of the jobs over here in the swarm. We're gonna see that the job is running and we can also click through on this job to GitHub,

00:10:11.285 --> 00:10:15.045
which is where all of the code for your PopeBot will exist.

00:10:15.285 --> 00:10:18.645
And the reason why we do this is because all coding projects

00:10:18.850 --> 00:10:47.325
use Git or some version of Git, which is version control. It keeps track of all of your code. It keeps track of all of the changes. And that's especially important with a self improving bot because you want to be able to track what it changes, validate it, confirm it so that you know what your bot is actually doing. And so we use git to do all that. And then once the action is actually finished, once it has gone through everything, it's going to submit that all back to GitHub so that you can verify it. Now all of this is configurable.

00:10:47.630 --> 00:10:57.230
So if you want your bot to come up with new skills without any validation or any review, you can do that. That's all configurable. But I definitely recommend in the beginning,

00:10:57.390 --> 00:11:07.935
you review everything that it's doing so that it doesn't do something that you didn't intend. And one thing to note here in the system here is that when something finishes, you'll see it in notifications.

00:11:08.015 --> 00:11:09.935
I was doing a little bit of testing earlier,

00:11:10.575 --> 00:11:48.350
and it's gonna show you the changes it made, the steps it went through, what went well, what didn't go well. If there are pending code changes, it's gonna show you right here. You can click on that and it's gonna show you the pull request. Once it's done with this job, we're gonna see that same thing. If you wanna get support, you can go ahead and click that link here. And again, you have all of your other chats down here. So we'll be patient as this job runs. You can always click into it, see what's going on. I'm currently using a new feature where the job is being completed by Claude Code, and it's using my Claude Max subscription. Based off of the latest comments from Anthropic, as long as you're using your Max subscription with Cloud Code specifically,

00:11:48.510 --> 00:12:33.175
you should be good to go. What they don't want you doing is using your Cloud Max subscription in other products or directly with the API. So we'll come back to the swarm, see how we're doing. Looks like it just finished. So first, I'm just gonna jump over to the PopeBot. Cool. Looks like we've got a test image here and a test blog. Let's jump over to Airtable. Remember this content table didn't even exist. Now if I click on it, we've got the title, the Google Drive URL for the image, and the document URL, and the date. And it looks like we have a pending change as I mentioned. So if you come here, we're gonna see that we have the pending change. And this is the part you have to remember to do. So if you wanna approve things, you gotta approve it. Right? It's easy to do. So don't get overwhelmed by these different things. GitHub is not hard to use.

00:12:33.575 --> 00:12:58.585
I'm trying to make it as simple as possible. And if you run into issues, let me know so I can make it even easier and easier. But if I click on this pending change and then I come to files change, I can always see what it changed. And now let's take a look because this is pretty cool. We also have the Cloud Code session here. So I can see exactly what it did and how well it did, how many tokens it took, and all that stuff so that I could always improve things as I go. Here you can see it activated

00:12:58.585 --> 00:13:12.380
four skills and then here we can see that it created the Airtable skill and I always recommend people just kind of take a look at what it's doing. This is a skill. You can look over the skill and review what it did. But again, if we come here, it's as easy as this. You click on the pull request,

00:13:12.620 --> 00:14:08.960
you just scroll down, you can read the review here, what it did, and then all you do is come to the bottom and you just say squash and merge. Don't worry about those terms, but I will explain them in future videos. I wanna make sure people don't feel intimidated by some of these things. You don't have to know all of these different things in order for this to work. So now once you submit that, what's gonna happen is if you come back to your swarm, you're gonna see a rebuild event handler fire off. And that all that means is that the code has been updated. And so we actually have to update this interface, this chat interface that we're using right here. And it takes a few minutes and while that's happening, it's possible that if you do a refresh, you end up getting a four zero four error. That's just your site rebooting after it got the new files. And by the way, I have some other YouTube videos that I just published that go a little bit more into that side of things. This video is really more focused on creating a new skill. But again, if you want support, just click there and you'll be able to get it. And again, if you ever wanna see exactly what's going on, just click through. You can go inside,

00:14:09.120 --> 00:14:25.505
just watch what it's actually doing. It's actually rebuilding the site right now. That means in just a few seconds it's going to do the restart. I'll try to catch it while it's doing that so that you can see what that would look like so it doesn't catch you off guard. It looks like it finished. I might not have caught it. But now if I come back to the chat and I just ask,

00:14:26.900 --> 00:14:34.020
we can see that it has all these new skills. Alright. So now I wanna show you something cool. I thought ahead a bit and I have this YouTube transcript

00:14:34.020 --> 00:14:58.700
skill that you can use to download your own videos transcripts and make sure you're only using the API to download things that you own. But we can use this to download the transcript and create a blog and create an image and then upload that back to Airtable. So I'm gonna jump back to a new chat. I'm gonna quickly jump over to YouTube. I'm gonna grab my most recent video, one that you should definitely check out. Shows you a little more of the back end of this tool. Then I'm just gonna say,

00:14:59.660 --> 00:15:01.740
create a blog

00:15:02.060 --> 00:15:03.980
from this YouTube

00:15:04.300 --> 00:15:05.180
video

00:15:05.765 --> 00:15:07.365
by grabbing

00:15:07.685 --> 00:15:09.125
the transcript

00:15:09.285 --> 00:15:11.205
and then generating

00:15:11.205 --> 00:15:12.405
an image

00:15:12.725 --> 00:15:14.725
from the blog

00:15:14.725 --> 00:15:15.605
content,

00:15:15.845 --> 00:15:20.245
upload the image and blog to Google Drive

00:15:21.020 --> 00:15:23.900
and link it to Airtable.

00:15:23.900 --> 00:15:39.215
And just to make it extra verbose, I'm just gonna give it the link. And of course, you can set up your skills in such a way where you don't have to tell it as much, but then you have to give that skill a little bit more information. That skill that we've created was a little more generic, so we're just gonna give it as many details as possible. So then I can go ahead and just

00:15:39.775 --> 00:15:40.735
run this.

00:15:41.055 --> 00:15:46.415
It's gonna come up the plan. I can review it and tweak it. So it looks good. So we'll let it go.

00:15:46.895 --> 00:16:15.350
It's gonna create that job. It's gonna take a few minutes and again you can always check things out over here on the swarm. Agent is working. If you click through it's gonna take you back to GitHub of course. I wanna integrate all of this into the pop out as well so that you can see everything from here. When it's done in this case, we won't necessarily have to approve anything because it's not changing itself. It's not creating new skills. You only need to do that when it's actually creating a new skill and changing its own code. In this case, it's just generating some material

00:16:15.510 --> 00:16:51.680
and putting it into Airtable. So there's no code changes here, so you don't need to approve anything. And again, in previous videos, I do show you how you can turn that approval off or selectively decide what it can change and what it cannot without approval. Make sure you like and subscribe to this video. I've got this insane feature right here. I'm not gonna turn it on now. You're gonna have to wait till the next video, but it is gonna blow your mind. If you think this is cool, you ain't seen nothing yet. Make sure to like and subscribe. And by the way, thank you so much guys for all the support thus far. It's been super fun working with you guys and creating all these videos. Can't wait to see in the next one. Alright. Looks like it finished up here. Jump back over to Airtable.

00:16:51.920 --> 00:16:52.240
Alright.

00:16:52.815 --> 00:17:04.735
We've got our new blog based off of the actual YouTube video. Here is the article. It created an MD file as agents do. Open it with Google Docs. So here's the entire

00:17:04.975 --> 00:17:08.335
blog from my own YouTube video and then also

00:17:08.530 --> 00:17:09.570
the image.

00:17:09.810 --> 00:17:10.610
Nice.

00:17:10.610 --> 00:17:20.290
And like I said, no pending changes because we didn't make any code changes. We just let the agent do something. Alright. So now let me show you how to actually install this. The link is gonna be in the description below.

00:17:20.530 --> 00:17:23.890
Try not to let yourself get too intimidated by GitHub

00:17:24.185 --> 00:17:27.065
and all these instructions and all the possibilities

00:17:27.225 --> 00:17:27.945
because

00:17:28.025 --> 00:17:59.685
this system actually is able to do a lot. Okay? But I've set up the setup instructions to be as easy as possible, and I'm gonna try to make them easier and easier, so keep giving me your feedback. And if you run into what you think is a bug, you can always come up here in GitHub and add an issue there. I've been active there fixing things as they come up. Now there are a few programs that you need to have installed ahead of time. If you don't have these installed, go ahead and do that. If you're doing a local install, you're gonna need this program right here. Your internet has a firewall that does not allow the cloud, in this case GitHub,

00:17:59.685 --> 00:18:02.005
to connect to your local computer.

00:18:02.245 --> 00:18:03.365
When you install this,

00:18:03.605 --> 00:18:46.570
it gives an endpoint here that GitHub will be able to talk to and interact with so that it can work with your POPOP. Now if you deploy this in the cloud or you use this long term, there are other ways of doing that. You can just configure your home router to allow it through, but that takes a little bit more effort. So for just local testing, this is a great option and it's free. So now you're gonna need to open up your terminal whether you're on Mac or Windows. I'm gonna CD out of my existing pop up. You can just copy this right here, drop it just like that. Now you're gonna leave it just like this. I'm gonna change it just because I'm gonna be pulling down a beta version. Now you know how to pull the beta versions as I'm working on them, but I don't want you to change that. By the time you see this video, it will be up to date.

00:18:47.455 --> 00:18:52.735
Go ahead and run that. Gonna grab all the files and do the install, install the dependencies.

00:18:52.815 --> 00:18:56.015
So we're ready to go. We're just gonna follow the instructions.

00:18:56.415 --> 00:18:57.375
NPM

00:18:57.375 --> 00:18:58.655
run setup.

00:18:59.055 --> 00:19:24.365
You wanna go ahead and name your project. It's gonna default to the directory that you created. Feel free to take a moment and read the instructions as we go. If you don't understand anything, jump into chat GPT or cloud and ask it what it's doing. We're gonna open up a git Hub repo creation page. This is gonna create the repository for your bot. You wanna leave all these settings as is, especially private. Create the repository. The next step is gonna ask for this, so I'm gonna grab it now. I'm gonna copy. Gonna drop in the URL here.

00:19:24.880 --> 00:19:32.800
Then we need to get a token from GitHub with all of these permissions. You can go ahead and allow it to just open up the page for you. The

00:19:33.440 --> 00:19:35.280
POP Bot demo.

00:19:35.360 --> 00:19:37.760
I'm gonna go ahead and select only specific

00:19:37.760 --> 00:19:38.960
repositories,

00:19:39.040 --> 00:19:39.680
my agent.

00:19:40.225 --> 00:19:46.625
And now you'll need to just have this open so you can see because we have to add these all here. Actions,

00:19:48.465 --> 00:19:49.505
workflows,

00:19:51.105 --> 00:19:52.385
pull requests,

00:19:53.825 --> 00:19:54.465
content,

00:19:56.520 --> 00:19:57.720
administration.

00:19:59.480 --> 00:20:01.800
And these all need to be read write.

00:20:02.600 --> 00:20:06.360
That's why I only gave a permission to this particular repository

00:20:07.240 --> 00:20:12.135
just for safety. We also need metadata, but that's always there. So 12345.

00:20:13.095 --> 00:20:15.095
12345.

00:20:15.095 --> 00:20:17.095
We're good to go. Generate the token.

00:20:18.215 --> 00:20:20.215
Grab that. Drop it here.

00:20:21.495 --> 00:20:37.440
Now we need to configure which LLM we're using for the Popebot. You can use Claude or GPT or Gemini. You can even use local models. I'm gonna go ahead and use Claude. I'm gonna use Sonnet 4.6 for the chat. We're gonna open up the Anthropic API page,

00:20:37.905 --> 00:20:41.185
create a new key, the poke button add.

00:20:41.185 --> 00:20:42.705
I'm gonna copy that key.

00:20:44.705 --> 00:21:00.680
Now it's gonna ask you this question here which is, do you wanna use a different LLM for the jobs? So if you think about the way this system works is you had the chat. We were working in the chat, But the chat launches these jobs. And we have an LLM that's helping us plan, but we can set a different LLM

00:21:01.000 --> 00:21:06.600
for the jobs. And in this case, what I'm gonna do is I'm gonna use my Claude Max subscription.

00:21:06.600 --> 00:21:09.505
So I'm gonna say yes. I wanna use a different LLM

00:21:09.505 --> 00:21:10.625
for the jobs.

00:21:11.345 --> 00:21:15.025
I'm gonna use Claude. I'm gonna use Opus 4.6.

00:21:15.025 --> 00:21:16.785
And I do have a

00:21:17.105 --> 00:21:19.265
Max subscription, so I'm gonna say yes.

00:21:19.745 --> 00:21:41.615
And then you can just drop your token there. Just gonna paste that right in here. Then it's gonna ask you if you wanna go ahead and enable Brave Search. They used to have a free plan. So this is a paid service. But what it allows your agent to do is search the web. Just makes your agent more powerful. You don't have to have it right now. So you can go ahead and say no. I'll say no just for the install. Now here's where we have to put in our URL

00:21:42.015 --> 00:21:57.580
for our bot. And so now here's where we're gonna use that ngrok command. I've already set up ngrok, so you're gonna wanna set up your free account and get that going. And once you have installed that and you're ready to go, open up your terminal, you just come here and you type NgrokHTTP

00:21:57.820 --> 00:21:58.380
80.

00:21:58.700 --> 00:22:07.585
And remember, this is just a temporary solution. You don't have to do it this way long term. But to get up and running quickly, you're gonna grab that URL, gonna come back, you're gonna drop that here.

00:22:08.145 --> 00:22:24.770
It's gonna set everything up for you, set up the secrets, all your variables, it's gonna build the system. It buzzed right by but if you come back up here, gonna see that it actually should launch your server and you just and you can access it just by using this URL. Now keep in mind, it might take a few seconds for it to load the first time.

00:22:28.290 --> 00:22:35.185
When it first boots up, you're gonna create your admin account. Of course, you're gonna give it a secure password. You're gonna create that account, then you'll log in,

00:22:36.225 --> 00:22:41.745
and there you're ready to roll. Your system's totally built out, ready for your first message.

00:22:42.225 --> 00:22:50.880
And now if you run into any issues, just make sure you click that link for support. And if you need more than support and you wanna actually learn how to build cool stuff like this, make sure to jump into the AI architects.

00:22:50.960 --> 00:22:54.080
Right now, I'm building out a brand new for 2026,

00:22:54.080 --> 00:22:56.960
an entire new course that takes you from beginner

00:22:57.040 --> 00:23:28.540
to an advanced AI product engineer. Even if you're an absolute beginner, I'm gonna help you in a way that doesn't overwhelm you step by step all the way to building cool stuff like this. Plus we've got calls every single day and I personally answer all of your questions on Tuesday and Wednesday. I also drop all of the newest releases here first before everyone else. And I also do these working sessions in addition to the calls you just saw where I go in-depth on how to do more complex things on all sorts of different subjects. I hope to see you inside the community. Either way, hope you enjoyed this video and I'll see you on the next one.
