Modern Creator
Duncan Rogoff | Learn Claude Code · YouTube

Claude Code's /launch-your-agent Skill: Idea to Live Managed Agent in Minutes

A 15-minute walkthrough of Anthropic's open-source skill that interviews you, writes your agent definition, and deploys a self-improving automation to the cloud — with an honest post-mortem on a $12 first run.

Posted
2 days ago
Duration
Format
Tutorial
educational
Views
40.7K
1.1K likes
Big Idea

The argument in one line.

The /launch-your-agent skill turns the hardest parts of building a cloud-hosted AI agent — loop design, infrastructure, scheduling — into a conversation, so you reach a self-improving automation without writing a single line of code.

Who This Is For

Read if. Skip if.

READ IF YOU ARE…
  • You use Claude Code and want workflows that run on a schedule without you babysitting them.
  • You have daily manual research or digest tasks (news sweeps, competitor monitoring) you want to automate.
  • You have heard the word agent and want a concrete, no-infrastructure path to building one.
  • You want to understand the loop model of AI development before diving into custom agent frameworks.
SKIP IF…
  • You need production-grade agent infrastructure with custom tooling — this is a fast-track starting point, not an enterprise pipeline.
  • You are not prepared for API costs that can spike quickly; the demo first run cost $12 on 27 million tokens.
TL;DR

The full version, fast.

Anthropic's /launch-your-agent skill removes the three hardest parts of building an AI agent: defining the loop logic, spinning up cloud infrastructure, and setting a run schedule. The skill interviews you to extract goal, context, and a binary pass/fail success rubric, then auto-deploys a Claude Managed Agent to Anthropic's servers — always-on, with persistent memory that improves across runs, no platform fees beyond API cost. The video's honest first-run post-mortem — 28 minutes, $12, and a failed rubric because Reddit was inaccessible in the cloud sandbox — surfaces the one rule that would have prevented it: validate your data sources before committing to cloud deployment.

Free for members

Chat with this breakdown — free.

Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.

Create a free account →
Chapters

Where the time goes.

00:0000:34

01 · Intro and promise

Hook plus overview: the skill, the concept, the live demo.

00:3401:22

02 · What is an AI agent?

Agent equals employee with tools. Chat is just words. Real automation requires an agent, not a better prompt.

01:2202:02

03 · What is a loop?

Boris Czerny (Claude Code creator) clip: his job is now to write loops, not to prompt Claude.

02:0202:57

04 · Goals vs. tasks

Loop = give Claude a goal, not a task. Claude finds a better path than explicit instructions.

02:5703:46

05 · The self-improving feedback loop

5-step cycle: receive goal, think, pick tool, do it, check results, repeat until pass.

03:4604:33

06 · Claude Managed Agents explained

CMA = Anthropic hosts the loop in the cloud. Always-on, schedulable, no server, no platform fee.

04:3304:58

07 · Persistent memory

Attach a memory store and the agent reads what it learned last run before starting the next one.

04:5805:45

08 · How the skill works

Skill interviews you (goal, context, success), makes all API calls, creates agent, sets schedule. Zero code written.

05:4506:18

09 · Installing via GitHub

Paste GitHub link, tell Claude to install globally, restart desktop app. Takes seconds.

06:1807:07

10 · Bonus wrap-up skill

Second skill also installs: congratulates user, creates HTML overview page, suggests 1-2 next upgrades.

07:0708:14

11 · Live demo begins

Runs /launch-your-agent with no upfront brief. Skill interviews with personalized examples from past conversations.

08:1409:57

12 · Designing the daily digest

Chooses daily AI news digest from Reddit. Skill drills down on deliverable, niche, sources, voice.

09:5711:22

13 · Defining success criteria

Skill drafts binary rubric: 5 items, real Reddit links, hook angle, why-it-matters, trending, no dupes, clean markdown.

11:2213:23

14 · Agent deploys live

API key confirmed, model swapped Opus to Sonnet, agent builds. First run fires on platform.claude.com.

13:2315:07

15 · Results and lessons learned

28-min run, $12, 27M tokens. Reddit inaccessible in cloud sandbox — rubric failed. Lesson: validate sources first.

Atomic Insights

Lines worth screenshotting.

  • An agent has tools; a chat has words — that single distinction determines whether AI can do recurring work or just answer questions.
  • The creator of Claude Code says his job is no longer to prompt Claude — it is to write loops that prompt Claude on his behalf.
  • Give Claude a goal, not a task: a goal unlocks the model's judgment about the best path; a task just executes your prescribed steps.
  • Claude Managed Agents run in Anthropic's cloud on a schedule — no server to maintain, no platform fee, just API cost.
  • A memory store makes each agent run smarter than the last — it reads what it learned, applies the adjustment, and iterates automatically.
  • The interview step is the most valuable part of the skill: 10 minutes defining success criteria upfront saves hours of bad output later.
  • A binary pass/fail rubric is what makes the loop self-improving — without a checkable definition of done, the agent cannot grade its own work.
  • Validate every data source with a quick manual test before deploying a cloud agent; the demo burned $12 and 28 minutes because Reddit access was never confirmed.
  • A $12 first run could have cost under $1 with a 2-minute source validation step before launching the managed agent.
  • The wrap-up bonus skill auto-generates an HTML agent overview dashboard and surfaces 1-2 recommended next upgrades — a baked-in improvement cadence.
  • Agents get better every run because the memory store reads the previous session's output before starting the next one.
  • The no-code claim is real: GitHub install, API setup, environment configuration, and scheduling all happen inside a Claude conversation.
Takeaway

Give Claude a goal, not a task — then let the loop run.

WHAT TO LEARN

The shift from prompting to loop-writing changes who owns the quality of the output — and the /launch-your-agent skill is the fastest on-ramp to that shift available today.

  • An agent differs from a chat in one concrete way: tools. The moment an AI can search, write files, and call APIs, it can do recurring work rather than just answering questions.
  • Give Claude a goal, not a task. A goal lets the model find a better path than you would have prescribed; a task just executes your explicit instructions.
  • A binary pass/fail rubric is what makes the loop self-correcting. Without a checkable definition of done, the agent has no signal to grade its own output.
  • Persistent memory turns a one-shot agent into a compounding one: it reads what it learned last run, adjusts, and improves without you re-briefing it each time.
  • Validate every data source with a 2-minute manual test before committing to a cloud-hosted agent. The demo burned $12 and 28 minutes because Reddit access was never confirmed upfront.
  • The no-code path is real: install via a pasted GitHub link, let the skill interview you, and the entire API setup, environment, and schedule happen inside the conversation.
Glossary

Terms worth knowing.

Claude Managed Agent (CMA)
An AI agent hosted on Anthropic's servers that runs a defined loop on a schedule, without requiring the user to maintain a server or pay platform fees beyond API costs.
Loop
A self-repeating AI workflow where the model receives a goal, picks tools, executes, checks its own output against a rubric, and retries until it passes — replacing the older model of prompting for a single response.
Memory store
A persistent storage layer attached to an agent that records what the agent learned each run, so subsequent runs start with that accumulated context and improve automatically.
Pass/fail rubric
A binary checklist of concrete, verifiable criteria that defines what done looks like for an agent run, enabling the loop to grade its own output and retry if it does not pass.
BYOK (Bring Your Own Key)
A model where the user supplies their own Anthropic API key to run the agent, keeping costs transparent and under their control rather than paying through a platform intermediary.
Resources

Things they pointed at.

Quotables

Lines you could clip.

01:15
If you want AI to do recurring work for you without you touching it, you need an agent, not just a better prompt.
Clean standalone claim, punchy, no setup neededTikTok hook↗ Tweet quote
01:40
My job is to write loops.
Boris Czerny (Claude Code creator) — authority quote, counterintuitive, 6 wordsIG reel cold open↗ Tweet quote
09:50
You can spend ten minutes of time now to get this part right and it's gonna save you hours of work later.
Universal principle about upfront definition, broadly relatablenewsletter pull-quote↗ Tweet quote
14:15
It was like $12 just to run this.
Honest failure moment, creates curiosity about what went wrongTikTok hook↗ Tweet quote
The Script

Word for word.

Read-along

Don't just watch it. Burn it in.

See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.

metaphoranalogystory
00:00Anthropic just released a free open source skill for Cloud Code that will completely change the way you automate your work and build AI agents. This is the launch your agent skill, and it is designed to take you from idea to a live managed agent in just a couple of minutes. In this video, we'll talk about what the skill does, how it represents the new way of writing code with AI, and how to install it.
00:24And at the end, we'll even demo it live on a real use case. There's even one core feature of this skill that makes creating AI agents incredibly simple even for beginners.
00:34So to be able to use the launch your agent skill, there are really three basic things that you need to understand. First is really like what is an AI agent? And basically, you can just think of an AI agent as an employee.
00:45You give it a task or something to do, it goes ahead, it performs that task, and it comes back with a response. There is a fundamental difference between agents and just like simple clawed chat. Basically, agents have tools.
00:57A chat is just words. So an agent can search the web, it can write files, it can run code, it can call APIs, it chooses itself which tools to use at each step, and it just handles everything on its own. This is essentially how real automation works.
01:11If you want AI to do recurring work for you without you touching it, you need an agent, not just a better prompt. So that's the first thing. The second thing is you need to understand what a loop is.
01:22A loop is the new way to write code with AI, but don't take it from me. This is Boris Czerny. He is the creator of Claude Code, and this is how he says he writes code now.
01:32And so for me, the way that I coded a year ago
01:36was I wrote code with some autocomplete in IDE. At that point, was running maybe five, ten quads in parallel, and my coding was prompting quad to write code.
01:45Now it's actually leveled up, I think, again to the next layer of abstraction where I don't prompt quad anymore. I have loops that are running. They're the ones that are prompting Claude and figuring out what to do.
01:54My job is to write loops. He literally says, I don't prompt Claude anymore.
01:58My job is to write loops, and, basically, Claude then just prompts itself. So this is at the core of the launch your agent skill. You can think of a loop as giving Quad a goal and not a task, and this is why it gets so much more powerful because Quad often knows a better way to accomplish your goal than if you were to give it some sort of like explicit set of instructions.
02:20So the loop is what makes an agent different from a chat. It's going to run the same cycle over and over again until the task is done. So you're going to give Claude a goal.
02:30Claude will think about what to do next. It will decide which tools it needs to actually accomplish that goal. It's going to try its best to do it on the first try.
02:39It's going to check itself, so it's going to read its own results. And then from there, decide what to do next. Like, are the results good enough?
02:47If they're not, go back to step two, think about how they could be better, repeat this process, and then only if the results are actually good enough and pass the test, then it's going to present the response back to the user. So you can think of it as this self improving feedback loop that you as the human are no longer responsible for the results of Claude, like it's responsible for its own results.
03:07And so basically, the launcher agent skill is designed to help you as the human write good quality loops. And so really there are only three things you need to give the loop for it to understand. So one is context.
03:18Is there anything you already know that might be helpful for the agent to know going into this? Like is there any information about your personal preferences or like a database of information that exists? The second thing is a goal.
03:29Like, what is it that you are actually trying to achieve? And then three, success. Like, what does success look like?
03:35What is your ideal outcome from all of this? But it gets even better because there is a fundamental problem with loops in general is that you sort of have to like type in slash loop into Cloud, and then you have to sit there and wait for it to run. But the launcher agent skill will actually build what's known as a CMA or a Cloud Managed Agent.
03:51And so it basically just means that Anthropic is going to run the loop for you. It's going to host it in the cloud on their servers, so it's always on. So you can schedule it, like, as a task to run whenever you want, and it doesn't matter if you're at your computer, if your computer's on, wherever you are, it is always on in the cloud in Anthropic servers.
04:10What's also cool about this is that there are no additional platform fees. You just pay the API cost to use the thing. And so the old way you would do it is you would have to build this loop yourself.
04:19You'd have to like fire up your own server. You'd have to troubleshoot your own errors, wire in all the tools and all of that. But basically, this skill is going to allow you to create these Quad managed agents really effortlessly and let quad and anthropic handle the workload.
04:33The other benefit is you can attach this thing called a memory store, and so your agents will actually remember things across the different sessions or across the different runs. So your agent is going to read what it learned last time, and so it's actually going to get better every single time the loop runs. And so this is how the launcher agent skill works, and the thing highlighted in red is the biggest unlock and what makes it super powerful even for beginner users who have never built agents before.
04:58So all you have to do is run Launcher Agent inside of Cloud Code. We're gonna set this up in a second. But then this part, the skill is going to interview you.
05:06It's gonna ask you what it should do and what success looks like because the agent won't know if it's done, if it doesn't understand what it means to be successful. Next, it's going to make all the API calls.
05:17It's going to create your agent. It's gonna spin up the cloud environment. It's gonna set the schedule that you want.
05:21You're literally not gonna have to do any of this. So from that point on, basically, like, you no longer have to be inside of Cloud Code. The managed agent takes over, it's going to run the loop, it's going to grade the output against your success criteria, and it's literally just going to repeat until it passes.
05:36And so you get the result of this without having to write a single line of code yourself. So now that you understand how awesome this skill is, let me show you how to install it and let's run a basic demo. What I love about Cloud Code is everything is just obscenely easy at this point.
05:50Like, literally, I'm just going to copy this link to the GitHub repo. I'll leave a link in the description where you can access this. It's open source.
05:56Totally free. I'm sure they're gonna be improving this over time. Come back into Claude and I'm just gonna say install this skill globally.
06:04Just going to paste in the link to the GitHub repo. Claude says, I'll look at that repo to figure out how it's meant to be installed, then install it globally. So this just took a couple seconds and it installed the launch your agent skill and a surprise bonus skill, which is the wrap up skill.
06:18So we can open this up inside of GitHub and come into wrap up to understand what this skill actually does. It basically just closes out the project and it's kind of just a nice way for you to wrap things up. Okay.
06:28One, it's going to congratulate the user, which I think is funny. Two, it's actually going to create an overview page of everything that you built. And then actually the thing that I think is the most impactful is this here's what's next piece.
06:39So it's actually going to pick one to two upgrades that you could make to upgrade your agent and it's gonna tell you about them. So everything is now registered and ready to go. There is just one thing to note that you're going to need an Anthropic API key from your own account.
06:51So in order to get access to the new skill inside of the desktop app, you need to restart it. So I'm just gonna quit and open this back up. Okay.
06:58So I'm back. If I type in slash and then type in launch, you can see now we have the launch your agent skill all ready to go. So let's test it out and see how awesome it is.
07:08I'm not gonna give it anything else. I'm just gonna run the skill because the skill is supposed to interview me to figure out what type of agent I wanna build today. So I thought it would be fun just to try this on a simple use case.
07:17So this is pretty cool. It says welcome. Here's what we're gonna do together.
07:20Figure out what you want an agent to do, get a first version live on your own Anthropic account today, and then grade it against your own definition of good and improve it from there. And if it's the kind of thing that should run on a clock, we'll put it on a schedule so it works without you. Pretty cool.
07:35So here are a few examples of what a managed agent can be just to set the range. I really like this because this actually personalized these for me based off of past conversations I've had with Claude.
07:45So one is like a recurring digest or scan. This could run every morning, sweeps your sources, file some sort of report. I definitely already do a lot of AI news and competitor work, and it says this shape fits you well.
07:56Or I could set this up to be a data analyst, like hand it a CSV or an export and get back a narrative report with charts or what's changed or anything interesting that stands out. So for someone like me who creates content, maybe having a look at my YouTube analytics and make new suggestions. I want to try to keep this simple today, maybe not using a whole bunch of other API keys.
08:14I think option number one, the daily news digest is helpful. Maybe looking at Reddit or the news for interesting topics or trending news in my niche, coming up with some sort of LinkedIn post or a hook angle or something that might be relevant to my audience.
08:27Does this make sense? So one thing I like to do sometimes is I'll, like, I will ask Claude, like, if this makes sense, or I will tell it to ask me any other questions it might have. Because maybe I have some blind spots and I'm not able to articulate my idea very well, but Claude can actually help me figure things out.
08:42So cool. This is asking me to give it more information, like it is interviewing me so we can create the best possible agent. So a scheduled sweep that reads your sources and hands you something you can actually post, which is great.
08:52Tell me more in your own words, what would a great first version actually hand you each morning? But it didn't just leave this question like vague and open ended. It got way more specific.
09:01So like what's the deliverable? Like when I open it, what do I want to see? Do I wanna see a few raw trending stories with a link?
09:08Do I wanna see fully drafted LinkedIn posts ready to paste or somewhere in between? Then it asks me about my niche or audience. It knows I'm into AI.
09:15It knows I like building with Claude. Is that the lens that I wanna focus it through or should it be something else? And then what sources to use?
09:21Like, Reddit, are there any particular subreddits I should use? X competitor YouTube. What do you actually check each morning that this should replay?
09:28So is there anything in your life that you are doing manually every single day or once a week that Claude could take off your plate? For the deliverable, I think I'd like to see a combination, a story with a link, a hook angle, and then, yeah, why it matters to my audience, I think is really impactful, and basically what they might get out of consuming that content.
09:44For my niche or audience, you understand this niche pretty well. Sources, let's start just with the quad or quad code or anthropic subreddits. Cool.
09:52So here's what it has for me so far, and then it says it has three more quick questions for me to answer before it builds this out. And so why I love this interview process is because you can spend ten minutes of time now to get this part right and it's gonna save you hours of work later. So this lets me know that it basically understands the goal, but now it's asking me to more clearly define the outcome.
10:11So what does success look like? So it actually drafted this outcome rubric for me. So does the digest pass the test if exactly five items, each with a real Reddit post and working link, each item has a distinct hook angle in your voice, each item has a why it matters to your audience part built in, items are genuinely recent and trending, this is super important, you don't wanna be old news, There are no duplicate stories, and the output is a clean, scannable markdown file.
10:35This is awesome. So it asked me, does this look right? Do I wanna tighten anything about the voice, or do I wanna drop the trending check?
10:41But not this looks right to me. Do you have a past example of a digest you'd call great? I'm gonna say no.
10:45Use today's first run as a baseline because again, the whole idea is that this just improves over time the more it runs. And so basically, what time zone am I in? I'm on the West Coast in California.
10:54So right now, it's just checking to see if I have an Anthropic API key already set up. I know I do, so it's gonna find it. But if you don't have that set up, it's super easy, just come over to platform.cloud.com and sign in with your account.
11:07From there, you can just click on the left, into API keys, click create a key and you could just name this, you know, like my agent or whatever, click add, it's gonna come up with an API key, I'm gonna delete this so don't worry about it. And then all you have to do is copy this, go back into Cloud Code and say, hey, here's my API key.
11:22Cloud just came back and said everything I need is in hand, here's the whole thing as a plan, which is pretty cool. It gives me the agent in the CMA shape. We are setting up a daily AI digest using Opus 4.8.
11:32If you wanna change the model, you can tell it to do so. This is the environment it's in, any tools that it needs, like the desired outcome, the final deliverable, the schedule that it should run on, and basically anything we need to evaluate this. But we haven't done this yet because it hasn't run.
11:45This is what's not included in version zero, which we're setting up right now. But you can see it's already making a game plan for how to improve this in the future. So does this plan look right?
11:53I'm actually gonna say swap this to Sonnet because I don't think we need Opus for this, but otherwise, we are good to go. So this is awesome. Quad just went ahead and built everything for me.
12:02You can actually watch this live as it fires for the first time. You can see it actually built this managed agent for me inside of that same site platform.cloud.com. This is the system prompt that it built.
12:13If you go into sessions, these are the sessions. You can check as it goes on. This is the first session right now.
12:18These are all the calls that it's making. It's going to fix itself. You can see we encountered some errors, but we know Cloud's gonna fix it.
12:24The other thing it did is it built this nice little overview dashboard. So if you've been building like AIOS or AgenTic operating systems or whatever, this is a nice way to just check-in on your agent. So you can see this agent is launched and deployed.
12:37It's fully running. This is an HTML file that lives on your machine, so you can also just open this up in your browser. You could check on the outcomes or any of the next directions, and what's cool is that this will update over time as you make improvements.
12:49You can also see that we still have one running task, and this is basically just watching the loop and waiting for it to finish. And so I really do recommend if you wanna learn Cloud Code, like, come into these things that might seem confusing at first and just read what it's saying, and you can get a good understanding of what it's doing.
13:04We can see, like, I found two Reddit posts. I now have enough information to write the digest. Okay.
13:09The digest is written, and it's saved here. Right? Now we can see that all it's doing is it's actually just grading its own work.
13:15And so just by reading the response from Claude, you can actually learn a lot about how these systems work. So this is the moment of truth where we talk about the good, the bad, and the ugly. So this is the digest that the system produced.
13:26We can see it has five different articles, the story, a link, the hook angle, why this matters to my audience, etcetera, etcetera. That being said, transparently, we hit a couple of issues that honestly probably had to do a little bit with user error and a little bit with Claude not digging deeper before building. The main issue that we hit was in this Claude managed environment, it wasn't able to actually access Reddit directly.
13:47And so this thing took twenty eight minutes to run mostly because it kept getting errors when trying to access Reddit. So it actually was able to search the web and find a lot of really great relevant articles, but because it wasn't able to pull in the Reddit link directly, the system failed. Because if we come down here, we can see that one of the requirements was that each post linked to a real Reddit post.
14:07And so because we weren't able to pull those in, the system failed. And so I did spend a lot of tokens on this. You can see I spent like 27,000,000 tokens.
14:15It was like $12 just to run this. And again, like this actually really could have been avoided had we known going into it that we would have run into these issues with Reddit. So maybe before creating the managed agent, having the system actually check the individual pieces just to make sure that the theories are good behind the build before actually setting it up on the cloud.
14:33What's good about the system is that we have the core foundation in place, and this was sort of the whole point of running these managed agents in loop mode is that they are self improving with every run. With each run, we learn something new about how we can make an upgrade. And so now it's just asking me like, how do I want to fix the Reddit sourcing issue?
14:49Can I just use web search only and this will run-in like two or three minutes as opposed to thirty minutes with a bad response? And so just in setting this up for the first time today, I personally learned a lot of good lessons. If you wanna continue learning Cloud Code, just check the link in the description.
15:02If you wanna see how I built my own agentic OS, check out this video right here. I'll see
The Hook

The bait, then the rug-pull.

Anthropic quietly dropped a free open-source skill for Claude Code that collapses the entire agent-building stack — loop logic, cloud hosting, scheduling, memory — into a single conversation. Duncan Rogoff walks through the install, the concept, and a live first build: a daily AI news digest that turns into a $12 lesson about validating your sources before you deploy.

Frameworks

Named ideas worth stealing.

02:57list

3 Things a Loop Needs

  1. Context (what the agent already knows)
  2. Goal (what it is trying to achieve)
  3. Success (what done looks like — binary pass/fail rubric)

The three inputs required to give a Claude loop everything it needs to run autonomously.

Steal forAny time you are briefing an AI agent or setting up a recurring task
02:57model

5-Step Agent Loop

  1. Receive the goal
  2. Think about what to do next
  3. Pick a tool and do it
  4. Read the results
  5. Decide: pass? If not, repeat from step 2

The repeating cycle that makes an agent self-correcting rather than a one-shot prompt.

Steal forDesigning any agentic workflow or explaining how agents differ from chat
03:46concept

CMA vs. DIY Loop

Old way: build loop plus fire up server plus handle errors plus wire tools (months of work). CMA: skill interviews you plus API calls plus Anthropic cloud plus scheduled plus always on plus no platform fee.

Steal forPositioning the value of managed agent infrastructure over self-hosted loops
CTA Breakdown

How they asked for the click.

VERBAL ASK
14:30link
If you want to continue learning Claude Code, just check the link in the description.

Soft, low-pressure; points to Claude Code Club Skool community ($9). Delivered after honest failure disclosure, which adds credibility.

FROM THE DESCRIPTION
PRIMARY CTAWhere the creator wants you to go next.
OTHER LINKSAlso linked in the description.
Storyboard

Visual structure at a glance.

open
hookopen00:00
agent = employee
valueagent = employee00:34
Boris Czerny clip
authorityBoris Czerny clip01:22
CMA diagram
valueCMA diagram03:46
how the skill works
valuehow the skill works04:58
demo starts
demodemo starts07:07
success rubric
valuesuccess rubric09:57
agent deploys
demoagent deploys11:22
failure post-mortem
valuefailure post-mortem13:23
CTA
ctaCTA14:40
Frame Gallery

Visual moments.

Watch next

More from this channel + related breakdowns.

Chat about this