Jorge Laurel

Lesson 7: Real Examples, Putting It All Together

Writing·Jorge Laurel · ·5 min read

Lesson 7: Real Examples, Putting It All Together


A note on this series. This is written for beginners, on purpose. I’m keeping explanations at a practical, conceptual level rather than a technical one. Several ideas here are described in generic terms rather than their full technical depth. The goal of these seven lessons is to demystify AI agents enough that the hype becomes understandable and ideally to spark enough curiosity that you go looking for the deeper technical material afterward.


Six lessons in, I’ve covered the model, the chatbot-to-agent line, the four building blocks, the think-act-observe loop, tool calling, and multi-agent systems. This final lesson walks through three real-world-shaped examples, each one showing all of those pieces working together, without assuming you’ll ever write a line of code.

Example 1: A scheduled research and automation workflow

Picture a system that runs every morning without anyone touching it: it checks a handful of news sources for stories on a specific topic, uses a model to summarize and rank what it finds, and writes the result somewhere useful, a document, a message, a dashboard.

This is a common AI-enabled automation pattern, and it can become agentic when the model is allowed to decide which sources to investigate, which tools to use, or what to do next. n8n is a workflow-automation platform that lets you visually connect a trigger (like ’every day at 7am’), a series of steps (like ‘call an API,’ ‘ask a model to summarize this,’ ‘save the result’), and an output, without hand-coding the whole pipeline. Rather than being made obsolete by newer AI models, n8n has become more central to agentic automation in 2026, now backed by a $2.5 billion valuation and hundreds of thousands of active users. The reason it persists is a division of labor: AI models are good at judgment calls and open-ended reasoning, while tools like n8n handle the parts of a process that need to run the same way every time, reliably and on schedule. Most current implementations combine both, using n8n as the dependable backbone and calling out to AI models only at the specific steps where intelligence is actually needed.

Map this back to Lesson 3’s four building blocks. The model is whatever LLM does the summarizing, the tools are the API calls to fetch articles and post the result, the memory is whatever gets carried from one run to the next (or nothing, if each run stands alone), and the instructions are the prompt telling the model how to summarize and what to prioritize. The loop from Lesson 4 plays out each run: think about what’s relevant, act by fetching and summarizing, observe the result, done.

Every morning I have a bespoke email, customized to me and how I want news presented, in my inbox summarizing the latest AI news thanks to an n8n routine.

Example 2: A coding agent

Coding agents are now a well established category of agentic software development tools, with major AI companies and independent developers offering systems that can work directly with codebases. Instead of a person copying code into a chat window and pasting the output back, a coding agent operates directly inside a project. It can read existing files, write new code, run tests, see whether those tests pass or fail, and adjust its approach based on the result, all without a human relaying each step by hand.

This is the think-act-observe loop from Lesson 4, applied to a codebase instead of a research task. The tools (Lesson 5) are things like “read this file” “edit this file” “run this command” “check the test output.” The potential productivity gains can be substantial on some tasks, but results vary enormously by codebase, task, model, and how much human review is still required.

Example 3: A multi-step personal assistant task

Take something ordinary: “find a time that works for everyone and set up the meeting.” A chatbot, per Lesson 2, would tell you how to do that. An agent checks calendars, cross-references availability, picks a slot, sends the invite, and books a room, chaining together several tool calls without you doing each one by hand (Insentra, 2026).

Notice this doesn’t require a multi-agent system from Lesson 6. One agent, several tools, a short loop, is enough. Multi-agent orchestration earns its complexity on bigger jobs, not small ones. Going forward, ask whether a task actually needs multiple specialized agents, or whether a single well-built agent with the right tools gets it done just as well with far less to maintain.

The pattern, restated simply

Every example above reduces to the same idea: a goal, a model that reasons about how to reach it, tools that let it act, a loop that lets it check its own work and adjust, and where the stakes are high enough, a human checkpoint before anything irreversible happens. That’s the whole architecture. The frameworks, protocols, and vendor names will keep changing. This underlying shape is what’s worth actually understanding, because it’s what every agent, no matter how it’s marketed, is built from. For now, it’s a crazy AI world out there and I could be totally wrong by next week!

Closing the series

If you’ve made it through all seven lessons, you now have a working vocabulary for a conversation that most media coverage treats as either magic or hype: model, tool calling, the think-act-observe loop, memory, multi-agent orchestration. That’s enough to read the next “AI agents are transforming X” headline with a clearer eye. Before you believe the claim, ask whether the system is actually deciding its own steps, or whether it’s automation wearing an AI label.

The specifics in this series, names, prices, framework claims, will age quickly; this field moves that fast. The underlying shape, model, tools, memory, instructions, loop, holds up regardless. Verify current tooling and vendor claims before building anything on them.