AI Skill Hub 强烈推荐:Sandboxd AI沙箱引擎 是一款优质的AI工具。AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
一个基于Go语言开发的开源AI工作流引擎,为AI应用构建器提供隔离的开发沙箱环境。它支持内置代码执行与环境管理,旨在为AI Agent提供安全、独立且可扩展的运行空间,非常适合开发AI编程助手和自动化工作流的开发者。
Sandboxd AI沙箱引擎 是一款基于 Go 开发的开源工具,专注于 AI基础设施、代码沙箱、Agent框架 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
一个基于Go语言开发的开源AI工作流引擎,为AI应用构建器提供隔离的开发沙箱环境。它支持内置代码执行与环境管理,旨在为AI Agent提供安全、独立且可扩展的运行空间,非常适合开发AI编程助手和自动化工作流的开发者。
Sandboxd AI沙箱引擎 是一款基于 Go 开发的开源工具,专注于 AI基础设施、代码沙箱、Agent框架 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:go install(推荐) go install github.com/tastyeffectco/sandboxd@latest # 方式二:从源码编译 git clone https://github.com/tastyeffectco/sandboxd cd sandboxd go build -o sandboxd . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/tastyeffectco/sandboxd/releases
# 查看帮助 sandboxd --help # 基本运行 sandboxd [options] <input> # 详细使用说明请查阅文档 # https://github.com/tastyeffectco/sandboxd
# sandboxd 配置说明 # 查看配置选项 sandboxd --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export SANDBOXD_CONFIG="/path/to/config.yml"
<p align="center"> <b>The open-source backend behind AI app-builders.</b><br/> Type a prompt → an isolated sandbox spins up, a coding agent builds the app, and it's live at a preview URL. Self-hosted, one command, MIT. </p>
<p align="center"> <a href="https://sandboxd.io/demo/"><img alt="Live demo" src="https://img.shields.io/badge/%E2%96%B6%20Live%20demo-try%20it%20in%20your%20browser-ff6b00?style=for-the-badge"></a> <a href="https://sandboxd.io/quickstart"><img alt="Get started" src="https://img.shields.io/badge/Get%20started-one%20command-0a0a0a?style=for-the-badge"></a> <a href="https://github.com/tastyeffectco/sandboxd/stargazers"><img alt="Star sandboxd" src="https://img.shields.io/github/stars/tastyeffectco/sandboxd?style=for-the-badge&label=%E2%98%85%20Star&color=333"></a> </p>
<p align="center"> <a href="https://sandboxd.io"><img alt="Docs" src="https://img.shields.io/badge/docs-sandboxd.io-ff6b00.svg"></a> <a href="LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-green.svg"></a> <img alt="Runs on Docker" src="https://img.shields.io/badge/runs%20on-Docker-2496ED.svg"> <a href="https://github.com/tastyeffectco/sandboxd/releases"><img alt="Release" src="https://img.shields.io/github/v/release/tastyeffectco/sandboxd?color=00ADD8"></a> <a href="https://github.com/sponsors/tastyeffectco"><img alt="Sponsor" src="https://img.shields.io/badge/%E2%9D%A4%20Sponsor-tastyeffectco-db61a2?logo=githubsponsors&logoColor=white"></a> </p>
---
<img width="1100" height="816" alt="sandboxd-demo" src="https://github.com/user-attachments/assets/f794ff9b-8ffe-47e8-bd30-22541f870f09" />
▶ Try the live demo — click around the console with sample data, no install (read-only).
sandboxd needs one Linux server with Docker — nothing else. Grab a server below (2 vCPU / 4 GB is plenty to start), paste our cloud-init file at creation, and it installs itself.
Then on the new server (or paste deploy/cloud-init.yaml as user-data and skip this):
curl -fsSL https://raw.githubusercontent.com/tastyeffectco/sandboxd/main/deploy/bootstrap.sh | sudo bash
Full per-provider walkthrough: deploy/DEPLOY.md.
Some links above are referral links — they cost you nothing and support sandboxd's development.
Needs Docker + the Compose plugin and git on Linux (macOS via Docker Desktop is best-effort). Install in one line:
curl -fsSL https://raw.githubusercontent.com/tastyeffectco/sandboxd/main/install.sh | bash
It builds the images, starts the stack with the web console, and prints your console URL + a generated login — no password step. Open it, connect an agent under Settings, create an app, and build. No code needed.
- Console: http://console.localhost — the installer prints your login; lost it? run ./console-login.sh to see it again anytime - API: http://127.0.0.1:9090 (curl http://127.0.0.1:9090/healthz → ok) - Headless (no console): run with SANDBOXD_CONSOLE=0 (or --no-console)
Prefer the API? Connect an agent once, create a sandbox, hand it a prompt: ```bash API=http://127.0.0.1:9090 curl -s -XPOST $API/v1/agents/claude-code/api-key -d '{"api_key":"sk-ant-..."}' ID=$(curl -s -XPOST $API/sandbox -d '{"ports":[3000]}' | sed -E 's/."id":"([^"]+)"./\1/') curl -s -XPOST $API/v1/sandboxes/$ID/tasks -d '{"prompt":"build a todo app on port 3000","agent":"opencode"}'
aiskill88点评:底层基础设施类项目,解决了Agent执行代码的安全痛点,Go语言保证了高性能,是构建复杂AI应用的基石。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,Sandboxd AI沙箱引擎 是一款质量优秀的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | sandboxd |
| Topics | AI基础设施代码沙箱Agent框架 |
| GitHub | https://github.com/tastyeffectco/sandboxd |
| License | MIT |
| 语言 | Go |
收录时间:2026-07-11 · 更新时间:2026-07-11 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。