# Run multiple isolated agents in a single Sandbox

DevFeed: [Run multiple isolated agents in a single Sandbox](<https://devfeed.tech/articles/run-multiple-isolated-agents-in-a-single-sandbox-1078.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/run-multiple-isolated-agents-in-a-single-sandbox>)

Author: Marc Codina Segura

Published: 2026-07-30T04:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [SDKs](<https://devfeed.tech/topics/sdks.md>), [Vercel](<https://devfeed.tech/topics/vercel.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [systems](<https://devfeed.tech/topics/systems.md>)

Tags: [agents](<https://devfeed.tech/tags/agents.md>), [linux](<https://devfeed.tech/tags/linux.md>), [sandbox](<https://devfeed.tech/tags/sandbox.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

The @vercel/sandbox SDK now supports running multiple isolated agents side by side in a single Linux Sandbox. Each agent uses a separate Linux user and private home directory, while groups can provide shared workspaces for collaboration.

## Source excerpt

The @vercel/sandbox SDK now supports multiple Linux users and groups, so you can run agents side by side in a single Sandbox. Each agent runs as its own user with a private home directory. A group opens a shared workspace when they need to collaborate. This makes multi-agent systems easier to build. Call createUser for each agent; its commands and file operations run as that user, and users can't read, write, or list each other's files. To set up a shared directory, call createGroup and add users to it. Learn more in the Vercel Sandbox documentation. Read more