Zero to Hero path · Stage 4 of 4
This lesson is part of the certified course Zero to Agent Builder
0 / 6 lessons completeView course

0%

SKIP TO CONTENT

What Is a Coding Agent?

beginner~25 min0/3 steps

What Is a Coding Agent?

A coding agent is an AI that doesn't just answer your question — it reads your files, runs commands, and edits code for you. You stop typing every line. You start directing an agent and reviewing what it changes.

Learning outcomes

By the end of this lesson you will be able to:

  • Explain the difference between a chatbot (talks) and a coding agent (acts on your repo)
  • List three things agents can do reliably today
  • Name two limitations you must still own as the human operator

In this course you'll build a real working agent in 6 lessons. It will read a CSV file, query a Supabase database, pull fresh facts from Perplexity, and publish a conclusion page. No prior coding needed.

This first lesson: you build a one-page explainer that tells someone — in plain language — what an agent is, what it can do, and what it can't do. Think of it as the landing page for the agent you're about to build.

Instructions

1

Add an <h1> heading that contains the word "Agent" — this is the page title

Hint: Try: `<h1 class="text-4xl font-bold text-white mb-3">What Is a Coding Agent?</h1>`

2

Add a <section class="can-do"> element listing 3 things an agent CAN do (use a <ul> with 3 <li> items)

3

Add a <section class="cannot-do"> element describing at least 2 things an agent CANNOT do

Your Code

html
19 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

Live Preview

Live Preview