

AI
2026-06-24 · 8 min read
Sapun Lamichhane
Founder & CEO of Arcetis
"AI agent" gets used for everything from a chatbot with a longer system prompt to a fully autonomous digital employee, and most of the hype — and most of the disappointment when it doesn't deliver — comes from those being treated as the same thing. A precise definition: an AI agent is a language model given access to tools (the ability to search, read a file, call an API, query a database) inside a loop that lets it take an action, observe what happened, and decide the next action, repeatedly, toward a goal — rather than producing one response and stopping.
That loop is the entire technical difference from a chatbot, and it matters practically, not just as a definition. A chatbot answers using what it already knows or what's in the immediate conversation. An agent can go look something up, act on what it finds, and adjust its next step based on the result, several times, without a person re-prompting it at every stage. That's genuinely useful for bounded, multi-step lookup-and-action work — and it's also exactly where new failure modes show up that a single-response chatbot never had to begin with.
The honest failure modes, named directly, because hype-driven coverage tends to skip this part: errors compound across steps instead of resetting each time, so a wrong assumption made early quietly biases everything that follows instead of getting caught immediately. Long-horizon tasks drift from the original goal the more autonomous steps they run without a checkpoint. And an agent given broad tool access but no real scoping will take an action outside its actual competence with exactly the same confident tone it uses for something well within it. None of that is a reason to avoid agents — it's a reason to scope and supervise them deliberately, the same way any new engineering capability gets integrated into real work.
This is precisely why the same human-in-the-loop discipline applied to every other kind of automation applies to agents specifically, not as an afterthought bolted on later. Map the actual workflow before deciding an agent belongs in it at all. Give it tool access connected to the same systems people already use, so its actions are visible and measurable rather than a black box. Keep a human checkpoint on anything with real consequence if it gets something wrong. And make sure every action it takes is reversible and logged. An agent missing those four things isn't a more advanced automation — it's an unsupervised one, and consequence, not sophistication, is what should decide how tightly it gets supervised.
Concretely, for a small or mid-sized business today: genuinely strong fit looks like well-defined, bounded, tool-using work with a clear success condition and low-to-moderate cost if a given run goes wrong — triaging an inbox against known categories, cross-referencing data across a few systems, drafting a first-pass report from raw data before a person edits it. Genuinely poor fit looks like unsupervised high-stakes judgment calls, goals ambiguous enough that there's no clear "done," or anything where a wrong action is expensive or hard to undo and wouldn't be caught before it causes real damage.
The anti-pattern worth naming directly: bolting an agent onto a process that was never mapped, or was already broken, and marketing that as transformation — when the actual fix needed was a simpler rule-based automation, or more often, just fixing the underlying process first. That's the same "AI-as-marketing" problem that shows up anywhere AI gets adopted for its own sake instead of because it's the right tool for a specific, already-identified problem. The question is never "where can we use an agent" — it's "what's actually broken, and does an agent genuinely address it better than a simpler fix would."
Agents are a real, useful engineering capability with a specific, definable shape — not a replacement for judgment, and not magic. Treating them with the same evaluation discipline as any other technical decision — defined scope, measurable integration, a human checkpoint sized to consequence, and a real way to reverse what they do — is what separates the ones that hold up in production from the ones that make a good demo and a quietly abandoned rollout six months later.