product updateAmazon Web Services

AWS Launches AgentCore Runtime for Persistent Coding Agent Sessions That Don't Die When Laptops Close

TL;DR

Amazon Web Services has launched AgentCore Runtime on Bedrock, providing dedicated Linux microVMs with persistent 14-day storage for coding agents. The service eliminates the need to keep laptops open during agent sessions and supports parallel execution of Claude Code, Codex, Kiro, OpenCode, and other coding agents with isolated environments.

3 min read
0

AWS Launches AgentCore Runtime for Persistent Coding Agent Sessions

Amazon Web Services has launched AgentCore Runtime on Amazon Bedrock, providing dedicated environments for coding agents that persist independently of developer laptops. Each session runs in an isolated Firecracker microVM with persistent storage that survives for 14 days of inactivity.

The service addresses a growing problem where developers keep laptops open during meetings, commutes, and overnight to maintain coding agent sessions running tools like Claude Code, Codex, Kiro, OpenCode, Gemini CLI, and Cursor CLI. When a laptop closes or suspends, the agent session terminates along with any in-progress work.

Technical Architecture

AgentCore Runtime provides three core infrastructure components:

Isolated execution environment: Each session receives a dedicated Firecracker microVM with its own Linux shell, filesystem, and command execution environment. Agents can be deployed as containers pushed to Amazon ECR or as zip-deployed Python/Node.js projects.

Persistent storage: A zero-configuration /mnt/workspace directory retains all files—including node_modules, .git, build caches, and project files—for 14 days after the last activity. When a session resumes, a fresh microVM mounts the existing filesystem in milliseconds.

Identity and access management: The identity layer allows agents to act as the user who triggered them. A gateway provides access to tools like GitHub, Jira, and Slack through Model Context Protocol (MCP) endpoints with credentials held outside the agent environment. All activity logs to CloudWatch.

Model and Provider Flexibility

The runtime is model-agnostic and supports three routing options:

  1. Through Amazon Bedrock, which hosts Anthropic's Claude family, OpenAI models, and others including Nova, Llama, Mistral, Qwen, and Kimi
  2. Direct provider APIs from Anthropic, OpenAI, Google, and self-hosted models over HTTPS
  3. Custom LLM gateways for routing and cost controls

According to AWS, the Bedrock route keeps prompts, tokens, and outputs within the AWS network—a requirement commonly requested by security teams.

Parallel Execution

The architecture supports running multiple agent sessions simultaneously without resource conflicts. Developers can:

  • Run the same agent against multiple branches
  • A/B test different agents (Claude Code on Opus vs Codex on GPT-class models vs Kiro) against the same task
  • Avoid localhost port collisions and shared credential conflicts

AWS provides a companion GitHub repository with scripts demonstrating parallel execution scenarios.

Security Model

AgentCore addresses four security issues inherent in laptop-hosted agents:

  1. Isolation: Agents no longer share the developer's shell, filesystem, VPN, or loaded SSH keys
  2. Credential separation: Secrets like .env files, ~/.aws/credentials, and SSH keys are not accessible from the agent environment
  3. VPC traffic routing: Network traffic flows through the company VPC rather than public internet
  4. Audit trails: CloudTrail records every invocation; CloudWatch traces every step

What This Means

This is AWS positioning Bedrock as infrastructure for agentic workflows, not just model inference. The 14-day persistent storage and microVM isolation directly compete with developer-facing agent platforms like Replit and Cursor, but target enterprise platform teams who want centralized control over agent execution, credentials, and observability. The model-agnostic approach means teams can evaluate multiple coding agents without rebuilding infrastructure for each one. The key limitation: this is AWS-only infrastructure, requiring teams to commit to running agent workloads on AWS rather than multi-cloud or local development environments.

Related Articles

product update

AWS Publishes Reference Architecture for Multimodal WhatsApp Ordering Agents Using Bedrock AgentCore and Nova 2

AWS published a reference architecture showing how to deploy a WhatsApp ordering assistant on Amazon Bedrock AgentCore, using Nova 2 Lite for text and Nova 2 Sonic for voice, with shared cross-channel memory and MCP-based tool access to backend systems.

product update

t54 Processes 20 Million Autonomous Agent Payments Using Amazon Bedrock AgentCore

t54's x402-secure trust layer, running on Amazon Bedrock AgentCore payments, has processed over 20 million agent-initiated micropayments without human approval. The system uses a deterministic risk-scoring gate to block payments to unsafe endpoints before funds settle.

product update

xAI's Grok Bot Turns Agent Setup Into a Login Screen, No Code Required

xAI's Grok Bot lets users connect agents to services like X, Google Calendar, and Freshdesk through a simple browser login instead of API keys or MCP configuration. A five-day hands-on report compares it to OpenClaw 2.0, released the same week, framing the two as a managed agent computer versus a user-owned agent platform.

product update

Gemini Overlay on Android Adds Minimize Button for Multitasking Bubble

Google is widely rolling out a new Minimize button for the Gemini overlay on Android, which collapses conversations into a floating bubble users can drag or tap to expand. The feature currently supports six fixed positions and has a reported bug that resets bubble placement after each minimization.

Comments

Loading...