Glossary term
AI agent runtime
An AI agent runtime is the execution environment that runs an agent loop — calling the model, invoking tools, carrying state and memory between steps, and handling retries, timeouts, and concurrency — so that an agent runs as a supervised program rather than as a single prompt.
Also known as agent execution environmentagentic runtimeagent orchestration layer
In practice
Two different things are sold under this name, and the difference decides who is accountable when a call goes wrong. One is agent-side: a framework or hosted service that executes the loop — a graph runner, an agent SDK, a workflow engine with model steps in it. The other is system-side: the runtime of the business application the agent acts on, which resolves the acting identity and decides whether a given read or write is permitted at all. Reading any vendor claim about an "agent runtime" starts with asking which of the two is meant, because the two answer different questions and neither substitutes for the other.
What an agent runtime genuinely owns is real and difficult: keeping a long-running loop durable across steps, retrying a failed step without duplicating a write, bounding concurrency and token spend, pausing for a human and resuming cleanly, discovering tools (often over MCP), and leaving a trace of what the agent attempted and why. An agent that loses its state halfway through a task, or silently repeats a side effect on retry, is a production problem that no permission model will fix.
What it cannot own is authority over the data. An agent runtime sits outside the system holding the records, so its enforcement reaches only as far as which tools it offers — not to what any particular caller may see through them. A row-level rule depends on the acting identity evaluated against the record, a decision only the system of record can make. That is why an agent runtime and a governed runtime are complementary rather than competing: the first decides what the agent attempts, the second decides what actually happens. When one vendor supplies both, the question worth asking is which component performed the permission check on the last call.
Where this term is used
Pages and articles that put this term to work.
Product pages
- AI Build & Ask ObjectOS AI Build turns a described change into reviewable ObjectStack metadata. AI Ask answers over live business data inside user permissions; open-source ObjectStack supports your own agent via MCP.
- Agent developer Teach a coding agent the open ObjectStack target format, Strict TypeScript definitions, Zod schemas, validation gate, and whole-context proof needed to generate reviewable applications.
- Tools & MCP The @objectstack/mcp server turns objects, queries, and actions into policy-checked tools for Claude, Cursor, or any MCP client — with permissions enforced on every call.
Articles
- AI Agent 試験導入が本番に進めない理由:欠けている四つの実行基盤 デモで喝采を浴びた agent が、法務の一問で止まることがある。問題はモデルではなく、意味、権限、承認、監査の四層がないことだ。
- 業務システムに Agent を持たせる:実行できる AI ワークベンチ 業務システムに agent を足すなら、チャット欄だけでは足りない。実行できるアクション、権限、承認、監査を同じワークベンチで扱う必要がある。
- AI Agent の料金:アクション課金とセルフホスト実行コスト アクション単位や token 単位の課金は柔軟に見えるが、agent が自律的になるほどツール呼び出しは増える。コストは使用量曲線、データ域外、ロックイン、自社運用の分岐点を一緒に見る必要がある。