0 XP
L1
?
Lessons
What Makes AI Agentic
concept ⏱ 12m
1/3

What Makes AI Agentic

There's a spectrum between "AI that completes your sentence" and "AI that completes your task." Most products sit somewhere in between, and understanding where is the first step to building agentic systems.

The Completion-to-Agency Spectrum

Think of AI systems along a spectrum:

  • Level 0 — Completion: Autocomplete, code suggestions. Zero autonomy. The model generates text and stops.
  • Level 1 — Single-turn tool use: The model calls one tool and returns a result. Like asking Claude to check the weather.
  • Level 2 — Multi-turn reasoning: The model plans across multiple steps, uses multiple tools, adapts based on results. Claude Code working on a bug fix.
  • Level 3 — Autonomous agents: The system operates with minimal human input, handles errors, and achieves complex goals over extended periods.

Most production systems today are at Level 1-2. The jump to Level 3 is where things get interesting — and risky.

The Observe-Decide-Act Loop

Every agentic system, at its core, runs a loop:

while (goal not achieved):
    observe  → read environment, tool results, user input
    decide   → reason about what to do next
    act      → call a tool, write code, send a message

This is what separates an agent from a chatbot. A chatbot responds. An agent pursues a goal through repeated cycles of observation and action.

Your Claude Code setup does exactly this: it reads your files (observe), thinks about what to change (decide), edits the code (act), then checks if it worked (observe again).

Why "Agentic" Is a Continuum

A system doesn't need to be fully autonomous to be agentic. Features that make something more agentic:

  • Tool access: Can it interact with external systems?
  • Decision loops: Does it decide its next action based on previous results?
  • Error recovery: Can it detect and handle failures?
  • Memory: Does it retain context across interactions?
  • Goal persistence: Does it keep working until the goal is met?

The more of these a system has, the more agentic it is. Your MCP server ecosystem (Notion, Calendar, Slack, Linear) gives Claude Code tool access. Your knowledge/ directory gives it memory. Your CLAUDE.md gives it goals and constraints.

You're already building agentic products by configuring these components. This course teaches you to do it deliberately.

❓ Quiz 1
Which of these is the MOST agentic system?
Claude Code exhibits multi-step reasoning, tool use, error recovery, and goal persistence — the hallmarks of agency.
Answer to continue ↓
❓ Quiz 2
What defines the observe-decide-act loop?
The loop is what makes agents different from one-shot generation — they iterate toward a goal.
Answer to continue ↓
🛠 Exercise 1
Think about your daily work. Name 3 tasks where an agentic AI system (not just a chatbot) would save you significant time. For each, describe: what the agent observes, what decisions it makes, and what actions it takes.
✓ Saved
advance · ? shortcuts 01.01
Claude — Tutor
select text for context
Ask me anything about this lesson.
I can see your quiz answers and decisions.

💡 Select text in the lesson to use it as context.
CONTEXT