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.
15 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-agentic-four-ingredients-builders
What is the core idea behind "The Four Ingredients: Goal, Tools, Loop, Stop"?
Which term best describes a foundational idea in "The Four Ingredients: Goal, Tools, Loop, Stop"?
A learner studying The Four Ingredients: Goal, Tools, Loop, Stop would need to understand which concept?
Which of these is directly relevant to The Four Ingredients: Goal, Tools, Loop, Stop?
Which of the following is a key point about The Four Ingredients: Goal, Tools, Loop, Stop?
Which of these does NOT belong in a discussion of The Four Ingredients: Goal, Tools, Loop, Stop?
What is the key insight about "Always ask: what stops it?" in the context of The Four Ingredients: Goal, Tools, Loop, Stop?
What is the key insight about "You'll see these four everywhere" in the context of The Four Ingredients: Goal, Tools, Loop, Stop?
What is the key insight about "Review date" in the context of The Four Ingredients: Goal, Tools, Loop, Stop?
Which statement accurately describes an aspect of The Four Ingredients: Goal, Tools, Loop, Stop?
What does working with The Four Ingredients: Goal, Tools, Loop, Stop typically involve?
Which of the following is true about The Four Ingredients: Goal, Tools, Loop, Stop?
Which best describes the scope of "The Four Ingredients: Goal, Tools, Loop, Stop"?
Which section heading best belongs in a lesson about The Four Ingredients: Goal, Tools, Loop, Stop?
Which section heading best belongs in a lesson about The Four Ingredients: Goal, Tools, Loop, Stop?