Hey, there, welcome to the AI Coding Summit. My name is Ado Kukic and I am a community manager at Anthropic. And today, we're going to talk about agent decoding, what it is, and concrete patterns that you can use today to get dramatically more done with Cloud Code. And I promise I'm going to try to keep this as practical as possible. And everything I show you today, you're going to be able to go and try in your terminal in about five minutes. So let's get into it.
So the obvious first question is, what makes something agentic? And to me, it really comes down to this loop of plan, act, and verify. How most people use AI for coding today is they will ask their LLM a question, they'll get some text output back, and they might copy and paste it into their IDE and see if it compiles. And if it doesn't, they'll paste the error back in, get some more output, and try again. You're basically playing telephone with a very smart AI. An agentic tool is fundamentally different. When you give it a task, it doesn't just spit out code and hope for the best. It plans first, it reads the code base, tries to understand the context, and figure out what files matter, and drafts an approach.
Then it acts, writes the code, runs commands, uses tools, and makes actual real changes to your project. And then finally, it verifies what it did. It's going to run the test, it's going to try to build the application, it's going to read the error output or the logs, and if something's broken, it is going to try and fix it. And if it doesn't, it's going to loop back again, it's going to replan, react, and re-verify over and over again until the job is actually done. And if we look at each of the phases, the planning phase is going to use a certain set of tools like read, grep, and think to actually try to understand the problem. In the acting phase, it's going to write new files, edit existing files, run bash commands, and access additional tools through MCP servers. Verifying finally is going to use those same tools to check its own work. And if we look at the glowing dots on this slide, bouncing between the three nodes, that's really what is going on with Cloud Code. It continues this cycle until the task at hand is complete.
Comments