The AWS Well-Architected Agentic AI Lens: a working reference
September 21, 2026
September 21, 2026
AWS published the Well-Architected Agentic AI Lens on 10 June 2026, and states that it will be updated as the field matures and new patterns emerge from production deployments. Cite the publication date whenever you reference it in a standard or a review record, because the content is expected to move.
The AWS Well-Architected Framework is a set of foundational questions used to check whether an architecture matches cloud best practice. It gives a consistent method for evaluating a system against the properties expected of modern cloud workloads, and it points to improvements based on the current state of that architecture.
The framework rests on six pillars: operational excellence, security, reliability, performance efficiency, cost optimization, and sustainability.
Pillar priorities are not fixed. When designing a workload you trade pillars against each other according to business need, and those business decisions set engineering priority. A development environment may accept lower reliability to reduce cost. A mission-critical system may accept higher cost for reliability. An ecommerce system may prioritize performance because customer satisfaction drives revenue. Security and operational excellence are the two that are generally not traded away.
A lens extends the framework to a specific workload type, keeping the same six-pillar structure and adding questions, best practices and implementation guidance for that domain.
Existing cloud and generative AI guidance does not address five properties that agentic systems introduce. Each one changes which architectural questions matter.
Agents reason, they do not only respond. One user request can produce several inference calls, tool invocations, memory retrievals and messages between agents. Every step adds latency, cost and a new failure surface. Request-response optimization does not describe an iterative reasoning loop, so capacity, timeout and cost models built for single-call services do not transfer.
Agents act autonomously. They invoke tools, modify data and reach external systems without a human instruction at each step. That requires permission boundaries, security controls and human oversight designed for autonomous operation rather than for a user clicking a button.
Agent behavior is stochastic. LLM-driven decisions are non-deterministic: the same input can produce different output across invocations. Reliability therefore depends on behavioral monitoring, evaluation frameworks and graceful degradation, not on deterministic test suites alone.
Agents collaborate. Multi-agent systems add coordination overhead, handoff complexity and distributed failure modes. Orchestration patterns, communication protocols and conflict resolution become architectural concerns rather than implementation details.
Agents remember. Persistent memory across sessions supports personalization and learning, and it introduces data integrity, privacy and cost questions that stateless applications never had to answer.
Each pillar keeps its framework meaning and gains agent-specific scope.
| Pillar | Scope in this lens |
|---|---|
| Operational excellence | Running and improving autonomous agents through systematic practice: prompt lifecycle management, behavioral monitoring, human-in-the-loop governance |
| Security | Agent identities, tool access and data flows, with protection against prompt injection, privilege escalation and manipulation of autonomous operations |
| Reliability | Predictable task execution, automatic recovery, and partial functionality maintained under adverse conditions |
| Performance efficiency | Cognitive pipelines, model selection, memory access and multi-agent coordination, tuned for responsiveness and scale |
| Cost optimization | Cost as a primary design input: right-sized model and memory capability, and full cost visibility |
| Sustainability | Modular, reusable architectures that maximize resource efficiency and keep adoption sustainable |
Practices are identified as AGENT plus a pillar code plus a number, so AGENTSEC03 is the third security practice and AGENTCOST01 the first cost practice. Individual best practices inside a practice carry a BP suffix, as in AGENTREL02-BP05. Pillar pages group their practices under focus area names, and those names are phrased differently from the question titles: the reliability focus area "Predictable task execution" holds the question titled "Design for atomic tasks, least-privilege permissions, and clear instruction protocols". Both forms appear in the documentation, so decide which one your internal standard quotes.
The lens is used alongside the Well-Architected Framework, not instead of it. Each pillar contains focus areas with guiding questions, best practices, implementation guidance and code examples specific to agentic workloads. Four situations call for it:
For a team working through the lens the first time, AWS sets out five steps: read the design principles to understand what drives decisions across the pillars; agree the definitions so the vocabulary is shared; work through each pillar's focus areas and best practices, taking high-risk practices first; use the implementation guidance and code examples as starting points and adapt them to your stack; then run recurring Well-Architected reviews with this lens as the system changes.
A custom lens definition is available in the aws-samples custom lens repository, in the `agentic-ai-lens` directory alongside the other published lenses. Download the lens file, then in the Well-Architected Tool open Custom lenses, choose Create custom lens, then Import lens and upload the JSON. The Tool's preview experience lets you walk the questions before attaching a workload. That turns the lens from a document into a score against a named workload, which is the difference between reading guidance and recording a review.
The lens does not isolate responsible AI in its own chapter. It states five principles and names the practice that implements each one, which is the part worth copying into an internal standard because it turns a principle into a control someone can test.
| Principle | Statement in the lens | Practice |
|---|---|---|
| Bounded autonomy | Every agent operates within explicitly defined scope boundaries, with guardrails that constrain behavior regardless of inputs received | AGENTSEC04 |
| Transparency and explainability | Agent decisions are logged, traced and auditable, so teams can reconstruct exactly what happened during any execution | AGENTOPS05 |
| Human oversight | Tiered oversight models match the level of human review to the risk and reversibility of each agent action | AGENTREL02-BP05 |
| Goal alignment | Evaluation frameworks continually assess whether agents achieve intended objectives rather than pursuing misaligned goals | AGENTOPS06 |
| Organizational sustainability | Agent adoption preserves critical human expertise and institutional knowledge | AGENTSUS03 |
The tiered oversight model is defined concretely: low-risk actions proceed autonomously, medium-risk actions trigger notification, high-risk actions require explicit approval. Risk and reversibility are the two axes, which is a more usable test than a blanket human-in-the-loop requirement, because it forces a per-action classification rather than a policy statement.
AWS does not expect every team to implement every practice. The lens defines four reading paths by deployment stage. The titles below are quoted from the roadmap.
Building your first agent. Establish scope, security boundaries and predictable behavior.
Moving to production. Add observability, evaluation, cost control and pipeline optimization.
Scaling to multi-agent systems. Orchestration reliability, coordination security, workflow performance.
Hardening an existing deployment. Security controls, resilience, human oversight.
Read as a sequence, the four paths describe a maturity order: scope and identity first, then evidence and cost, then coordination, then containment. A deployment that skipped the first path rarely benefits from starting at the fourth.
The lens states five principles as durable regardless of how the technology changes, and each has a concrete reading in the document.
Three boundaries are worth stating, because they determine how much of a review the lens can carry on its own.
It is architecture guidance, not an operating model. AGENTOPS01 requires agent roles, success criteria and handoff procedures to be defined; it does not assign ownership inside an organization, nor specify who approves a given class of agent action. That allocation is organizational and has to be written per agent.
It does not produce audit evidence. The security and operational pillars require identity, tracing and non-repudiation, which are the mechanisms evidence is built from. Mapping each control to an artifact a regulator or auditor will accept is separate work, and in validated environments it is usually the larger part.
It does not decide portfolio economics. Cost attribution across multi-agent workflows is in scope as a practice, and the lens defines an agent portfolio with tracked ownership, cost profiles and lifecycle state. Deciding which agents earn their cost, and retiring the ones that do not, stays a management judgment outside the document.