What an AI agent platform is
An AI agent is a program that receives a goal, decides on its own which steps to take, and calls external systems to execute them. One agent can be written in a few days and almost always works in a demo. Problems begin when there is more than one agent, they live longer than a single session, and they touch production systems.
An AI agent platform is the shared layer that handles everything around the model: starting and stopping the agent, its memory, access to data and tools, the action log, permissions, and the points where a human confirms the decision. In this setup, the model is replaceable, the platform is not.
It is important not to confuse three different things. Framework (LangGraph, CrewAI) - a library from which a developer assembles an agent in code. Visual builder (Dify, n8n, Flowise) - an environment where a workflow is assembled with a mouse and immediately gets a UI and API. Platform what remains when you have dozens of agents: a single registry, shared access to tools, observability, and governance. The first two often grow into the third, but do not become it automatically.


