Amazon Bedrock AgentCore


1. 介绍

1.1. 平台定位

Amazon Bedrock AgentCore(下称 AgentCore)是亚马逊云科技(AWS)推出的「生产级 AI 智能体平台」,官方口径为 "The platform for production AI agents. Any framework. Any model. Secure at scale."。它的核心主张是:构建一个 Agent 很快,但把它接入企业系统、保障工具调用安全、调试异常行为、无重构地规模化,才是真正的工程负担——AgentCore 把这层负担产品化

与组内既有平台对比,AgentCore 的独特之处在于:它不提供「又一个 Agent 框架」,而是提供一套托管多租户 Harness 运行时——开发者可以带任意框架(LangChain、LangGraph、CrewAI、AutoGen、OpenAI Agents SDK、Claude Agent SDK、Strands SDK)与任意模型进入,平台负责执行隔离、工具网关、记忆、身份、策略、观测与评估。这使它成为本组中「云厂商 Runtime 型」谱系的代表:Harness 不属于任何单一模型厂商,而是作为云基础设施层独立售卖。

1.2. Basic Information Card

ItemDetailConfidence
DeveloperAWS (Amazon Web Services)High (official)
Release date2025-07 preview; 2025-10 GA; 2026-06 AgentCore Harness GA; 2026-08-06 Runtime instances launchedHigh (official updates + consistent multi-source media)
FormManaged cloud service (composable components), not a single frameworkHigh
Open / closed sourcePlatform closed-source (commercial cloud service)High
PricingComponents billed per usage; public knowledge tier Web Search at $7 / 1,000 queries; Harness per-unit pricing table Medium
Core componentsSeven components — Runtime, Gateway, Memory, Identity, Policy, Observability, Tools — plus the AgentCore Harness configurational wrapperHigh
Execution isolationFirecracker microVM serverless executionHigh
Policy engineNatural language to Cedar policies (Policy, 2026-03 GA); 2026-08 added temporal policies based on open-source language DogwoodMedium-High
Ecosystem compatibilityLangChain / LangGraph / CrewAI / AutoGen / OpenAI Agents SDK / Claude Agent SDK / Strands SDKHigh (official product page)
Commercial validationHundreds of thousands of Bedrock customers; 2026 Q2 customer spend exceeding all prior quarters combined (per brokerage reporting)Medium

1.3. Development Timeline

时间事件来源等级
2025-07AgentCore 公开预览
2025-10AgentCore GA(正式可用)
2026-03Policy 正式版 GA:自然语言生成 Cedar 策略
2026-06-17公共知识层 Web Search GA:$7 / 1,000 次查询,索引数百亿文档、分钟级刷新、支持 MCP 调用
2026-06-18AgentCore Harness 官宣 GA(6-23 AWS Summit China 亦有同步口径)
2026-08-06Runtime instances 上线:长周期 Agent 持久化托管算力,最长 14 天会话、GPU 加速、同实例多 Agent 协作
2026-08Policy 扩展:基于开源策略语言 Dogwood 的时序策略

1.4. 在 AI Harness 体系中的位置

按参数卡的边界定义,AgentCore 是 Agent Platform 与 Agent Runtime 的混合体:它既不是纯框架(不限定编排写法),也不是垂直产品(不隐藏 Harness 机制),而是把 Harness 六层作为可独立选购的云组件对外提供。这一形态在既有 14 篇中无对应物——Claude Agent SDK / OpenAI Agents SDK 绑定自家模型,百炼绑定 Qwen 与阿里云,而 AgentCore 明确主张「模型与框架解耦」。

另一个重要坐标:AWS 自家编码智能体 Kiro 是 AgentCore 的「超级用户」——Kiro 是写 Agent 的 IDE,AgentCore 是跑 Agent 的平台,二者构成 AWS 的「开发—运行」闭环(与既有 12-kiro.md 形成组内交叉引用)。

2. 名词解释

术语英文/缩写释义
AgentCoreAgentCoreAWS 的生产级智能体平台,组件化提供运行时、工具网关、记忆、身份、策略、观测与内置工具
RuntimeAgentCore Runtime无服务器 Agent 执行环境,基于 Firecracker microVM 实现会话级隔离
Runtime instancesRuntime Instances2026-08-06 上线的长周期持久化托管算力:最长 14 天会话、GPU 加速、同实例多 Agent 协作
FirecrackerFirecrackerAWS 开源的 microVM 虚拟化技术,Lambda 与 Fargate 同款隔离基座
GatewayAgentCore Gateway统一工具网关:把 API、Lambda 函数、MCP Server 转换为 Agent 可调用的工具,并处理 OAuth 与 Token 轮换
MemoryAgentCore Memory托管记忆服务:短期记忆、长期记忆与情景记忆(Episodic,最长 8 小时)三模式
IdentityAgentCore Identity出入站认证与授权:代理对外的身份与对内资源的访问控制
PolicyAgentCore Policy策略引擎:自然语言描述转 Cedar 策略,控制 Agent 可执行的操作边界
CedarCedarAWS 开源的可验证策略语言,Aviatrix / AWS Verified Permissions 同款
DogwoodDogwood2026-08 出现的开源策略语言,AgentCore 基于其提供时序(temporal)策略能力
ObservabilityAgentCore Observability观测层:CloudWatch 原生轨迹、Insights 跨会话失败模式分析、A/B 测试
EvaluatorEvaluatorBedrock 内置的 13 个评估器,覆盖质量与安全维度
AgentCore HarnessHarness配置化构建 Agent 的封装层:仅 CreateHarness / InvokeHarness 两个 API,模型、工具、技能、指令全部以配置定义
CreateHarness / InvokeHarnessHarness 的两个 API:前者创建(装配配置),后者调用(运行会话)
GuardrailsBedrock GuardrailsBedrock 的护栏机制,在网关层实时拦截提示注入、有害内容与敏感数据泄露
三层知识体系Knowledge Tiers企业知识层(Bedrock 托管知识库)+ 公共知识层(Web Search)+ 付费知识层(支付与变现)
Strands SDKStrandsAWS 开源的 Agent SDK,与 AgentCore 深度集成的官方推荐框架
SupervisorSupervisor 模式多 Agent 协作模式:主 Agent 分发任务给子 Agent 并汇总结果

3. 功能说明

3.1. 七大组件

组件职责关键细节
RuntimeAgent 执行Firecracker microVM 隔离;无服务器弹性;2026-08 起支持 Runtime instances 长周期任务(14 天、GPU、同实例多 Agent)
Gateway工具接入API / Lambda / MCP Server 统一转为工具;出入站认证、OAuth、Token 轮换托管
Memory记忆短期(会话内)、长期(跨会话)、Episodic(情景回放,最长 8 小时)三种模式
Identity身份Agent 的入站身份(谁在驱动它)与出站身份(它以谁的名义调资源)
Policy策略自然语言 → Cedar 策略;2026-08 起支持 Dogwood 时序策略(如「仅工作时间允许」)
Observability观测CloudWatch 原生轨迹 + Insights 跨会话失败模式分析 + A/B 测试
Tools内置工具代码解释器、浏览器、Web Search(2026-06-17 GA)

3.2. AgentCore Harness

2026-06 GA 的 Harness 是 AgentCore 从「组件超市」走向「产品化封装」的标志:

  1. 两个 API 的极简面:CreateHarness(创建:装配模型、工具、技能、指令配置)+ InvokeHarness(调用:运行会话);
  2. 配置即定义:模型、工具、技能、指令全部以配置声明,不写编排代码;
  3. Harness 与模型解耦:支持会话中途切换模型——这是本组 21 个平台中极罕见的能力,模型故障或成本考量时可在不中断会话的情况下迁移;
  4. 与七组件的关系:Harness 是七组件之上的「配置化封装」,底层仍由 Runtime / Memory / Policy 等承接。

3.3. 三层知识体系

载体说明
企业知识层Bedrock 托管知识库(Managed Knowledge Base)企业私有文档的检索增强
公共知识层Web Search(2026-06-17 GA)$7 / 1,000 次查询;索引数百亿文档、分钟级刷新;支持 MCP 调用
付费知识层AgentCore 支付 + WAF AI 流量变现Agent 调用付费内容时可完成支付闭环;内容方经 WAF 对 AI 流量计费变现

付费知识层的含义超出常规 RAG 范畴:它为「Agent 经济」提供了基础设施雏形——内容提供方可以对 Agent 的消费行为收费,这是本组中独有的设计。

3.4. 框架与模型生态

  • 框架侧:官方明确兼容 LangChain、LangGraph、CrewAI、AutoGen、OpenAI Agents SDK、Claude Agent SDK、Strands SDK 及自研框架,强调「笔记本上跑的同一份代码可直接部署到生产」;
  • 模型侧:经 Bedrock 接入多家模型厂商,且 Harness 支持会话中切换;
  • Kiro 闭环:Kiro(AWS 编码智能体 IDE)开发的 Agent 可直接部署到 AgentCore 运行,形成 AWS 内部的开发—运行闭环。

4. 平台架构

4.1. 组件分层

AgentCore 的架构可概括为四层:

  1. 接入层:任意框架(LangChain / CrewAI / MAF / Strands 等)或 AgentCore Harness 配置;
  2. Harness 层:CreateHarness / InvokeHarness 配置化封装 + Bedrock Guardrails 护栏;
  3. 组件层:Runtime(microVM 执行)、Gateway(工具网关)、Memory(记忆)、Identity(身份)、Policy(策略)、Observability(观测)、Tools(内置工具);
  4. 资源层:Bedrock 模型层(多厂商模型,会话中可切换)+ 三层知识体系 + 企业现有系统(经 Gateway 接入)。

4.2. 一次 Agent 调用的处理流

  1. 开发者以 CreateHarness 声明模型、工具、技能与指令(或以任意框架编写 Agent);
  2. InvokeHarness 触发会话,Runtime 分配 microVM 隔离实例;
  3. Identity 完成出入站认证,Policy 校验本次操作是否越界;
  4. Gateway 将目标 API / Lambda / MCP Server 装配为工具调用;
  5. Memory 注入短期与长期记忆,工具结果经三层知识补充上下文;
  6. 执行全程写入 Observability(CloudWatch 轨迹),Guardrails 在网关层实时拦截风险内容;
  7. 长周期任务由 Runtime instances 持久化承载(最长 14 天),异常由 Insights 做跨会话失败模式归因。

5. Harness 设计

5.1. 六层能力总览

名称评级判断依据
L1上下文工程三层知识体系 + Episodic 记忆回溯 + Web Search 分钟级刷新
L2工具与执行Firecracker microVM 隔离 + Gateway 万能适配器 + 代码解释器 / 浏览器 / Web Search
L3编排与控制Supervisor 多 Agent 协作 + Runtime instances 长周期任务(14 天)+ 会话中切换模型
L4记忆与状态Memory 三模式(短期 / 长期 / Episodic 8 小时)
L5评估与观测CloudWatch 原生轨迹 + Insights 失败模式分析 + A/B + 13 个内置 Evaluator
L6治理与安全Cedar / Dogwood 策略引擎 + Guardrails + Identity 出入站认证

AgentCore 是本批 7 个补充平台中六层完成度最高的平台,且六层均为「组件可独立选购」的云服务形态,与 Microsoft Agent Framework(框架形态的六层全强)、阿里云百炼(平台 + 开源双轨的六层全强)构成三种不同的「全强实现路径」。

5.2. L1 上下文工程层

  • 三层知识体系是 AgentCore 的 L1 主轴:企业知识(托管 KB)、公共知识(Web Search)、付费知识(支付变现)三级来源在同一会话中融合;
  • Web Search 连接器索引数百亿文档、分钟级刷新,缓解「公共知识过期」问题;
  • Episodic Memory(最长 8 小时)提供情景级回溯,适合「回放刚才发生了什么」的调试与审计场景;
  • 上下文压缩机制细节未公开(属于托管服务内部),可配置粒度 。

5.3. L2 工具与执行层

  • Firecracker microVM:与 Lambda 同源的隔离基座,是本组中隔离强度最高的执行环境之一(microVM 级,非容器级);
  • Gateway 是「万能适配器」:API、Lambda、MCP Server 三类目标统一转工具,且认证与 Token 轮换托管——把组内其他平台要求自建的工具鉴权层产品化;
  • 内置代码解释器、浏览器、Web Search 三类 hosted 工具;
  • GPU 加速执行(Runtime instances)覆盖模型推理敏感型任务。

5.4. L3 编排与控制层

  • Supervisor 模式:主 Agent 分发任务、子 Agent 执行、主 Agent 汇总;Runtime instances 支持同实例多 Agent 协作;
  • 长周期任务:最长 14 天会话是本组中最长的持久化会话窗口(对比:LangGraph 持久执行无明确上限但需自建后端,OpenAI Agents API 口径为「数小时至数天」);
  • 编排自由度:不限定编排写法(图 / 循环 / handoff 均可),L3 的「强」体现在承载能力而非编排原语——编排原语本身交给框架层;
  • 中断与恢复:依托托管实例持久化,细粒度 interrupt / time travel 原语不及 LangGraph。

5.5. L4 记忆与状态层

模式范围用途
短期记忆会话内多轮对话状态
长期记忆跨会话用户偏好、事实沉淀
Episodic(情景)最长 8 小时事件级回放与归因

与组内对比:LangGraph 以 Checkpointer + Store 提供机制原语(自建后端),AgentCore 提供托管服务(免运维);ADK 区分四作用域 State,语义更细。AgentCore 的 Episodic 记忆带时间上限(8 小时),适合运维排障而非超长周期个性化。

5.6. L5 评估与观测层

  • CloudWatch 原生轨迹:每一步工具调用与模型调用可追溯;
  • Insights:跨会话的失败模式自动分析——把「调试单个会话」提升为「归因一类失败」,这是本组中少见的批量归因能力;
  • A/B 测试:对真实流量做变体对比,「让数据决定发布哪个版本」(官方口径);
  • 13 个内置 Evaluator:覆盖质量与安全维度的标准化打分;
  • 缺口:Evaluator 的具体清单与计分口径未完整公开,回归集管理需结合外部工具。

5.7. L6 治理与安全层

  • Policy 引擎:自然语言描述直接生成 Cedar 策略,降低策略工程门槛;2026-08 的 Dogwood 时序策略补上「时间维度授权」(如仅工作时间、仅特定窗口执行);
  • Bedrock Guardrails:网关层实时拦截提示注入、有害内容与敏感数据泄露;
  • Identity 出入站双向:Agent 既可被身份化调用(谁驱动它),也能以受控身份访问资源(它以谁的名义行动)——这是云厂商独有的 IAM 积淀;
  • 成本治理:组件按量计费天然形成成本可见性,但预算硬护栏的配置粒度 。

5.8. 六层能力示意

图 15-1|AgentCore 托管 Harness 运行时分层示意

AgentCore 托管 Harness 运行时分层 AgentCore Harness(CreateHarness / InvokeHarness) 模型 · 工具 · 技能 · 指令全部配置定义;会话中可切换模型 七大托管组件 Runtime Gateway Memory Identity Policy Observability Tools microVM 执行 API/Lambda/MCP 短期/长期/情景 出入站认证 Cedar/Dogwood 轨迹/A/B/Insights 解释器/浏览器 护栏:Bedrock Guardrails 于网关层实时拦截(提示注入 / 有害内容 / 敏感数据) 三层知识体系 企业知识(托管 KB)· 公共知识(Web Search) 付费知识(支付 + WAF AI 变现) 模型与框架(解耦) Bedrock 多厂商模型,会话中可切换 LangChain / CrewAI / MAF / Strands 等任意框架 Runtime instances(2026-08):最长 14 天会话 · GPU 加速 · 同实例多 Agent 协作 Kiro(写 Agent 的 IDE)→ AgentCore(跑 Agent 的平台)构成 AWS 内部闭环 示意:基于本文分析,非官方架构图

数据来源:AWS 官方产品页与公开更新(截至 2026-09-12),示意。

6. 实际案例

案例一:Kiro 与 AgentCore 的开发—运行闭环(厂商口径)

Kiro 是 AWS 的编码智能体 IDE(详见既有 12-kiro.md),同时是 AgentCore 的「超级用户」:在 Kiro 中开发的 Agent 可直接部署到 AgentCore 运行,构成「写 Agent 的工具 + 跑 Agent 的平台」闭环。该案例为厂商叙事口径,未检索到独立的第三方验证。

案例二:Bedrock 商业增长(券商转述口径)

Bedrock 客户数达数十万量级,2026 Q2 客户支出超过此前所有季度合计(AWS 财报口径,经券商研报转述)。AgentCore 作为 Bedrock 之上的 Agent 层,其独立收入贡献未单独披露。

未检索到公开量化数据的部分:AgentCore 自身(Harness、Runtime instances、Memory 等)的客户案例数量、任务成功率提升、成本下降百分比等工程指标,均未检索到带可验证数据的公开案例;中国区(北京 / 宁夏)的可用性与 Web Search 合规性亦未确认。此处如实标注,不做补全。

7. 总结

7.1. 优点

  1. 六层全强且组件可拆:六层均为独立云组件,可只选 Runtime + Gateway,也可整体采用 Harness;
  2. 隔离强度高:Firecracker microVM 是本组最强的执行隔离基座之一;
  3. 模型与框架双解耦:任意框架进入、多厂商模型承载、会话中切换模型,锁定风险最低;
  4. 长周期任务能力:14 天会话窗口是本组中最长的托管持久化能力;
  5. 治理纵深:Cedar / Dogwood 策略 + Guardrails + IAM 级 Identity,受监管行业友好;
  6. L5 批量归因:Insights 的跨会话失败模式分析与 A/B 测试是评估层的稀缺能力。

7.2. 缺点

  1. AWS 锁定:隔离基座、策略语言(Cedar)、IAM 体系均深度绑定 AWS 云;
  2. 组件拼装成本:七组件 + Harness 的组合对小团队而言学习曲线偏陡;
  3. 中国区不确定:北京 / 宁夏区域可用性与 Web Search 合规性未确认,国内落地存疑;
  4. 可观测细粒度不及自建:Trace 细节与自定义指标的自由度受托管服务边界约束;
  5. 价格透明度:Harness 按量单价表未完整公开,成本估算困难。

7.3. 适用边界

场景是否适用理由
已在 AWS 生态、需生产级 Agent 运行时最适用组件与 IAM / Guardrails 无缝衔接
多框架、多模型混用的企业最适用框架与模型双解耦
跨天级长周期任务适用Runtime instances 14 天窗口
受监管行业的 Agent 治理适用Cedar 策略 + Guardrails + 审计
国内信创环境不适用中国区可用性未确认
深度自定义编排原语需权衡编排原语交给框架层,细粒度控制不如 LangGraph

7.4. 选型建议

  • 与 Microsoft Agent Framework 对比:MAF 是「框架形态的六层全强」(代码在手),AgentCore 是「云服务形态的六层全强」(运维外包)——工程团队自建优先 MAF,平台团队托管优先 AgentCore;
  • 与阿里云百炼对比:二者同为云厂商 Runtime 型,百炼胜在国产生态与评测训练闭环(OpenJudge + RFT),AgentCore 胜在模型解耦与隔离强度;
  • 若仅需框架而不托管,LangGraph / MAF 等开源框架 + 自建沙箱是低成本替代。

信息缺口声明

  1. Harness 定价:AgentCore Harness 的按量付费单位价格表未获官方完整披露,标 。
  2. 中国区可用性:北京 / 宁夏区域的组件覆盖与 Web Search 合规性未确认,标 。
  3. Dogwood 策略语言:开源仓库地址与规范细节未核验,标 。
  4. 上下文压缩机制:托管层内部的上下文压缩策略与可配置粒度未公开,标 。
  5. Evaluator 清单:13 个内置 Evaluator 的具体名称与计分口径未完整公开。
  6. 客户工程指标:未检索到带可验证数据的第三方客户案例;Kiro 闭环为厂商叙事口径。
  7. Runtime instances 定价:长周期实例的 GPU 型号与计费方式未完整披露,标 。

8. 参考资料

  1. Amazon Bedrock AgentCore — AWS 官方产品页。https://aws.amazon.com/bedrock/agentcore/
  2. Amazon Bedrock AgentCore — AWS 官方文档。https://docs.aws.amazon.com/bedrock-agentcore/
  3. AWS 官宣 AgentCore Harness GA 相关报道 — 新浪财经,2026-06-18。https://finance.sina.com.cn/stock/t/2026-06-18/doc-inicuyvt6508873.shtml
  4. AgentCore Harness 与 Runtime instances 更新报道 — 新浪科技,2026-06-18。https://finance.sina.com.cn/tech/roll/2026-06-18/doc-inicvfcr6499767.shtml
  5. Amazon Bedrock Guardrails — AWS 官方文档。https://aws.amazon.com/bedrock/guardrails/
  6. Kiro — AWS 编码智能体 IDE 官网。https://kiro.dev/
  7. Amazon Bedrock 智能体与知识库 — AWS 官方。https://aws.amazon.com/bedrock/
  8. 中信建投证券:AWS Bedrock AgentCore 产业链研报(2026,经 ima.qq.com 转载)— 文献名 + 机构 + 年份,原文 URL 未核验。
  9. R18-IDE-Agents-补充平台 检索报告 — 本项目内部检索报告(AG-1 关键事实卡)。
  10. 项目参数卡 v1.1(Harness 六层能力模型)— 本项目内部基准文件。

Amazon Bedrock AgentCore

1. Introduction

1.1. Platform Positioning

Amazon Bedrock AgentCore (hereinafter "AgentCore") is a "production-grade AI agent platform" launched by Amazon Web Services (AWS), officially described as "The platform for production AI agents. Any framework. Any model. Secure at scale." Its core proposition is: building an Agent is fast, but integrating it into enterprise systems, securing tool calls, debugging anomalous behavior, and scaling without refactoring are the real engineering burden — AgentCore productizes this burden.

Compared with existing platforms in this group, what distinguishes AgentCore is that it does not offer "yet another Agent framework" but rather a managed multi-tenant Harness runtime — developers can bring any framework (LangChain, LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, Claude Agent SDK, Strands SDK) and any model, while the platform handles execution isolation, tool gateway, memory, identity, policy, observability, and evaluation. This makes it the representative of the "cloud-vendor Runtime type" lineage in this group: Harness does not belong to any single model vendor but is sold independently as a cloud infrastructure layer.

1.2. Basic Information Card

ItemDetailConfidence
DeveloperAWS (Amazon Web Services)High (official)
Release date2025-07 preview; 2025-10 GA; 2026-06 AgentCore Harness GA; 2026-08-06 Runtime instances launchedHigh (official updates + consistent multi-source media)
FormManaged cloud service (composable components), not a single frameworkHigh
Open / closed sourcePlatform closed-source (commercial cloud service)High
PricingComponents billed per usage; public knowledge tier Web Search at $7 / 1,000 queries; Harness per-unit pricing tableMedium
Core componentsSeven components — Runtime, Gateway, Memory, Identity, Policy, Observability, Tools — plus the AgentCore Harness configurational wrapperHigh
Execution isolationFirecracker microVM serverless executionHigh
Policy engineNatural language to Cedar policies (Policy, 2026-03 GA); 2026-08 added temporal policies based on the open-source policy language DogwoodMedium-High
Ecosystem compatibilityLangChain / LangGraph / CrewAI / AutoGen / OpenAI Agents SDK / Claude Agent SDK / Strands SDKHigh (official product page)
Commercial validationHundreds of thousands of Bedrock customers; 2026 Q2 customer spend exceeding all prior quarters combined (per brokerage reporting)Medium

1.3. Development Timeline

TimeEventSource Level
2025-07AgentCore public previewHigh
2025-10AgentCore GA (generally available)High
2026-03Policy GA: natural language generates Cedar policiesHigh
2026-06-17Public knowledge tier Web Search GA: $7 / 1,000 queries, indexes tens of billions of documents, minute-level refresh, supports MCP invocationHigh
2026-06-18AgentCore Harness officially announced GA (6-23 AWS Summit China also synchronized)High
2026-08-06Runtime instances launched: long-running Agent persistent managed compute, sessions up to 14 days, GPU acceleration, multi-Agent collaboration on the same instanceHigh
2026-08Policy extension: temporal policies based on the open-source policy language DogwoodMedium

1.4. Position within the AI Harness System

By the parameter card's boundary definitions, AgentCore is a hybrid of an Agent Platform and an Agent Runtime: it is neither a pure framework (no restrictions on orchestration style) nor a vertical product (it does not hide the Harness mechanism), but rather exposes the six Harness layers as independently purchasable cloud components. This form has no counterpart among the existing 14 documents — Claude Agent SDK / OpenAI Agents SDK are bound to their own models, and Bailian is bound to Qwen and Alibaba Cloud, while AgentCore explicitly advocates "decoupling models from frameworks".

Another important coordinate: AWS's own coding agent Kiro is AgentCore's "super user" — Kiro is the IDE for writing Agents, and AgentCore is the platform for running Agents; together they form AWS's "develop-run" closed loop (cross-referencing the existing 12-kiro.md within this group).

2. Glossary

TermEnglish / AbbreviationDefinition
AgentCoreAgentCoreAWS's production-grade agent platform, providing runtime, tool gateway, memory, identity, policy, observability, and built-in tools as components
RuntimeAgentCore RuntimeServerless Agent execution environment, achieving session-level isolation via Firecracker microVM
Runtime instancesRuntime InstancesLong-running persistent managed compute launched 2026-08-06: sessions up to 14 days, GPU acceleration, multi-Agent collaboration on the same instance
FirecrackerFirecrackerAWS's open-source microVM virtualization technology, the same isolation foundation used by Lambda and Fargate
GatewayAgentCore GatewayUnified tool gateway: converts APIs, Lambda functions, and MCP Servers into tools callable by Agents, and handles OAuth and Token rotation
MemoryAgentCore MemoryManaged memory service: three modes — short-term, long-term memory, and episodic memory (up to 8 hours)
IdentityAgentCore IdentityInbound and outbound authentication and authorization: the Agent's external identity and access control over internal resources
PolicyAgentCore PolicyPolicy engine: converts natural-language descriptions into Cedar policies, governing the boundary of operations an Agent may perform
CedarCedarAWS's open-source verifiable policy language, the same one used by Aviatrix / AWS Verified Permissions
DogwoodDogwoodOpen-source policy language that emerged in 2026-08, on which AgentCore bases its temporal policy capabilities
ObservabilityAgentCore ObservabilityObservability layer: CloudWatch-native traces, Insights cross-session failure-pattern analysis, A/B testing
EvaluatorEvaluatorBedrock's 13 built-in evaluators, covering quality and safety dimensions
AgentCore HarnessHarnessConfiguration-driven wrapper for building Agents: only two APIs, CreateHarness / InvokeHarness, with models, tools, skills, and instructions all defined via configuration
CreateHarness / InvokeHarnessHarness's two APIs: the former creates (assembles configuration), the latter invokes (runs a session)
GuardrailsBedrock GuardrailsBedrock's guardrail mechanism, intercepting prompt injection, harmful content, and sensitive data leakage in real time at the gateway layer
Three-tier knowledge systemKnowledge TiersEnterprise knowledge tier (Bedrock managed knowledge base) + public knowledge tier (Web Search) + paid knowledge tier (payments and monetization)
Strands SDKStrandsAWS's open-source Agent SDK, the officially recommended framework deeply integrated with AgentCore
SupervisorSupervisor modeMulti-Agent collaboration mode: the main Agent distributes tasks to sub-Agents and aggregates the results

3. Feature Description

3.1. The Seven Components

ComponentResponsibilityKey Details
RuntimeAgent executionFirecracker microVM isolation; serverless elasticity; from 2026-08 supports Runtime instances long-running tasks (14 days, GPU, multi-Agent on the same instance)
GatewayTool integrationUnifies API / Lambda / MCP Server into tools; managed inbound/outbound auth, OAuth, Token rotation
MemoryMemoryThree modes: short-term (within session), long-term (cross-session), Episodic (episode replay, up to 8 hours)
IdentityIdentityThe Agent's inbound identity (who drives it) and outbound identity (whose behalf it calls resources on)
PolicyPolicyNatural language → Cedar policies; from 2026-08 supports Dogwood temporal policies (e.g. "only allowed during work hours")
ObservabilityObservabilityCloudWatch-native traces + Insights cross-session failure-pattern analysis + A/B testing
ToolsBuilt-in toolsCode interpreter, browser, Web Search (2026-06-17 GA)

3.2. AgentCore Harness

The Harness that went GA in 2026-06 marks AgentCore's shift from a "component supermarket" toward a "productized wrapper":

  1. The minimalist surface of two APIs: CreateHarness (create: assembles model, tool, skill, and instruction configuration) + InvokeHarness (invoke: runs a session);
  2. Configuration as definition: models, tools, skills, and instructions are all declared via configuration, with no orchestration code written;
  3. Harness decoupled from models: supports switching models mid-session — an extremely rare capability among the 21 platforms in this group, allowing migration without interrupting the session during a model failure or for cost reasons;
  4. Relationship with the seven components: Harness is a "configurational wrapper" on top of the seven components, with the underlying layers still handled by Runtime / Memory / Policy, etc.

3.3. Three-Tier Knowledge System

TierCarrierDescription
Enterprise knowledge tierBedrock Managed Knowledge BaseRetrieval augmentation for enterprise private documents
Public knowledge tierWeb Search (2026-06-17 GA)$7 / 1,000 queries; indexes tens of billions of documents, minute-level refresh; supports MCP invocation
Paid knowledge tierAgentCore payments + WAF AI traffic monetizationAgents can complete a payment loop when calling paid content; content providers bill and monetize AI traffic via WAF

The paid knowledge tier goes beyond conventional RAG scope: it provides the prototype infrastructure for the "Agent economy" — content providers can charge for Agents' consumption behavior, a design unique in this group.

3.4. Framework and Model Ecosystem

  • Framework side: officially compatible with LangChain, LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, Claude Agent SDK, Strands SDK, and self-developed frameworks, emphasizing that "the same code that runs on a laptop can be deployed to production directly";
  • Model side: integrates multiple model vendors via Bedrock, and Harness supports switching mid-session;
  • Kiro closed loop: Agents developed in Kiro (AWS coding agent IDE) can be deployed directly to run on AgentCore, forming AWS's internal develop-run closed loop.

4. Platform Architecture

4.1. Component Layering

AgentCore's architecture can be summarized as four layers:

  1. Access layer: any framework (LangChain / CrewAI / MAF / Strands, etc.) or AgentCore Harness configuration;
  2. Harness layer: CreateHarness / InvokeHarness configurational wrapper + Bedrock Guardrails guardrails;
  3. Component layer: Runtime (microVM execution), Gateway (tool gateway), Memory (memory), Identity (identity), Policy (policy), Observability (observability), Tools (built-in tools);
  4. Resource layer: Bedrock model layer (multi-vendor models, switchable mid-session) + three-tier knowledge system + existing enterprise systems (integrated via Gateway).

4.2. Processing Flow of One Agent Invocation

  1. The developer declares models, tools, skills, and instructions with CreateHarness (or writes an Agent with any framework);
  2. InvokeHarness triggers a session, and Runtime allocates an isolated microVM instance;
  3. Identity completes inbound/outbound authentication, and Policy validates whether this operation is out of bounds;
  4. Gateway assembles the target API / Lambda / MCP Server into a tool invocation;
  5. Memory injects short-term and long-term memory, and tool results supplement context via the three-tier knowledge system;
  6. The entire execution is written to Observability (CloudWatch traces), and Guardrails intercept risky content in real time at the gateway layer;
  7. Long-running tasks are carried persistently by Runtime instances (up to 14 days), with anomalies attributed by Insights via cross-session failure-pattern analysis.

5. Harness Design

5.1. Six-Layer Capability Overview

LayerNameRatingBasis for Judgment
L1Context engineeringStrongThree-tier knowledge system + Episodic memory recall + Web Search minute-level refresh
L2Tools and executionStrongFirecracker microVM isolation + Gateway universal adapter + code interpreter / browser / Web Search
L3Orchestration and controlStrongSupervisor multi-Agent collaboration + Runtime instances long-running tasks (14 days) + mid-session model switching
L4Memory and stateStrongMemory three modes (short-term / long-term / Episodic 8 hours)
L5Evaluation and observabilityStrongCloudWatch-native traces + Insights failure-pattern analysis + A/B + 13 built-in Evaluators
L6Governance and securityStrongCedar / Dogwood policy engine + Guardrails + Identity inbound/outbound authentication

AgentCore is the platform with the highest six-layer completion among the 7 supplementary platforms in this batch, and all six layers take the form of a "cloud service with independently purchasable components". Together with Microsoft Agent Framework (a framework-form, all-six-layers-strong implementation) and Alibaba Cloud Bailian (a platform + open-source dual-track, all-six-layers-strong implementation), it constitutes three different "full-strength implementation paths".

5.2. L1 Context Engineering Layer

  • The three-tier knowledge system is the backbone of AgentCore's L1: three levels of sources — enterprise knowledge (managed KB), public knowledge (Web Search), and paid knowledge (payment monetization) — converge within the same session;
  • The Web Search connector indexes tens of billions of documents with minute-level refresh, mitigating the "outdated public knowledge" problem;
  • Episodic Memory (up to 8 hours) provides episode-level recall, suitable for debugging and audit scenarios such as "replaying what just happened";
  • The details of the context compression mechanism are not public (it is internal to the managed service); the configurable granularity is [To be verified].

5.3. L2 Tools and Execution Layer

  • Firecracker microVM: an isolation foundation of the same lineage as Lambda, one of the strongest execution environments in this group (microVM-level, not container-level);
  • Gateway is the "universal adapter": three target types — API, Lambda, MCP Server — are uniformly converted into tools, and authentication and Token rotation are managed — productizing the tool authentication layer that other platforms in this group require to be built in-house;
  • Three hosted tools are built in: code interpreter, browser, and Web Search;
  • GPU-accelerated execution (Runtime instances) covers model-inference-sensitive tasks.

5.4. L3 Orchestration and Control Layer

  • Supervisor mode: the main Agent distributes tasks, child Agents execute them, and the main Agent aggregates results; Runtime instances support multi-Agent collaboration on the same instance;
  • Long-running tasks: sessions of up to 14 days are the longest persistent-session window in this group (for comparison: LangGraph's persistent execution has no explicit upper limit but requires a self-built backend, while the OpenAI Agents API describes a window of "hours to days");
  • Orchestration freedom: no restriction on orchestration style (graph / loop / handoff all allowed); L3's "strength" lies in carrying capacity rather than orchestration primitives — the orchestration primitives themselves are delegated to the framework layer;
  • Interrupt and resume: relies on managed-instance persistence, but fine-grained interrupt / time travel primitives are not as mature as LangGraph's.

5.5. L4 Memory and State Layer

ModeScopePurpose
Short-term memoryWithin sessionMulti-turn conversation state
Long-term memoryCross-sessionUser preferences, accumulated facts
EpisodicUp to 8 hoursEvent-level replay and attribution

Comparison within this group: LangGraph provides mechanism primitives via Checkpointer + Store (self-built backend), while AgentCore offers a managed service (no operations burden); ADK distinguishes four scopes of State with finer semantics. AgentCore's Episodic memory carries a time cap (8 hours), suited to operations troubleshooting rather than very-long-horizon personalization.

5.6. L5 Evaluation and Observability Layer

  • CloudWatch-native traces: every tool call and model call can be traced;
  • Insights: automatic cross-session failure-pattern analysis — elevating "debugging a single session" to "attributing a class of failures", a batch-attribution capability rarely seen in this group;
  • A/B testing: variant comparison on real traffic, "let the data decide which version to release" (official statement);
  • 13 built-in Evaluators: standardized scoring covering quality and security dimensions;
  • Gap: the specific list and scoring methodology of the Evaluators are not fully published, and regression-set management must be combined with external tools.

5.7. L6 Governance and Security Layer

  • Policy engine: natural-language descriptions directly generate Cedar policies, lowering the barrier to policy engineering; the 2026-08 Dogwood temporal policies add "time-dimension authorization" (e.g. only during work hours, only within specific windows);
  • Bedrock Guardrails: real-time interception of prompt injection, harmful content, and sensitive-data leakage at the gateway layer;
  • Identity, bidirectional in/out: an Agent can both be invoked under an identity (who drives it) and access resources under a controlled identity (on whose behalf it acts) — a unique IAM heritage of cloud vendors;
  • Cost governance: per-usage component billing naturally creates cost visibility, but the configuration granularity of hard budget guardrails is [To be verified].

5.8. Six-Layer Capability Diagram

Figure 15-1 | AgentCore Managed Harness Runtime Layering Diagram

AgentCore 托管 Harness 运行时分层 AgentCore Harness(CreateHarness / InvokeHarness) 模型 · 工具 · 技能 · 指令全部配置定义;会话中可切换模型 七大托管组件 Runtime Gateway Memory Identity Policy Observability Tools microVM 执行 API/Lambda/MCP 短期/长期/情景 出入站认证 Cedar/Dogwood 轨迹/A/B/Insights 解释器/浏览器 护栏:Bedrock Guardrails 于网关层实时拦截(提示注入 / 有害内容 / 敏感数据) 三层知识体系 企业知识(托管 KB)· 公共知识(Web Search) 付费知识(支付 + WAF AI 变现) 模型与框架(解耦) Bedrock 多厂商模型,会话中可切换 LangChain / CrewAI / MAF / Strands 等任意框架 Runtime instances(2026-08):最长 14 天会话 · GPU 加速 · 同实例多 Agent 协作 Kiro(写 Agent 的 IDE)→ AgentCore(跑 Agent 的平台)构成 AWS 内部闭环 示意:基于本文分析,非官方架构图

Data source: AWS official product page and public updates (as of 2026-09-12), illustrative.

6. Real-World Cases

Case 1: The Kiro–AgentCore develop-run closed loop (vendor narrative)

Kiro is AWS's coding-agent IDE (see the existing 12-kiro.md) and is also AgentCore's "super user": Agents developed in Kiro can be deployed directly to run on AgentCore, forming the closed loop of "a tool for writing Agents + a platform for running Agents". This case is a vendor-narrative account; no independent third-party verification was found.

Case 2: Bedrock commercial growth (as relayed by brokerages)

Bedrock's customer count is in the hundreds of thousands, and 2026 Q2 customer spending exceeded the total of all prior quarters combined (per AWS earnings statements, as relayed through brokerage research reports). As the Agent layer on top of Bedrock, AgentCore's independent revenue contribution has not been disclosed separately.

Parts with no public quantitative data found: engineering metrics for AgentCore itself (Harness, Runtime instances, Memory, etc.) — such as customer-case counts, task-success-rate improvements, and cost-reduction percentages — had no public cases with verifiable data found; the availability in China (Beijing / Ningxia) and Web Search compliance also remain unconfirmed. This is stated as-is here, with no fabrication.

7. Summary

7.1. Advantages

  1. All six layers strong and components separable: all six layers are independent cloud components — you can choose only Runtime + Gateway, or adopt Harness as a whole;
  2. High isolation strength: Firecracker microVM is one of the strongest execution-isolation foundations in this group;
  3. Both model and framework decoupled: any framework can enter, multiple vendor models are carried, and models can be switched mid-session, minimizing lock-in risk;
  4. Long-running task capability: the 14-day session window is the longest managed-persistence capability in this group;
  5. Governance depth: Cedar / Dogwood policies + Guardrails + IAM-level Identity, friendly to regulated industries;
  6. L5 batch attribution: Insights' cross-session failure-pattern analysis and A/B testing are scarce capabilities at the evaluation layer.

7.2. Disadvantages

  1. AWS lock-in: the isolation foundation, policy language (Cedar), and IAM system are all deeply bound to the AWS cloud;
  2. Component assembly cost: the combination of seven components + Harness has a steep learning curve for small teams;
  3. China-region uncertainty: availability in the Beijing / Ningxia regions and Web Search compliance are unconfirmed, making domestic deployment doubtful;
  4. Observability granularity below self-built: the freedom of Trace details and custom metrics is constrained by the boundaries of the managed service;
  5. Price transparency: Harness's per-usage unit-price table is not fully public, making cost estimation difficult.

7.3. Applicability Boundary

ScenarioApplicable?Reason
Already in the AWS ecosystem, needs a production-grade Agent runtimeMost applicableComponents integrate seamlessly with IAM / Guardrails
Enterprise mixing multiple frameworks and modelsMost applicableBoth framework and model decoupled
Cross-day long-running tasksApplicableRuntime instances 14-day window
Agent governance in regulated industriesApplicableCedar policy + Guardrails + audit
Domestic Xinchuang (domestic-initiative) environmentNot applicableChina-region availability unconfirmed
Deep custom orchestration primitivesNeeds trade-offOrchestration primitives are delegated to the framework layer; fine-grained control inferior to LangGraph

7.4. Selection Recommendations

  • Comparison with Microsoft Agent Framework: MAF is "all six layers strong in framework form" (code in hand), while AgentCore is "all six layers strong in cloud-service form" (operations outsourced) — engineering teams building in-house prefer MAF, platform teams preferring managed prefer AgentCore;
  • Comparison with Alibaba Cloud Bailian: both are cloud-vendor Runtime types; Bailian wins on domestic ecosystem and the evaluation-and-training closed loop (OpenJudge + RFT), while AgentCore wins on model decoupling and isolation strength;
  • If only a framework is needed and not managed hosting, open-source frameworks such as LangGraph / MAF + a self-built sandbox are a low-cost alternative.

Information Gap Statement

  1. Harness pricing: AgentCore Harness's per-usage unit-price table has not been fully disclosed officially; marked [To be verified].
  2. China-region availability: component coverage in the Beijing / Ningxia regions and Web Search compliance are unconfirmed; marked [To be verified].
  3. Dogwood policy language: the open-source repository address and specification details have not been verified; marked [To be verified].
  4. Context compression mechanism: the context compression strategy and configurable granularity inside the managed layer are not public; marked [To be verified].
  5. Evaluator list: the specific names and scoring methodology of the 13 built-in Evaluators are not fully public.
  6. Customer engineering metrics: no third-party customer cases with verifiable data were found; the Kiro closed loop is a vendor-narrative account.
  7. Runtime instances pricing: the GPU models and billing method for long-running instances have not been fully disclosed; marked [To be verified].

8. References

  1. Amazon Bedrock AgentCore — AWS official product page. https://aws.amazon.com/bedrock/agentcore/
  2. Amazon Bedrock AgentCore — AWS official documentation. https://docs.aws.amazon.com/bedrock-agentcore/
  3. Coverage of AWS announcing AgentCore Harness GA — Sina Finance, 2026-06-18. https://finance.sina.com.cn/stock/t/2026-06-18/doc-inicuyvt6508873.shtml
  4. Coverage of AgentCore Harness and Runtime instances updates — Sina Tech, 2026-06-18. https://finance.sina.com.cn/tech/roll/2026-06-18/doc-inicvfcr6499767.shtml
  5. Amazon Bedrock Guardrails — AWS official documentation. https://aws.amazon.com/bedrock/guardrails/
  6. Kiro — AWS coding-agent IDE official site. https://kiro.dev/
  7. Amazon Bedrock Agents and Knowledge Bases — AWS official. https://aws.amazon.com/bedrock/
  8. CITIC Construction Investment Securities: AWS Bedrock AgentCore industry-chain research report (2026, republished via ima.qq.com) — document title + institution + year, original URL not verified.
  9. R18-IDE-Agents-supplementary-platforms search report — this project's internal search report (AG-1 key-facts card).
  10. Project parameter card v1.1 (Harness six-layer capability model) — this project's internal baseline document.