Skip to main content

Command Palette

Search for a command to run...

A Friendly Guide to Agentic AI

Updated
3 min readView as Markdown
A Friendly Guide to Agentic AI
M

I'm Maithri. I'm presently in my final year of my bachelors degree in technology. I enjoy building, making cool tech apps and sites that have a purpose and serve in helping and making our everyday lives a bit more exciting. Other than that, I enjoy travelling, singing, cooking, working out and cycling as well. I love reading novels and watching films. I am particularly a fan of fantasy, horror and scientific fiction books. My interests led me to start a blog and to share about my perspective of things. I do like to write, so, I thought of leading in like-minded individuals into this environment to explore and make sense of our interests.

Discover how agentic AI-autonomous, goal-driven systems go beyond prompting to independently plan, act, and adapt. Learn what it is, how it works, and how to build your first autonomous agent.


  1. What Is Agentic AI?

Forget auto-complete—this is auto-act. Agentic AI refers to systems that set goals, plan actions, learn from results, and execute tasks without constant human instruction. Unlike a passive AI tool, it's a proactive agent with "agency".

Why It Matters

  • Think Siri scheduling your flight, paying the cab fare, and emailing your boss to say “BRB”—all on its own.

  • Businesses are already using agentic AI for investing, automated customer care, and supply-chain decision-making.


  1. Tools vs. Agents vs. Agentic AI

Let’s clarify the terminology:

  • AI Tool: A function (e.g., grammar checker) that waits until you ask.

  • AI Agent: Can carry out a multi-step task (like a chatbot ordering dinner).

  • Agentic AI: The conductor of the orchestra—sets goals, prioritizes, delegates, adapts.


  1. How Agentic AI Works (Simplified)

  1. Goal Input — “Book me a trip.”

  2. Planner — Splits the goal: search flights, book hotel, confirm itinerary.

  3. Agents — Each sub-task gets its own AI.

  4. Orchestration — A director agent delegates, monitors, and loops feedback.

  5. Learning — Adapts to change (like rescheduling delayed flights).

Diagram:

             User Goal
                 ▼
            Planner Agent
          ↙     ↓       ↘
FlightAgent  HotelAgent  RideAgent
          ↖     ↓       ↗
         Feedback & Learning Loop
                 ▼
             Final Outcome

  1. Real-World Use Cases

  • Finance: BlackRock’s Asimov scans filings and suggests trades.

  • Commerce: Mastercard’s agentic commerce handles entire shopping flows.

  • Customer Service: Startups like Wonderful offer multilingual, always-on support.

  • Accounting: Intuit’s agents handle routine QuickBooks tasks for small businesses.


  1. Meet the Players

  • AutoGPT — Open-source pioneer for task breakdown.

  • Manus — Singapore-based LLM agent that writes and runs code.

  • Kruti — Indian agent that speaks multiple languages and books rides.


  1. The Perks & The Pitfalls

Pros

  • Frees you from repetitive tasks.

  • Learns and improves over time.

  • Can orchestrate complex workflows at scale.

Cons

  • Trust issues: Should it really have your bank info?

  • Responsibility gaps: Who’s liable for mistakes?

  • Security risks: Autonomous access can backfire.


  1. Build Your First Agent (Mini-Tutorial)

Tech stack:

  • LLM APIs (OpenAI / Anthropic)

  • LangChain or AutoGPT

  • Optional: basic RL and memory store

Quick start (Python):

from autogpt import AutoGPT

agent = AutoGPT(
    name="TripPlanner",
    objective="Plan a weekend trip to Goa within $300",
    tools=["flight_search", "hotel_booking", "currency_checker"],
)
agent.run()
  1. What’s Next?

  • Multi-Agent Systems — Collaboration and delegation among agents.

  • Societal Impact — Algorithmic norms, legal frameworks.

  • Human-in-the-Loop — Supervised autonomy for trust and safety.


Final Thoughts

Agentic AI is less about "tell me what to write" and more about "figure out how to do this by tomorrow." It’s the leap toward autonomous systems that act. Understanding it now gives you a head start on a future where AI isn’t just helpful—it’s collaborative.

Ready to try? Start with a mini goal. Spin up AutoGPT, customize your tools, and let your new digital teammate do the heavy lifting.

More from this blog

Maithri's Tech blog

11 posts

This blog is my space to write, reflect, and share everything I’m discovering in tech; from building scalable full-stack apps to diving deep into ethical AI and computer vision.