From chatbot to agent — your first task agent.
Most people use AI like a vending machine: ask, get an answer, paste it somewhere. An agent works differently — you hand it a goal and it does the steps for you. This lesson shows what actually makes something an agent, which tasks to delegate first, and how to set one up for a real job.
The mental model
A chatbot answers. An agent acts. The shift is from “ask and copy” to “delegate and review.”
When you chat with AI, you ask a question and paste the answer somewhere yourself. An agent flips that: you give it a goal, it makes a plan, takes the steps, and hands you a finished result. You stop being the one doing each step and become the one checking the work.
You’re a manager now, not a typist. A good agent task is one you’d hand to a capable assistant with clear instructions. If you can write the instructions, you can build the agent.
Step 01 What actually counts as an agent
Four things separate an agent from a chat:
- It’s given a goal, not just a question.
- It works in multiple steps toward that goal.
- It can use information or tools along the way.
- It returns a finished result, then stops.
Business examples: “research these 20 companies and give me a one-line summary of each,” “go through this folder and pull every invoice into a table,” “check this inbox each morning and tell me what needs a reply.”
Step 02 Set up your first task agent
Pick one repetitive, multi-step task that’s low-risk to get slightly wrong. Then write it like a brief for an assistant:
Your agent brief
- Goal — the end result you want, stated plainly.
- Steps — the rough sequence you’d follow yourself.
- Done looks like — exactly what a finished result should be.
- Constraints — what it must not do, and when to stop and ask you.
Step 03 Make the first one easy to trust
Your first agent should be narrow and safe. Good first tasks are:
- Clear done condition — you’ll know instantly if it worked.
- Low risk — a mistake costs minutes, not money.
- Repetitive — worth automating because you do it often.
- Read-mostly — gathering and summarizing, not sending or deleting.
Your challenge: delegate one real task
Pick a repetitive, multi-step task you normally do by hand. Then:
- Write the agent brief (goal, steps, done, constraints).
- Have the agent show its plan before it acts.
- Let it run, then review the finished result.
- Note where it wandered — that’s what you’ll tighten next time.
That’s one real task off your plate, done by an agent you directed. Next, give it tools — your apps and data — so it can do far more than talk. That’s Lesson 2.
What you can do now
- Explain the difference between a chatbot and an agent
- Recognize the four traits of a real agent task
- Write an agent brief: goal, steps, done, constraints
- Set up an agent that plans, acts, and reports back
- Pick safe, narrow first tasks and keep a human in the loop