AI Agent Vocabulary.
Core terms for autonomous agents, agentic workflows, and agent infrastructure.
Agent Loop
AgenticAn agent's think → call tool → observe → repeat loop until the goal is met. Most modern AI apps are this loop.
Agent Memory
AgenticSystem for an agent to store and recall information within or across sessions. Short, long, episodic, semantic flavors.
Agent Graph
AgenticLangGraph's state-machine model where nodes = agents/tools and edges = handoffs. Makes complex flows visualizable.
Agent Swarm
AgenticA loosely coupled, parallel-running group of many small agents. Ant-colony logic; OpenAI Swarm exemplifies this idea.
Agent Router
AgenticFront-layer that routes incoming prompts to the most fitting specialist agent. Optimizes cost and quality.
Agent Trace
AgenticFull log of an agent run including every LLM call, tool, observation. LangSmith, Braintrust, Helicone surface it.
Agentic Workflow
AgenticA workflow chaining planning + tools + verification steps instead of a single LLM call.
Agentic Search
AgenticAgent doing query → search → evaluate → new query in a loop instead of one search. The basis of modern web research.
Tool Use
AgenticWhen the model decides to invoke a function instead of generating text. Same as "function calling." The core of agentic behavior.
Chain of Thought
WorkflowPushing a model to reason step-by-step to solve harder problems. Often as simple as "think step by step."
Autonomous Mode
AgenticMode where the agent takes all actions without human approval. "Full auto", "--dangerously-bypass". Trust mandatory.
Approval Mode
AgenticMode where every risky action prompts the user for approval. Claude Code default; the opposite of YOLO.
Browser Use
AgenticAgent driving a browser to navigate, fill forms, and scrape. Built on libraries like browser-use or Playwright MCP.
Coding Agent
AgenticAgent specialized for software work: Claude Code, Cursor Composer, Aider, Devin, Codex, OpenHands.
Anthropic Agent SDK
AgenticAnthropic's TypeScript/Python agent library. First-class tool use + computer use + streaming.