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

推荐订阅源

J
Java Code Geeks
S
SegmentFault 最新的问题
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
I
InfoQ
U
Unit 42
博客园_首页
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
T
Tailwind CSS Blog
量子位

Forbes - Innovation

Why Do Humans Have Fingerprints? Hint: It’s Not What You Think Booking.com Confirms Data Breach, Reservation PIN Codes Changed Why Major News Sites Are Blocking The Internet Archive’s Wayback Machine iPhone Fold Release Date: New Report Details Frustrating Apple News Comet Tracker: How To See Pan-STARRS And Three Planets On Wednesday NYT Mini Crossword Today: Tuesday, April 14 Hints And Answers Today’s NYT Strands Hints, Spangram, Answers: Tuesday, April 14 (It’s A Little Unclear) Today’s Wordle #1760 Hints And Answer For Tuesday, April 14 Most Of The Microplastics In Urban Air Come From Tires Today’s Wordle #1759 Hints And Answer For Monday, April 13 NYT Mini Crossword Today: Monday, April 13 Hints And Answers NYT Pips Today: Hints, Answers And Walkthrough For Monday, April 13 The YC Chief Who Codes 10,000 Lines A Day Has A Simple Secret Samsung Expands One UI 8.5 Beta To More Galaxy Owners Why You Should Stop Using Your iPhone If It’s On This List Chamath Says Firms That Treat AI As A Strategy Hand Rivals Their Edge 3 Unexpected Habits Of Secure Couples, By A Psychologist The First Lamp That Folds Your Clothes Samsung’s Disappointing Price Update For Galaxy Phone Buyers 3 Subtle Signs Someone Is Falling In Love With You, By A Psychologist Do Mantis Shrimp See More Colors Than Humans? A Biologist Explains NYT Connections Answers Explained For Monday, April 13 (#1,037) NYT Connections Hints Today: Monday, April 13 Clues And Answers (#1,037) LEGO Luigi & Mach 8 (72050) Review: 2026’s Best Set Yet? Marc Andreessen Says AI Productivity Will Trigger A Hiring Boom 3D Printing Is The Ultimate Hack To Reduce Household Spending Apple iPhone Fold: Striking Design Revealed In Leaked Photos Apple Smart Glasses: New Leak Reveals A Major Design Twist To Beat Meta Tested: The AI Coming To The Rivian R2 Quordle Hints Today: Monday, April 13 Clues And Answers
AWS Cuts AI Agent Setup To 3 API Calls In AgentCore Update
Janakiram MSV · 2026-04-27 · via Forbes - Innovation
Amazon HQ

Amazon HQ

Amazon

Amazon Web Services has introduced a managed agent harness in Amazon Bedrock AgentCore that lets developers stand up a working autonomous agent through configuration rather than orchestration code. The preview, paired with a new command-line interface, a persistent agent filesystem and prebuilt skills for popular coding assistants, signals that AWS sees deployment friction, rather than model quality, as the next constraint on enterprise agentic artificial intelligence.

The harness manages reasoning, tool selection, action execution and response streaming inside a dedicated microVM spun up for each session. AWS says developers can declare an agent's model, system prompt and tools, then run it in three API calls. The managed harness preview is live in US West (Oregon), US East (N. Virginia), Europe (Frankfurt) and Asia Pacific (Sydney). AWS says the AgentCore CLI is available in 14 AgentCore regions, while other AgentCore capabilities have broader regional availability depending on feature.

For chief information officers and platform leads under pressure to convert generative AI pilots into production systems, the announcement reframes a familiar problem. Setting up agent infrastructure including compute provisioning, authentication, sandboxing for code execution and persistent storage typically consumes days of engineering work before a single business workflow runs. Industry surveys and AWS's own customer commentary suggest integration work, not model choice, is where many agent projects stall, and AWS is wagering that abstracting that plumbing will compress timelines for enterprise rollouts.

How The Harness Works

The harness is powered by Strands Agents, the open-source agent framework from AWS. Each user session runs in its own microVM with isolated CPU, memory and filesystem, which AWS argues prevents cross-session data leakage in stateful agent workflows. The platform is model agnostic, with AWS documentation describing support for models served through Amazon Bedrock alongside OpenAI and Google Gemini, and the ability to switch providers mid-session by changing a configuration parameter rather than rewriting orchestration logic.

The design is deliberately layered. Teams that outgrow the configuration interface can export their agent to Strands code and continue running it on the same platform with the same isolation and deployment pipeline. AgentCore retains support for LangGraph, LlamaIndex and CrewAI, so the harness coexists with rather than replaces existing framework choices.

The companion AgentCore CLI brings infrastructure-as-code workflows to agent deployment, with current support for AWS CDK and Terraform support coming soon. A new persistent filesystem allows agents to suspend mid-task and resume later, which addresses one of the more awkward gaps in long-running agent workflows including human-in-the-loop approvals and asynchronous tool calls. Coding agent skills, prebuilt guidance modules tuned for AgentCore, are available now for Kiro and rolling out to Claude Code, Codex and Cursor by the end of April. AWS says there is no separate charge for the harness, CLI or skills, with customers still paying for the underlying AgentCore capabilities and model and resource usage.

Market Position

The release lands in a crowded field. Google has folded its agent tooling into the Gemini Enterprise Platform, Microsoft is positioning Azure AI Foundry as the orchestration layer for Copilot deployments and OpenAI continues to evolve its Assistants and Responses APIs. The platforms differ on dimensions that matter to enterprise buyers including region availability, supported frameworks, model-provider neutrality, sandboxing model, persistence, identity integration, observability and pricing basis. AWS is making a notable bet on framework neutrality, supporting third-party orchestrators alongside its own Strands framework while keeping the underlying execution surface proprietary.

Customer signals are limited. AWS's launch blog quotes Brazilian commerce platform VTEX on the harness, and separate AWS customer materials reference Parrot Analytics and others, but AWS has not published broad adoption metrics, latency benchmarks or cost-per-session data for the new harness. That makes head-to-head comparison with Vertex AI or Azure AI Foundry difficult at this stage.

Practical Limitations

The harness ships in preview in only four regions, which restricts data-residency-sensitive deployments in jurisdictions including Canada, Brazil, India and most of Europe outside Frankfurt. Configuration-driven agents also hit a complexity ceiling. AWS itself notes that custom orchestration logic, specialized routing and multi-agent coordination require switching from configuration to code-defined harness, which means the three-API-call promise applies cleanly to single-agent use cases rather than the orchestration-heavy patterns enterprises are increasingly building.

There is also a portability question. While the harness supports multiple models and frameworks, the runtime including the microVM isolation model, the persistent filesystem and the session lifecycle is specific to AgentCore. Teams that adopt the harness without abstracting their tool definitions and prompts risk lock-in to AWS even when their model choice remains flexible. The CLI's initial reliance on AWS CDK ahead of Terraform may also slow adoption among shops standardized on multi-cloud tooling.

Strategic Implications

For technology leaders, the announcement sharpens a procurement question that has been gathering force for months. Building agent infrastructure in-house, an option many enterprises pursued during the early generative AI cycle, is increasingly difficult to justify when hyperscalers are absorbing the orchestration layer with no separate charge for the harness itself. The decision is shifting toward which managed runtime aligns with existing data, identity and compliance controls.

The harness also signals that AWS sees agent platforms, not foundation models, as a durable source of differentiation. By holding the execution surface while remaining permissive about models and frameworks above it, the company is positioning AgentCore as a foundational primitive for agentic workloads that enterprises consume rather than build. Whether that bet pays off depends less on the harness itself than on how quickly AWS expands regional coverage, publishes operational benchmarks and demonstrates the harness in workloads beyond developer demos.