Glossary: Certified Claude Architect Masterclass 2026
This glossary defines key terms from the “Certified Claude Architect Masterclass 2026” course, focusing on agentic architecture and planning.
Task Decomposition
Definition: Breaking down a complex, high-level goal into a series of smaller, more manageable subtasks. Sources: Related Notes:
Action Environment Gap
Definition: The difference between what a language model can describe in text and what it can actually execute in a real-world environment. Sources:
- action-environment-gap Related Notes:
- tool-use-lifecycle
Agentic Systems
Definition: Systems that can autonomously pursue goals by perceiving their context, selecting actions, invoking tools, and iterating on the results until the goal is completed. Sources:
- agentic-systems Related Notes:
- agentic-loop
- deterministic-workflows
Assume and Process
Definition: A strategy for handling ambiguity where an agent makes a reasonable inference about an ambiguous goal and continues execution without waiting for human clarification. Sources:
- assume-and-process Related Notes:
- clarify-first-strategy
- ambiguous-goal
Authority Boundaries
Definition: Defines the scope of a sub-agent’s permissions and access, applying the Principle of Least Privilege. Sources:
- authority-boundaries Related Notes:
- subagent-definition
- context-isolation
CCAF Framework
Definition: A method to mitigate risks associated with agentic systems. Sources:
- ccaf-framework Related Notes:
- agentic-systems
Chatbots
Definition: Systems that can generate human-like text responses in a conversation but are fundamentally stateless and cannot take actions. Sources:
- chatbots Related Notes:
- agentic-systems
Context Capacity
Definition: The amount of information that a language model can hold in its context window at one time. Sources:
- context-capacity Related Notes:
- agentic-loop
Context Isolation
Definition: A design principle where sub-agents start with a “blank” context and only see the information that is explicitly handed over to them. Sources:
- context-isolation Related Notes:
- subagent-definition
- handoff-messages
Dynamic Replanning
Definition: The process of revising a plan mid-execution in response to a failed step, unexpected tool output, or a change in the environment’s state. Sources:
- dynamic-replanning Related Notes:
- dynamic-planning
- replanning-triggers
Error Threshold
Definition: A form of loop control where an agent is programmed to stop its execution loop after a certain number of errors have occurred. Sources:
- error-threshold Related Notes:
- termination-conditions
Escalation (Agentic)
Definition: A loop control mechanism where an agent passes a problem it cannot solve to a human operator or a fallback system. Sources:
- escalation Related Notes:
- termination-conditions
Evaluator Optimizer
Definition: A workflow pattern that uses a generate-evaluate-refine cycle to close quality gaps in an agent’s output. Sources:
- evaluator-optimizer Related Notes:
- workflow-patterns
- iterative-refinement-loops
False Parallelism
Definition: An anti-pattern where tasks that have a hidden dependency on each other are treated as independent and run in parallel. Sources:
- false-parallelism Related Notes:
- parallel-decomposition
Four-Phase Lifecycle of a Tool Call
Definition: The process an agent follows to use a tool: Decision, Execution, Observation, Feedback. Sources:
- four-phase-lifecycle-of-a-tool-call Related Notes:
- tool-use-lifecycle
Goal Drift
Definition: A risk in adaptive planning where an agent strays from its original goals while revising its plan. Sources:
- goal-drift Related Notes:
- dynamic-planning
Handoff Messages
Definition: Structured payloads passed between agents, containing the necessary context for a sub-agent to perform its task. Sources:
- handoff-messages Related Notes:
- handoff-point
Hub-and-Spoke Topology
Definition: A multi-agent orchestration pattern where a central orchestrator routes all tasks to peripheral expert agents. Sources:
- hub-and-spoke-topology Related Notes:
- multi-agent-topologies
Hybrid Topologies
Definition: Multi-agent orchestration patterns that combine different patterns (e.g., Hub-and-Spoke, Pipeline, Peer-to-Peer) to leverage the strengths of each. Sources:
- hybrid-topologies Related Notes:
- multi-agent-topologies
Incremental Complexity
Definition: A design principle that emphasizes starting with the simplest possible architecture and only adding complexity when necessary. Sources:
- incremental-complexity Related Notes:
- workflow-first-agentic-architecture
Independent Testability
Definition: A characteristic of a well-designed sub-agent, meaning it can be tested in isolation. Sources:
- independent-testability Related Notes:
- subagent-definition
Infinite Loops
Definition: A failure mode where an agent gets stuck in a cycle of repetitive actions that yield no meaningful progress. Sources:
- infinite-loops Related Notes:
- termination-conditions
Instruction Design Principles
Definition: Principles for designing instructions for sub-agents, including narrow scope, precise output formats, and explicit success criteria. Sources:
- instruction-design-principles Related Notes:
- subagent-definition
Iterative Refinement Loops
Definition: Generate-evaluate-refine cycles for closing quality gaps in an agent’s output. Sources:
- iterative-refinement-loops Related Notes:
- evaluator-optimizer
Merging Strategies
Definition: Methods used at the fan-in stage to combine parallel outputs (e.g., voting, concatenation, structured aggregation). Sources:
- merging-strategies-agentic Related Notes:
- fan-in
Multi-Agent Topologies
Definition: Patterns of communication and coordination between agents in a multi-agent system. Sources:
- multi-agent-topologies Related Notes:
- hub-and-spoke-topology
Open-ended Goals
Definition: Objectives where the target is known, but the exact steps to achieve it cannot be fully pre-specified at design time. Sources:
- open-ended-goals Related Notes:
- agentic-systems
Orchestrator Sub-Agent
Definition: A workflow pattern where a main orchestrator delegates a complex sub-task to another, more specialized orchestrator. Sources:
- orchestrator-sub-agent Related Notes:
- workflow-patterns
Over-Engineering
Definition: The anti-pattern of introducing unnecessary architectural complexity. Sources:
- over-engineering Related Notes:
- incremental-complexity
Over-specified
Definition: A handoff message that contains extraneous information not relevant to the sub-agent’s task. Sources:
- over-specified Related Notes:
- handoff-messages
Peer-to-Peer (P2P) Topology
Definition: A multi-agent orchestration pattern where agents communicate directly with each other without a central coordinator. Sources:
- peer-to-peer-topology Related Notes:
- multi-agent-topologies
Perception, Reasoning, Action, and Observation (PRAO)
Definition: The fundamental process (agentic loop) that enables an agent to operate autonomously. Sources:
- perception-reasoning-action-and-observation Related Notes:
- agentic-loop
Pipeline Topology
Definition: A multi-agent orchestration pattern where agents are arranged in a linear sequence. Sources:
- pipeline-topology Related Notes:
- multi-agent-topologies
Progress vs. Spinning
Definition: In an agentic loop, progress is marked by new observations, while spinning consists of repetitive actions with no meaningful results. Sources:
- progress-vs-spinning Related Notes:
- infinite-loops
Prompt Chaining
Definition: The simplest workflow pattern, where the output of one LLM call is passed directly as input to the next. Sources:
- prompt-chaining Related Notes:
- workflow-patterns
Replanning Triggers
Definition: Events that necessitate a revision of the current plan. Sources:
- replanning-triggers Related Notes:
- replanning
Result Aggregation
Definition: A core function of an orchestrator agent to validate, synthesize, and handoff results from sub-agents. Sources:
- result-aggregation Related Notes:
- orchestrator-agentic
Role of the Orchestrator
Definition: To manage tasks and synthesize results in a workflow or agentic system. Sources:
- role-of-the-orchestrator Related Notes:
- orchestrator-agentic
Routing (Workflow Pattern)
Definition: A workflow pattern that uses a classifier to sort inputs before processing. Sources:
- routing Related Notes:
- workflow-patterns
Schema Versioning
Definition: The practice of assigning version numbers to handoff message schemas to ensure forward compatibility. Sources:
- schema-versioning Related Notes:
- handoff-messages
Separation of Responsibilities (Agentic)
Definition: The principle of dividing the work between Coordination (the orchestrator) and Execution (the sub-agents). Sources:
- separation-of-responsibilities Related Notes:
- orchestrator-agentic
Sequential Execution
Definition: A workflow where tasks are performed one after another in a fixed, deterministic order. Sources:
- sequential-execution Related Notes:
- sequential-pipeline
State Accumulation
Definition: A condition in sequential pipelines where each step builds on the context or state produced by the earlier steps. Sources:
- state-accumulation Related Notes:
- sequential-pipeline
Stop Signal
Definition: A form of loop control where a command from the orchestrator or a human user instructs an agent to cease its operations. Sources:
- stop-signal Related Notes:
- termination-conditions
Subagent Definition
Definition: A distinct agent instance created by an orchestrator for a specific, delegated task. Sources:
- subagent-definition Related Notes:
- orchestrator-agentic
Task Assignment
Definition: A core function of an orchestrator agent that involves routing and matching subtasks to the appropriate sub-agents. Sources:
- task-assignment Related Notes:
- orchestrator-agentic
Task Completion
Definition: A termination condition for an agentic loop, where the agent stops its execution because its goal has been successfully achieved. Sources:
- task-completion Related Notes:
- termination-conditions
Termination Conditions
Definition: Explicit criteria that indicate when an agent should end its execution loop. Sources:
- termination-conditions Related Notes:
- infinite-loops
Tool Use (Agentic)
Definition: The mechanism by which an agentic system takes action in the real world. Sources:
- tool-use Related Notes:
- tool-use-lifecycle
Turn Budgets
Definition: A strict limit on the number of iterations an agent can execute. Sources:
- turn-budgets Related Notes:
- termination-conditions
Under-specified
Definition: A handoff message that lacks the necessary context for a sub-agent to perform its task correctly. Sources:
- under-specified Related Notes:
- handoff-messages
Unpredictable Tool Sequences
Definition: When the specific series of tools an agent needs to call cannot be known at design time. Sources:
- unpredictable-tool-sequences Related Notes:
- agentic-systems
Well-Defined Subtasks
Definition: A subtask with a single responsibility, defined inputs, a bounded scope, and clean, structured outputs. Sources:
- well-defined-subtasks Related Notes:
- task-decomposition
Definition: The critical boundary in a multi-agent workflow where control and context are passed from one agent to another. Sources:
- handoff-point Related Notes:
- task-decomposition
- error-cascade
Orchestrator
Definition: A controlling agent or service responsible for managing the entire workflow, including interpreting the goal, decomposing tasks, and coordinating execution. Sources:
- orchestrator-agentic Related Notes:
- task-decomposition
- dependency-graph
- handoff-point
Monolithic Task
Definition: A task where one agent handles everything from start to finish. It’s simple to assign but hard to debug and difficult to parallelize. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
- over-decomposition
Decomposed Task
Definition: A task that has been split into well-defined, independently retryable, delegatable, and testable subtasks. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Hierarchical Decomposition
Definition: A pattern of recursively breaking down goals into sub-goals, creating a tree structure where each level manages its own tier of complexity. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Sequential Decomposition
Definition: A pattern where tasks are executed in a defined linear order, with each task’s output serving as the input for the next. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
- sequential-pipeline
Parallel Decomposition
Definition: A pattern where independent tasks are run simultaneously to reduce overall execution time, requiring a synchronization step to converge results. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
- parallel-execution
Sequential Pipeline
Definition: An agentic workflow pattern where multiple specialized agents are arranged in a linear chain, processing tasks in a fixed, predetermined order. Sources:
Dependency Graph
Definition: A directed acyclic graph (DAG) used to model the relationships between subtasks, where nodes represent tasks and edges represent true dependencies. Sources:
- dependency-graph Related Notes:
- task-decomposition
- true-vs-artificial-dependency
Error Cascade
Definition: A critical failure mode where a minor, localized error in one agent propagates and amplifies through a chain of subsequent agents. Sources:
- error-cascade Related Notes:
- sequential-pipeline
- handoff-point
True vs. Artificial Dependency
Definition: A true dependency is a structural requirement for one task to have the output of another. An artificial dependency is a sequence imposed by convention rather than necessity. Sources:
- true-vs-artificial-dependency Related Notes:
- dependency-graph
- sequential-pipeline
Over-decomposition
Definition: An anti-pattern where a task is broken down into an excessive number of granular subtasks, causing coordination overhead to outweigh the benefits. Sources:
- over-decomposition Related Notes:
- task-decomposition
Under-decomposition
Definition: An anti-pattern where tasks are left too large and monolithic, making them difficult to retry, delegate reliably, or debug. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
- over-decomposition
Parallel Execution
Definition: An orchestration pattern where multiple independent tasks are run concurrently to reduce total end-to-end latency. Sources:
- parallel-execution Related Notes:
- fan-out
- fan-in
Fan-out
Definition: The process within a parallel execution pattern where a single task is split into multiple, independent subtasks that are executed concurrently. Sources:
- fan-out Related Notes:
- parallel-execution
- fan-in
Fan-in
Definition: The synchronization step that follows a fan-out, responsible for collecting, handling failures, ordering, and merging the results from parallel branches. Sources:
- fan-in Related Notes:
- parallel-execution
- fan-out
Static Planning
Definition: An approach where all steps in a plan are defined before execution starts. It is predictable and auditable. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Dynamic Planning
Definition: An approach where an agent adapts its plan during execution based on real-time observations and tool outputs. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Replanning
Definition: The process of revising the current plan mid-execution in response to a failed step, unexpected tool output, or a change in the environment state. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Ambiguous Goal
Definition: A goal that lacks a clear, single definition, leaving multiple valid interpretations for an agent to choose from. Sources:
- certified-claude-architect-masterclass-2026-section-2-agentic-architecture-task-decomposition-planning Related Notes:
- task-decomposition
Clarify First Strategy
Definition: A strategy for handling ambiguity where the agent pauses execution to request more information from a human before proceeding, used when the cost of a wrong assumption is high. Sources: