<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kuber Jain</title>
    <description>The latest articles on DEV Community by Kuber Jain (@kuber_jain_511bfeb1233f24).</description>
    <link>https://dev.to/kuber_jain_511bfeb1233f24</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3647020%2F4eba7d24-b07d-4ced-983d-12bc7b30c2cd.jpg</url>
      <title>DEV Community: Kuber Jain</title>
      <link>https://dev.to/kuber_jain_511bfeb1233f24</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kuber_jain_511bfeb1233f24"/>
    <language>en</language>
    <item>
      <title>From Prompting to Planning: My Week with AI Agents</title>
      <dc:creator>Kuber Jain</dc:creator>
      <pubDate>Mon, 08 Dec 2025 22:19:05 +0000</pubDate>
      <link>https://dev.to/kuber_jain_511bfeb1233f24/from-prompting-to-planning-my-week-with-ai-agents-15n8</link>
      <guid>https://dev.to/kuber_jain_511bfeb1233f24/from-prompting-to-planning-my-week-with-ai-agents-15n8</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh0nh8hvwp4hewjv04vfg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh0nh8hvwp4hewjv04vfg.png" alt="From Prompting to Planning: My Week with AI Agents" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I just wrapped up the 5-Day AI Agents Intensive with Google and Kaggle, and honestly, it completely flipped my script on how AI actually works. I went in thinking I was pretty good at prompt engineering, but I came out realizing that "prompting" is only about 10% of the puzzle. The real magic happens when you stop asking the AI to give you an answer and start teaching it how to act.&lt;/p&gt;

&lt;p&gt;Here’s the breakdown of what I picked up and how I built my project, the Oracle Agent, along the way.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The "Aha!" Moment: It’s Not a Chatbot, It’s a Decision Engine&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Day one was a reality check. We looked at how "Agentic" architectures differ from regular apps. I finally understood that an agent is a system that can basically go: "Okay, I see what you want, let me make a plan, go use this tool, see what happened, and then come back to you." My understanding evolved from seeing AI as a high-tech encyclopedia to seeing it as the "manager" of a workflow. This led directly to my project. I didn't want to build another bot that just spit out horoscopes. I wanted an autonomous system that could crunch numbers perfectly and give advice that felt like a real session.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Tools That Stuck With Me&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A few concepts from the labs really resonated with me because they solved real problems I’ve run into before:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;-Stop trusting the AI with math:&lt;/strong&gt;&lt;br&gt;
On day two, we talked about "Taking Action." I realized that if I want my agent to do numerology, I should never ask the LLM to calculate the numbers. It’ll hallucinate the math every time. Instead, I built Custom Tools—Python functions that do the exact math—and taught the agent how to call them. Now, the Agent does the talking, but the code does the calculating.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Context is everything:&lt;/strong&gt;&lt;br&gt;
Day three was all about memory. Nobody wants to repeat their birth date five times in one conversation. Learning how to build Stateful Sessions was a game-changer. It allowed the Oracle Agent to remember who you are across multiple turns, so you can ask follow-up questions about your career or relationships without starting from scratch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Open the Black Box:&lt;/strong&gt;&lt;br&gt;
Day four was about observability. In the past, if an AI gave a weird answer, I just shrugged. Now, I use tracing and logging. In my project logs, I can see exactly when the agent decides to trigger a tool versus when it's just processing text. It makes the whole system feel reliable instead of random.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Learning by Doing (The Labs)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The hands-on labs were where things got messy in a good way. I learned that the hardest part of building an agent isn't the AI part—it's the Orchestration. You have to be very clear about how the agent observes the world.&lt;/p&gt;

&lt;p&gt;In building the Oracle Agent, I spent more time thinking about the "workflow" than the "prompt." It was about setting up that loop: &lt;br&gt;
&lt;strong&gt;Input -&amp;gt; Plan -&amp;gt; Act (Math Tool) -&amp;gt; Observe (Result) -&amp;gt; Synthesize.&lt;/strong&gt;&lt;br&gt;
That's the blueprint for building things that actually work in the real world.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Final Thoughts&lt;/strong&gt;&lt;br&gt;
This intensive felt like graduating from "using AI" to "building with AI." The Oracle Agent is just a start, but it uses everything the course threw at us: deterministic tools, short-term memory, and a structured multi-turn flow.&lt;/p&gt;

&lt;p&gt;I’m walking away with a new rule of thumb: &lt;strong&gt;Don’t just prompt the model—give it a plan and the tools to pull it off.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.kaggle.com/competitions/agents-intensive-capstone-project/writeups/new-writeup-1764199689741" rel="noopener noreferrer"&gt;Link to my capstone project - The Oracle Agent&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Please let me know in comments if you have any questions/thoughts or share your experience.&lt;/p&gt;

</description>
      <category>googleaichallenge</category>
      <category>ai</category>
      <category>agents</category>
      <category>devchallenge</category>
    </item>
  </channel>
</rss>
