viberslib
Back to all lists
List · 15 terms

AI Agent Vocabulary.

Core terms for autonomous agents, agentic workflows, and agent infrastructure.

001

Agent Loop

Agentic

An agent's think → call tool → observe → repeat loop until the goal is met. Most modern AI apps are this loop.

002

Agent Memory

Agentic

System for an agent to store and recall information within or across sessions. Short, long, episodic, semantic flavors.

003

Agent Graph

Agentic

LangGraph's state-machine model where nodes = agents/tools and edges = handoffs. Makes complex flows visualizable.

004

Agent Swarm

Agentic

A loosely coupled, parallel-running group of many small agents. Ant-colony logic; OpenAI Swarm exemplifies this idea.

005

Agent Router

Agentic

Front-layer that routes incoming prompts to the most fitting specialist agent. Optimizes cost and quality.

006

Agent Trace

Agentic

Full log of an agent run including every LLM call, tool, observation. LangSmith, Braintrust, Helicone surface it.

007

Agentic Workflow

Agentic

A workflow chaining planning + tools + verification steps instead of a single LLM call.

008

Agentic Search

Agentic

Agent doing query → search → evaluate → new query in a loop instead of one search. The basis of modern web research.

009

Tool Use

Agentic

When the model decides to invoke a function instead of generating text. Same as "function calling." The core of agentic behavior.

010

Chain of Thought

Workflow

Pushing a model to reason step-by-step to solve harder problems. Often as simple as "think step by step."

011

Autonomous Mode

Agentic

Mode where the agent takes all actions without human approval. "Full auto", "--dangerously-bypass". Trust mandatory.

012

Approval Mode

Agentic

Mode where every risky action prompts the user for approval. Claude Code default; the opposite of YOLO.

013

Browser Use

Agentic

Agent driving a browser to navigate, fill forms, and scrape. Built on libraries like browser-use or Playwright MCP.

014

Coding Agent

Agentic

Agent specialized for software work: Claude Code, Cursor Composer, Aider, Devin, Codex, OpenHands.

015

Anthropic Agent SDK

Agentic

Anthropic's TypeScript/Python agent library. First-class tool use + computer use + streaming.

More lists