Loading lesson…
Every agent — fancy or simple, local or cloud — boils down to four parts. Learn the recipe and you can read any agent system like a menu.
Strip away the marketing and every AI agent has exactly four parts. If any one of them is missing, it's not really an agent — it's something else wearing an agent costume.
| Ingredient | What it is | Example |
|---|---|---|
| Goal | What the agent is trying to accomplish. | 'Book a dentist appointment for next Tuesday.' |
| Tools | The things it can do in the world. | Browser, filesystem, shell, API calls. |
| Loop | Think → act → observe → think again. | Check calendar, open booking site, click a date. |
| Stop | A rule that says 'done' or 'give up'. | Goal achieved, or 10 attempts, or human says stop. |
A goal without tools is a daydream — the AI knows what you want but can't act. Tools without a goal is chaos — the AI clicks things for no reason. A loop without a stop is an agent that never quits, and that is how you get a robot that books 40 dentist appointments because the first one worked and it never stopped trying.
GOAL: Find out what time my 3pm meeting actually is (it moved). TOOLS: Read calendar, read email. LOOP: Step 1 — Think: 'The calendar should be authoritative. Check it first.' Step 1 — Act: open_calendar('today') Step 1 — See: 'Meeting with Sam, 3:30pm.' Step 2 — Think: 'Got it. No need to check email.' Step 2 — Act: report('3:30pm') STOP: Answer produced. Done.A minimal agent trace. Think, act, observe. Stop when the goal is met.Next lesson, we walk through a real agent run, step by step, so you can see the loop breathe.
8 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-agentic-four-ingredients-builders
What is the main idea of "The Four Ingredients: Goal, Tools, Loop, Stop"?
Which concept is most central to "The Four Ingredients: Goal, Tools, Loop, Stop"?
Which use of AI fits this topic best?
What should a careful learner remember about "Always ask: what stops it?"?
You want to use AI after this lesson. What is the safest next step?
How should AI output about agent architecture be treated?
Name one way to verify an AI answer about agent architecture.
Which action would help you apply "The Four Ingredients: Goal, Tools, Loop, Stop" responsibly?