Pitch companion

What AI agents actually are

A plain-language explainer for people who run businesses, not IT departments.

Written as a companion to the agnticr pitch. No jargon that isn't immediately translated, and no claims we wouldn't defend in a meeting — the goal is that you can nod along, or push back, from solid ground.

What is an AI agent, in plain words?

The AI most people have met is a chat window: you type, it answers, and then it sits there. An agent is what you get when that same intelligence is given three more things: tools it can actually operate (email, a calendar, a database, a phone line), a goal to reach rather than a question to answer, and permission to take steps toward that goal without being prompted for each one.

A useful mental model is a very capable, very fast colleague on their first day. Encyclopedic general knowledge, zero knowledge of your business, and no instinct yet for where the line runs between “just do it” and “check with the boss first”. Almost everything serious in agent design is about exactly those two gaps: giving the agent your context, and drawing that line so it actually holds.

In agnticr you don't meet one agent but a department of them — named specialists with different tools, coordinated by a chief of staff (Agnes) against a written plan. The plan is the part most chat-based AI simply doesn't have: it says what will be done, in what order, and — most importantly — what will never be done without a human's sign-off.

How is that different from ChatGPT?

Nothing happens in a chat window unless a person is sitting there typing. That makes chat excellent for answers and useless for work that has to happen every Monday at 07:00 whether or not anyone remembered it. The differences that matter in practice:

  • A chatbot answers; an agent acts. One produces text for you to use; the other sends the email, updates the register, books the slot.
  • A chatbot lives in the session. Close the tab and it's over. An agnticr job runs server-side, survives restarts, and can wait three days mid-step for someone's reply.
  • A chatbot's memory is a scroll of conversation. A job keeps its own files, records and graded learnings between runs — it accumulates instead of starting over.
  • A chatbot is judged on how good the answer sounds. A job is judged on receipts: did the emails actually send, does the record actually exist.

The honest version: agnticr runs on the same underlying model technology as the chatbots. The difference is everything wrapped around it — plans, tools, gates, review, records — which is precisely the part a chat window doesn't have, and the part that turns an impressive demo into work you can delegate.

What is a “hallucination”, and why doesn't it sink the whole idea?

Language models predict plausible text. Most of the time, plausible and true coincide; sometimes they don't, and the model states nonsense with complete confidence. That's a hallucination — not a bug that gets patched next quarter, but a property of how the technology works. Anyone selling AI who tells you their model “doesn't hallucinate” has just told you something more important about themselves.

So the engineering question is never “how do we make it never wrong” — nobody can promise that. It's “how do we build so that being occasionally wrong is survivable?” The same question every business already answers about people: good employees make mistakes; good processes catch them. Concretely:

  • Ground it in real data. Agents that read your documents and registers have far less room to free-associate than ones improvising from general knowledge. In agnticr that's the knowledge base and the agent-owned databases.
  • Gate the irreversible. A wrong draft costs nothing if a human approves before it's sent. That's what agnticr's approval gates are: declared in the plan, enforced by the engine, answered from your phone.
  • Judge by receipts. Whether a run succeeded is settled against evidence the agents cannot fabricate — message ids, record ids, delivery confirmations — never against the AI's own opinion of its work.
  • Keep the record. A full audit trail turns a mistake from a mystery into a diagnosis: you can see exactly what was done, and fix the plan so it stays fixed.

Does it actually learn, or is that marketing?

In most products: marketing. The models themselves don't quietly learn from your usage — and you wouldn't want them to, since that would mean your business flowing into someone's training data. So when a product says “it learns”, the question to ask is: where is the learning stored, and can I read it?

agnticr's answer is deliberately unmagical. Every run ends with a structured review: candidate lessons are graded on whether they held up in practice, stale ones are retired, and the survivors are written into a new numbered plan revision you can open and diff. “Run ten beats run one” is a property of that process, not of the model — which also means the learning is yours, in writing, and stays put when models change underneath.

What can agents genuinely do today — and what shouldn't you believe?

The good fits share a shape: recurring, multi-step, semi-structured work where the judgment moments are identifiable in advance.

  • Chasing — replies, documents, certificates, invoices — until the thing arrives.
  • Coordinating people: availability, choices, confirmations, across days if needed.
  • Watching — an inbox, a tender register, supplier confirmations — and raising a hand only when something matters.
  • Compiling — the weekly report, the monthly summary — from the same sources, on the same schedule.

And the red flags, from people who build this for a living: anything sold as “fully autonomous, no human needed” for decisions with real consequences; work that requires guaranteed perfect precision with no verification step; and any promise that one prompt replaces a department by Friday. The right first job is boring, recurring, and checkable. That isn't a limitation to apologize for — it's where your hours actually go, and it's also the shortest path to value: a first run in hours, not a quarter.

The words you'll hear, translated

TermWhat it actually means
Model / LLMThe underlying text engine — the raw talent, with no memory of your business and no tools of its own.
AgentA model given tools, a goal, and permission to take steps toward it.
JobIn agnticr: a described outcome that runs on a schedule or trigger — the unit you delegate.
PlanThe written, versioned list of what a job will do — and what it will never do without asking.
Approval gateA declared stop where the job waits — for days, if needed — for a human decision.
RunOne execution of a job, with its own itemized cost and its own record.
HallucinationConfidently stated nonsense. Designed around — grounding, gates, receipts — never wished away.
Audit trailThe record of every step, decision, approval and cost. The difference between “trust us” and “look”.