惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

Recent Announcements

Amazon EC2 X8i instances are now available in Europe (Paris) Amazon CloudWatch pipelines now supports drop and conditional processing AWS Deadline Cloud supports monitor creation in multiple regions Amazon CloudWatch pipelines introduces new compliance and governance capabilities Second-generation Amazon FSx for NetApp ONTAP is now available in four additional AWS commercial and AWS GovCloud (US) Regions AWS Billing and Cost Management Dashboards Now Supports Scheduled Email Delivery AWS RTB Fabric supports health checks for real-time bidding workloads AWS Backup extends Amazon FSx support to 5 additional AWS Regions and expands cross-Region and cross-account copy to 14 AWS Regions Amazon RDS now supports the latest CU and GDR updates for Microsoft SQL Server Amazon Timestream for InfluxDB Now Supports Customer-Defined Maintenance Windows Amazon Bedrock now supports cost allocation by IAM user and role Amazon OpenSearch Service supports Managed Prometheus and agent tracing Amazon S3 Lifecycle pauses actions on objects that are unable to replicate Amazon RDS Blue/Green Deployments now supports Amazon RDS Proxy AWS Marketplace announces the Discovery API for programmatic access to catalog data AWS Agent Registry for centralized agent discovery and governance is now available in Preview Amazon OpenSearch Serverless now supports Zstandard (zstd) codec for index compression AWS Private CA now supports customer managed permissions for cross-account sharing Amazon EC2 Capacity Manager now supports tag-based dimensions Amazon Route 53 Resolver endpoints now support DNS delegation for private hosted zones in AWS GovCloud (US) Regions SageMaker HyperPod now supports gang scheduling for distributed training workloads Amazon IVS 实时直播功能现已支持冗余摄取 Amazon EKS 托管节点组现在支持 EC2 Auto Scaling 暖池 Amazon Bedrock AgentCore 浏览器新增操作系统级交互功能 Amazon WorkSpaces Advisor now available for AI-powered troubleshooting Amazon OpenSearch Service now supports Graviton4 based i8ge instances Oracle Database@AWS is now available in twelve AWS Regions AWS Lambda expands response streaming support to all commercial AWS Regions AWS Cost Explorer launches Natural Language Query capabilities powered by Amazon Q Amazon Lightsail 现已在亚太地区(马来西亚)区域推出
Amazon Bedrock AgentCore 运行时引入用于代理会话终端访问的...
Amazon Web Services · 2026-06-06 · via Recent Announcements

发布于: 2026年6月5日

Amazon Bedrock AgentCore 运行时现在通过新的 InvokeAgentRuntimeCommandShell API 支持交互式 Shell,该 API 通过 WebSocket 打开一个持久的、由 PTY 支持的终端,直接接入正在运行的代理会话。这是对用于一次性执行的现有 InvokeAgentRuntimeCommand API 的补充,为开发人员提供了在隔离的 microVM 内的完整终端体验,支持颜色、制表符补全、Ctrl+C、终端大小调整以及网络断开时的自动重连。

这对于在 AgentCore 运行时上托管 Claude Code、OpenAI Codex、Amazon Kiro 等编程代理的开发人员尤为重要。除了已经拥有的异步命令执行功能外,现在他们还可以进行身份验证,进入托管其编程代理的 microVM,并像本地终端一样与之交互:与代理交互、检查文件、运行临时命令或调试环境状态。Shell 在同一会话中的命令之间保持持久状态,因此环境变量、工作目录和命令历史记录的行为都符合预期。

每个交互式会话都由运行时会话 ID 和 Shell ID 标识。在重新连接时传递这两个 ID 将使您回到完全相同的 Shell。短暂的网络断开会自动重连,较长时间的断开可以使用相同的 ID 手动恢复。单个代理运行时支持多达 10 个并发 Shell,允许开发人员针对相同或不同的 microVM 打开多个终端,且能够并行观察代理在不同分支上的工作。

要开始使用 AgentCore CLI:请执行 agentcore exec --it --runtime <runtime-arn>。要了解更多信息,请参阅交互式 Shell(终端)AgentCore 运行时中的 Shell 执行,以比较两种 Shell 模式。