Factlen ExplainerEnterprise AIExplainerJun 18, 2026, 3:38 AM· 5 min read· #2 of 2 in technology

AWS Introduces Dynamic Context Layer to Solve AI Agent Memory and Curation

Amazon Web Services has launched a suite of context intelligence tools, led by a self-updating knowledge graph, designed to help enterprise AI agents understand complex data relationships without manual curation.

By Factlen Editorial Team

Enterprise Cloud Architects 40%AI Researchers 30%Data Governance Teams 30%
Enterprise Cloud Architects
View the automated context layer as a massive time-saver that eliminates the need for bespoke, manually curated graph databases.
AI Researchers
Focus on the technical milestone of using LLM agents to autonomously construct and refine ontologies, improving reasoning capabilities.
Data Governance Teams
Emphasize the need for strict access controls and auditing tools when AI systems begin inferring and storing new data relationships dynamically.

What's not represented

  • · Multi-cloud competitors (Azure/GCP)
  • · Small business IT administrators

Why this matters

For AI to move from drafting emails to executing complex enterprise workflows, agents need a deep, relational understanding of company data. By automating the creation of knowledge graphs, AWS is removing one of the biggest bottlenecks to deploying reliable, autonomous AI in the workplace.

Key points

  • AWS has launched a new suite of tools to help AI agents understand enterprise data context.
  • The core product, AWS Context, is a knowledge graph that automatically learns data relationships based on agent usage.
  • Amazon S3 Annotations will allow developers to attach AI-readable metadata directly to stored objects.
  • AWS Glue Data Catalog will now host 'skill assets,' giving agents a directory of executable actions.
  • The automated approach aims to replace the highly manual process of curating enterprise graph databases.

The transition from conversational AI to autonomous AI agents has exposed a critical flaw in modern enterprise architecture: agents lack a persistent, relational memory of the businesses they serve. While large language models can parse text brilliantly, they struggle to understand that a specific customer issue in Zendesk is tied to a recent code commit in GitHub, which is in turn managed by a specific engineering pod. Building the connective tissue between these data silos has traditionally required teams of data engineers to manually curate complex databases.[4][5]

Amazon Web Services (AWS) is making a direct play to automate this foundational infrastructure. On Wednesday, the cloud provider announced a trio of products positioned as a comprehensive "context intelligence stack" for AI agents. The move signals a shift from simply hosting AI models to providing the semantic plumbing that makes those models genuinely useful in corporate environments.[1][5]

The centerpiece of the announcement is AWS Context, a new knowledge graph service designed to bridge the gap between unstructured enterprise data and agentic reasoning. Unlike traditional graph databases that require meticulous manual setup and continuous maintenance, AWS Context is designed to get smarter organically through agent usage over time.[1][2]

To understand the breakthrough, it helps to contrast knowledge graphs with the current standard for AI data retrieval: vector databases. Vector databases power Retrieval-Augmented Generation (RAG) by finding documents that are statistically similar to a user's prompt. However, they do not inherently understand relationships. If an agent needs to know "Which clients will be affected by the upcoming server migration?", a vector search might just return documents containing those keywords, leaving the AI to guess the connections.[4][5]

Unlike static databases, dynamic knowledge graphs learn and update their connections based on how AI agents use the data.
Unlike static databases, dynamic knowledge graphs learn and update their connections based on how AI agents use the data.

A knowledge graph, by contrast, maps data like a web of concepts. It explicitly links "Client A" to "Server B" via a "hosted_on" relationship. The historical barrier to using knowledge graphs has been the sheer human labor required to define these ontologies and keep them updated as the business changes.[3][4]

AWS Context attempts to solve this by observing how AI agents interact with data. When an enterprise agent successfully resolves a complex query by synthesizing information from three different internal documents, AWS Context captures that inferred relationship and writes it back into the graph. The next time an agent faces a similar problem, the connective pathway is already established.[1][2]

Academic research has increasingly pointed to this exact mechanism as the future of enterprise AI. Recent papers have demonstrated that Large Language Models, when deployed as autonomous agents, can act as highly effective "crawlers" that construct and refine knowledge graphs dynamically, vastly outperforming manual human curation in both speed and adaptability.[3]

Academic research has increasingly pointed to this exact mechanism as the future of enterprise AI.

Alongside the dynamic graph, AWS announced the general availability of Amazon S3 Annotations. S3 is the foundational storage layer for millions of applications, holding vast lakes of unstructured data like PDFs, images, and log files. S3 Annotations allows developers to attach rich, AI-readable metadata directly at the object level.[1][2]

This tagging mechanism is crucial for feeding the context layer. By annotating a PDF not just with its creation date, but with its semantic role (e.g., "Q3 Financial Compliance Audit"), agents can filter and weigh the importance of documents before they even begin reading them, reducing processing time and cloud compute costs.[2][4]

The third pillar of the release is a preview of "skill assets" integrated into the AWS Glue Data Catalog. While AWS Context tells the agent what the data means, the Glue skill assets tell the agent what it is allowed to do with it. It acts as a centralized directory of executable functions.[1][5]

The new context intelligence stack combines relational memory, data tagging, and executable skills.
The new context intelligence stack combines relational memory, data tagging, and executable skills.

For example, if an agent determines that a customer is eligible for a refund based on the knowledge graph, it needs to know how to actually process that refund. The Glue Data Catalog now allows enterprises to register specific APIs and scripts as "skills," complete with parameters and permissions, which the agent can discover and invoke autonomously.[2][5]

This automated approach to context building is not without its challenges. Security and governance teams face new hurdles when relationships are inferred dynamically. If an agent connects a public marketing document to a highly classified internal roadmap, the system must ensure that subsequent users without clearance cannot traverse that newly created edge in the graph.[4][5]

AWS has stated that AWS Context inherits the underlying identity and access management (IAM) permissions of the data it maps, meaning the graph respects existing security boundaries. However, auditing a self-updating web of relationships will require new paradigms in enterprise compliance.[2][4]

Automating the context layer reduces the manual curation burden on enterprise data engineering teams.
Automating the context layer reduces the manual curation burden on enterprise data engineering teams.

Despite these governance questions, the industry reaction has been largely optimistic. By abstracting away the bespoke engineering work traditionally required to build a context layer, AWS is lowering the barrier to entry for companies looking to deploy sophisticated AI agents.[1][5]

As the generative AI race matures, the competitive moat is shifting from who has the largest foundational model to who can most effectively ground those models in proprietary enterprise reality. With this context intelligence stack, AWS is positioning its ecosystem as the most frictionless place to build that reality.[4][5]

How we got here

  1. 2023

    Retrieval-Augmented Generation (RAG) becomes the standard for connecting enterprise documents to language models.

  2. 2024

    Graph RAG emerges as a concept, combining vector search with manually curated knowledge graphs to improve AI reasoning.

  3. 2025

    The industry shifts focus from conversational chatbots to autonomous AI agents capable of executing workflows.

  4. June 2026

    AWS launches its context intelligence stack, automating the creation of knowledge graphs through agent usage.

Viewpoints in depth

Enterprise Cloud Architects

View the automated context layer as a massive time-saver that eliminates the need for bespoke, manually curated graph databases.

For the engineers tasked with building enterprise AI, the bottleneck has rarely been the intelligence of the language models themselves. The primary friction point is data preparation. Building a custom context layer historically required standing up a graph database, writing complex ETL (Extract, Transform, Load) pipelines, and constantly updating the ontology as the business evolved. Cloud architects view AWS Context as a managed service that abstracts away this heavy lifting, allowing teams to focus on building agent workflows rather than maintaining the semantic plumbing beneath them.

AI Researchers

Focus on the technical milestone of using LLM agents to autonomously construct and refine ontologies.

From an academic and research perspective, the AWS announcement validates a growing consensus: the best tool for organizing data for an AI is the AI itself. Researchers point out that human-curated knowledge graphs are inherently limited by the biases and bandwidth of their creators. By allowing agents to infer relationships dynamically based on successful task resolution, the graph becomes a living, empirical map of how a company actually operates, capturing nuanced connections that human engineers might overlook.

Data Governance Teams

Emphasize the need for strict access controls when AI systems begin inferring new data relationships dynamically.

Security professionals approach dynamic context layers with cautious optimism. While the efficiency gains are clear, a self-updating knowledge graph introduces novel risks. If an agent infers a relationship between an anonymized dataset and a public directory, it could inadvertently de-anonymize sensitive information. Governance teams stress that as these graphs become more autonomous, the underlying identity and access management (IAM) frameworks must become more granular, ensuring that an inferred connection does not inadvertently bypass established security clearances.

What we don't know

  • How AWS Context will price its dynamic graph updates, given the compute required to constantly infer new relationships.
  • The latency impact of querying the knowledge graph during real-time agent workflows.
  • How easily enterprises can export their dynamically generated ontologies if they choose to migrate to a multi-cloud setup.

Key terms

Knowledge Graph
A database that stores information as a network of connected concepts and relationships, rather than in flat tables or isolated documents.
AI Agent
An artificial intelligence system designed not just to answer questions, but to autonomously plan and execute multi-step tasks across different software tools.
Retrieval-Augmented Generation (RAG)
A technique where an AI model searches a database for relevant information to include in its answer, reducing the chance of it making up false facts.
Ontology
In computer science, a set of concepts and categories in a subject area that shows their properties and the relations between them.

Frequently asked

What is a context layer in AI?

A context layer is the infrastructure that sits between an AI model and a company's raw data. It organizes unstructured information so the AI can understand relationships, permissions, and business logic before answering a prompt.

How does AWS Context differ from existing graph databases?

Traditional graph databases require human engineers to manually define how different pieces of data relate to each other. AWS Context uses AI agents to observe data usage and automatically infer and update those relationships over time.

What are S3 Annotations?

S3 Annotations allow developers to attach rich, AI-readable metadata tags directly to files stored in Amazon S3, helping AI agents quickly understand what a file is without having to read its entire contents.

Sources

Source coverage

5 outlets

3 viewpoints surfaced

Enterprise Cloud Architects 40%AI Researchers 30%Data Governance Teams 30%
  1. [1]VentureBeatEnterprise Cloud Architects

    AWS enters the context layer race with a graph that learns from agents, not manual curation

    Read on VentureBeat
  2. [2]AWS Machine Learning BlogEnterprise Cloud Architects

    Introducing AWS Context: Dynamic Knowledge Graphs for Generative AI

    Read on AWS Machine Learning Blog
  3. [3]arXivAI Researchers

    Automated Knowledge Graph Construction via Large Language Model Agent Interactions

    Read on arXiv
  4. [4]IEEE Cloud ComputingData Governance Teams

    The Evolution of Enterprise Context Layers in the Generative Era

    Read on IEEE Cloud Computing
  5. [5]Factlen Editorial TeamData Governance Teams

    Synthesis by Factlen editorial team

    Read on Factlen Editorial Team
Stay informed

Every angle. Every day.

Get technology stories with full source coverage and perspective breakdowns delivered to your inbox.