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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

Help Net Security

FIDO Alliance wants to keep AI agents from going rogue on online payments Police arrest 10 suspected members of Black Axe cybercrime gang ShinyHunters claims it stole 1.4 million records from Udemy Sevii unveils Cyber Swarm Defense Mode to stop AI-driven attacks at scale Alleged Chinese hacker extradited to US over cyberattacks targeting COVID-19 research Cequence Agent Personas bring granular control and governance to enterprise AI agents NowSecure MARI gives enterprises evidence-based visibility into third-party mobile app risk The metrics killing your SOC, and what to use instead US state privacy fines reached $3.425 billion in 2025 Canada’s first SMS blaster case leads to three arrests Linux storage management tool Stratis 3.9.0 adds online encryption and cache-less pool startup TLS Connect gives SMBs a right-sized automated tool to manage TLS certificates Aptori expands its platform with autonomous offensive testing to reduce security bottlenecks Your IAM was built for humans, AI agents don’t care The AI criminal mastermind is already hiring on gig platforms 25 open-source cybersecurity tools that don’t care about your budget Product showcase: LuLu reveals unauthorized outbound connections from Mac apps Week in review: Claude Mythos finds 271 Firefox flaws, Vercel breach Users advised to drop passwords and make room for passkeys - Help Net Security Indirect prompt injection is taking hold in the wild - Help Net Security Compromised everyday devices power Chinese cyber espionage operations - Help Net Security New Cisco firewall malware can only be killed by pulling the plug - Help Net Security Meta is overhauling how you sign in, manage settings, and protect your accounts - Help Net Security Ubuntu 26.04 LTS delivers memory-safe system tools and live patching for Arm servers - Help Net Security OpenAI’s GPT-5.5 is out with expanded cybersecurity safeguards - Help Net Security AI is speeding up nation-state cyber programs - Help Net Security A study of 1,000 Android apps finds a privacy policy logging gap - Help Net Security IT spending to hit $6.31 trillion record, thanks to AI - Help Net Security Where AI in CI/CD is working for engineering teams - Help Net Security With AI's help, North Korean hackers stumbled into a near-undetectable attack - Help Net Security
OpenAI updates Agents SDK, adds sandbox for safer code ex...
Anamarija Pogorelec · 2026-04-16 · via Help Net Security

OpenAI’s updated Agents SDK helps developers build agents that inspect files, run commands, edit code, and handle tasks within controlled sandbox environments. The update provides standardized infrastructure for OpenAI models, a model-native harness that lets agents work with files and tools on a computer, and native sandbox execution for running tasks safely.

The new harness and sandbox capabilities launch first in Python, with TypeScript support planned for a future release. Additional features, including code mode and subagents, are in development for both Python and TypeScript.

These Agents SDK capabilities are generally available via the API and follow standard API pricing based on tokens and tool usage.

OpenAI Agents SDK harness

Building agents with models and Agents SDK (Source: OpenAI)

Harness architecture

Existing systems present limitations as teams move from prototypes to production. Model-agnostic frameworks offer flexibility and often leave frontier model capabilities underused. Model-provider SDKs stay closer to the model and often limit visibility into the harness. Managed agent APIs simplify deployment and place limits on where agents run and how they access sensitive data.

“The OpenAI Agents SDK has enabled complex legal drafting and workflows by providing a unified framework with built-in safeguards and secure, isolated environments for data processing and code execution. This allows teams to focus on developing high-value, long-running legal agents rather than building agent infrastructure from scratch,” said Min Chen, Chief AI Officer at LexisNexis.

The updated harness expands agent capabilities for working with documents, files, and systems. It includes configurable memory, sandbox-aware orchestration, filesystem tools similar to Codex, and standardized integrations with common agent system primitives.

“These primitives include tool use via MCP, progressive disclosure via skills, custom instructions via AGENTS.md, code execution using the shell tool, file edits using the apply_patch tool, and more,” the company explained.

The harness reduces time spent on infrastructure and supports focus on domain-specific logic. It continues to evolve with additional agent patterns and primitives.

The harness aligns model execution with performance characteristics, keeps agents close to the model’s operating patterns, and improves reliability for long-running or coordinated tasks across tools and systems.

Sandbox execution environments

Sandbox execution is built into the updated Agents SDK. Agents run in controlled environments with access to files, tools, and required dependencies. This provides an execution layer and removes the need for developers to build one. They can use their own sandbox or choose built-in support for Blaxel, Cloudflare, Daytona, E2B, Modal, Runloop, and Vercel.

“To make these environments portable across providers, the SDK introduces a Manifest abstraction for describing the agent’s workspace. Developers can mount local files, define output directories, and connect storage providers including AWS S3, Google Cloud Storage, Azure Blob Storage, and Cloudflare R2,” the company said.

The SDK provides a consistent way to define the agent’s environment and gives models a predictable workspace with defined inputs, outputs, and organization for long-running tasks.

Security, reliability and scaling

Agent systems assume prompt injection and data exfiltration attempts during design. Separation of the harness and compute layers keeps credentials outside model-generated execution environments.

Externalized agent state ensures that runs continue after a sandbox container is lost. The Agents SDK restores state in a new container and continues from the last checkpoint using built-in snapshotting and rehydration.

Agent runs can use one or multiple sandboxes, invoke them as needed, route subagents to isolated environments, and execute tasks in parallel across containers for faster execution.