[PR #2511] [MERGED] feat(oss/deepagents): add sandbox backend documentation #2498

Closed
opened 2026-02-17 17:23:28 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2511
Author: @hntrl
Created: 2/5/2026
Status: Merged
Merged: 2/6/2026
Merged by: @hntrl

Base: mainHead: hunter/da-sandbox


📝 Commits (7)

📊 Changes

12 files changed (+1224 additions, -4 deletions)

View changed files

📝 src/docs.json (+2 -1)
src/images/providers/daytona-icon.svg (+1 -0)
src/images/providers/deno-icon.svg (+1 -0)
src/images/providers/modal-icon.svg (+1 -0)
src/images/providers/nodejs-icon.svg (+1 -0)
📝 src/oss/deepagents/backends.mdx (+6 -2)
📝 src/oss/deepagents/harness.mdx (+11 -1)
src/oss/deepagents/sandboxes.mdx (+304 -0)
src/oss/javascript/integrations/providers/daytona.mdx (+236 -0)
src/oss/javascript/integrations/providers/deno.mdx (+225 -0)
src/oss/javascript/integrations/providers/modal.mdx (+254 -0)
src/oss/javascript/integrations/providers/node-vfs.mdx (+182 -0)

📄 Description

Summary

Add docs for sandbox backends in deepagents. Sandboxes provide isolated execution environments where agents can run shell commands safely, with support for Modal, Daytona, Deno, and local Node VFS providers.

TS only while we're waiting for the python interfaces to land

Changes

New pages

  • sandboxes.mdx — Overview page explaining what sandboxes are, why to use them, the execute tool, file transfer (upload/download/initial files), lifecycle management, and security considerations
  • modal.mdx — Provider docs for Modal (GPU support, volumes, secrets, reconnection, factory functions, error handling)
  • daytona.mdx — Provider docs for Daytona (multi-language, regions, custom resources, snapshots, reconnection)
  • deno.mdx — Provider docs for Deno (microVMs, memory config, lifetime options, SSH/HTTP exposure)
  • node-vfs.mdx — Provider docs for Node VFS (local dev, in-memory VFS, no cloud required)

Updated pages

  • backends.mdx — Added sandbox row to backends table, added sandbox node to mermaid diagram, updated security recommendations to link to sandbox docs
  • harness.mdx — Added execute tool to tools table, added sandbox backends section, updated mermaid diagram, removed hardcoded tool count

Other

  • docs.json — Added sandboxes page to the deepagents navigation section
  • Added provider SVG icons (Daytona, Deno, Modal, Node.js)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/2511 **Author:** [@hntrl](https://github.com/hntrl) **Created:** 2/5/2026 **Status:** ✅ Merged **Merged:** 2/6/2026 **Merged by:** [@hntrl](https://github.com/hntrl) **Base:** `main` ← **Head:** `hunter/da-sandbox` --- ### 📝 Commits (7) - [`25bc2bc`](https://github.com/langchain-ai/docs/commit/25bc2bc78dd405db568a4f1ab02908be47408526) feat(oss/javascript): add sandbox docs - [`ad10486`](https://github.com/langchain-ai/docs/commit/ad104869ab068599438a183408d757babd021317) cr - [`d65f8e3`](https://github.com/langchain-ai/docs/commit/d65f8e36e3b36de69236a311cc41abe818b6b48f) cr - [`886a0c8`](https://github.com/langchain-ai/docs/commit/886a0c84956ea9f497de5e4e89b053483e87d319) cr - [`bf7d321`](https://github.com/langchain-ai/docs/commit/bf7d321031c699bf7e50182bba2e2f45f7be7a7f) cr - [`5a20563`](https://github.com/langchain-ai/docs/commit/5a20563d5fa8972ceb805007e4f0fedfb1223d9d) cr - [`540b6fb`](https://github.com/langchain-ai/docs/commit/540b6fb1429bf7724cba8fe9920d287f472a3d2e) cr ### 📊 Changes **12 files changed** (+1224 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `src/docs.json` (+2 -1) ➕ `src/images/providers/daytona-icon.svg` (+1 -0) ➕ `src/images/providers/deno-icon.svg` (+1 -0) ➕ `src/images/providers/modal-icon.svg` (+1 -0) ➕ `src/images/providers/nodejs-icon.svg` (+1 -0) 📝 `src/oss/deepagents/backends.mdx` (+6 -2) 📝 `src/oss/deepagents/harness.mdx` (+11 -1) ➕ `src/oss/deepagents/sandboxes.mdx` (+304 -0) ➕ `src/oss/javascript/integrations/providers/daytona.mdx` (+236 -0) ➕ `src/oss/javascript/integrations/providers/deno.mdx` (+225 -0) ➕ `src/oss/javascript/integrations/providers/modal.mdx` (+254 -0) ➕ `src/oss/javascript/integrations/providers/node-vfs.mdx` (+182 -0) </details> ### 📄 Description ## Summary Add docs for sandbox backends in deepagents. Sandboxes provide isolated execution environments where agents can run shell commands safely, with support for Modal, Daytona, Deno, and local Node VFS providers. TS only while we're waiting for the python interfaces to land ## Changes ### New pages - **`sandboxes.mdx`** — Overview page explaining what sandboxes are, why to use them, the `execute` tool, file transfer (upload/download/initial files), lifecycle management, and security considerations - **`modal.mdx`** — Provider docs for Modal (GPU support, volumes, secrets, reconnection, factory functions, error handling) - **`daytona.mdx`** — Provider docs for Daytona (multi-language, regions, custom resources, snapshots, reconnection) - **`deno.mdx`** — Provider docs for Deno (microVMs, memory config, lifetime options, SSH/HTTP exposure) - **`node-vfs.mdx`** — Provider docs for Node VFS (local dev, in-memory VFS, no cloud required) ### Updated pages - **`backends.mdx`** — Added sandbox row to backends table, added sandbox node to mermaid diagram, updated security recommendations to link to sandbox docs - **`harness.mdx`** — Added `execute` tool to tools table, added sandbox backends section, updated mermaid diagram, removed hardcoded tool count ### Other - **`docs.json`** — Added `sandboxes` page to the deepagents navigation section - Added provider SVG icons (Daytona, Deno, Modal, Node.js) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:23:28 -05:00
yindo closed this issue 2026-02-17 17:23:28 -05:00
yindo changed title from [PR #2511] feat(oss/deepagents): add sandbox backend documentation to [PR #2511] [MERGED] feat(oss/deepagents): add sandbox backend documentation 2026-06-05 18:18:55 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2498