AI at Verdeshell
How AI actually works,explained by people who build with it
A working reference rather than a feed. Concepts defined against each other, the patterns we use when we build with agents, and the failure modes each one is guarding against. Where a term is a practitioner coinage rather than a standard, we say so on the page.
Pick a track
Three tracks. Each one is a set of pages that build on each other rather than a stream of posts.
Concepts
The vocabulary — what separates AI from machine learning from generative AI, and an agent from an agentic system.
Building with GenAI
How autonomous coding agents are actually structured: loops, graphs, tool access, and knowing when the work is done.
Use cases
Applied patterns by function and industry — and an honest account of where the technology does not pay off yet.
Everything published so far
Common questions
What is loop engineering?
Loop engineering describes a single AI agent repeating its own work toward a goal — acting, observing the real result, reasoning about the gap, and retrying until a testable stop condition is met. It is an emerging practitioner term rather than a standardised discipline.
What is graph engineering for AI agents?
Graph engineering describes several specialized agents coordinating as a graph, where each agent is a node with one defined role and each edge defines where work moves next — including feedback edges that route failing work back to an earlier node instead of to a human.
Are loops and graphs alternatives to each other?
No — they nest. A graph governs how work passes between specialized agents; each node in that graph is typically one agent running its own internal loop. In practice you are building a graph of loops.
What does an AI agent loop need to work?
Five things: a goal with a testable termination condition, real tool access so it can act and observe rather than describe, context management for long runs, explicit success and failure logic, and error handling that adapts rather than blindly retries.
What topics does the Verdeshell AI Hub cover?
The hub is organised into 3 tracks: Concepts (The vocabulary — what separates AI from machine learning from generative AI, and an agent from an agentic system.); Building with GenAI (How autonomous coding agents are actually structured: loops, graphs, tool access, and knowing when the work is done.); Use cases (Applied patterns by function and industry — and an honest account of where the technology does not pay off yet.).
Building something with agents?
We build these systems for a living. Bring us the problem and we will tell you honestly whether an agent is the right shape for it.