Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

daytonadaytona 命令行

Agent Skill

daytona 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

451

周安装

19

GitHub Stars

4

下载量

158
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:daytona(daytona 命令行)
来源仓库:https://github.com/daytona/skills
仓库路径:skills/daytona
安装命令:
npx skills add https://github.com/daytona/skills --skill daytona
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/daytona/skills --skill daytona

简介

daytona 提供隔离的开发沙盒环境,支持 Agent 在独立运行时中安装包、编译代码与管理进程。

  • 每个沙盒拥有专属内核与资源配额,适用于复杂应用开发与持续集成场景,兼容 Linux 生态工具链。
  • 它基于 OCI 镜像构建,可用于 Daytona Cloud 平台,但不直接处理 GitHub Issue 或 PR 协作信息。
  • 使用前需配置 API 密钥并确认网络连通性,避免因权限不足导致沙盒创建失败。
  • daytona 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

What is Daytona

Daytona provides full composable computerssandboxes — for AI agents. Each sandbox is an isolated runtime environment with its own kernel, filesystem, network stack, and dedicated vCPU, RAM, and disk. Agents can install packages, run servers, compile code, and manage processes inside sandboxes.

Sandboxes are built from OCI-compliant images or snapshots. Any language or tool that runs on Linux works.

Scope: This skill covers Daytona Cloud (app.daytona.io). For self-hosted Daytona OSS deployment, see ./references/platform/oss-deployment.md.

Before You Start

Before writing any Daytona code, verify setup:

  1. SDK installed? Check that the Daytona SDK is installed for the user's language (e.g. pip show daytona or check package.json for @daytonaio/sdk). If not, install it.
  2. API key set? Check DAYTONA_API_KEY in the shell environment or in environment files. If not set, tell the user they need an API key and point them to Daytona Dashboard > API Keys to create one.

SDK Essentials — Python

Installation

pip install daytona

Create client and sandbox

from daytona import Daytona

# Uses DAYTONA_API_KEY env var
daytona = Daytona()

# Create a sandbox with defaults (1 vCPU, 1GB RAM, 3GB disk)
sandbox = daytona.create()
from daytona import Daytona, CreateSandboxFromImageParams, Image, Resources

daytona = Daytona()

# Create with a custom image, name, and resources
sandbox = daytona.create(CreateSandboxFromImageParams(
    image=Image.debian_slim("3.12"),
    name="my-sandbox",
    resources=Resources(cpu=2, memory=4, disk=8),
))

Execute commands

Both exec and code_run return an ExecuteResponse with .result (stdout) and .exit_code. code_run executes in the sandbox's language runtime (set at creation via language= param, defaults to "python"). Supported: python, typescript, javascript.

# Run a shell command
response = sandbox.process.exec("echo 'Hello, World!'")
print(response.result)     # "Hello, World!"
print(response.exit_code)  # 0

# Run Python code (stateless)
response = sandbox.process.code_run('''
import json
data = {"key": "value"}
print(json.dumps(data, indent=2))
''')
print(response.result)
print(response.exit_code)  # 0 on success, non-zero on error

File operations

# Write a file
sandbox.fs.upload_file(b"Hello, Daytona!", "/home/daytona/data.txt")

# Read a file
content = sandbox.fs.download_file("/home/daytona/data.txt")
print(content.decode())

# List files
files = sandbox.fs.list_files("workspace")
for f in files:
    print(f"{f.name} ({'dir' if f.is_dir else f.size})")

Sandbox lifecycle

# Pause and resume later
sandbox.stop()          # frees CPU/RAM, keeps disk
sandbox.start()         # ready to use again

# Long-term storage (must be stopped first)
sandbox.stop()
sandbox.archive()       # cold storage, no quota impact

# Resume a previous sandbox by ID or name
sandbox = daytona.get("sandbox-id-or-name")
sandbox.start()

# Permanently remove
sandbox.delete()

Wrap Daytona calls with DaytonaError for error handling. For async, use AsyncDaytona (async context manager). For full Python SDK reference, see python-sdk/README.md.

SDK Essentials — TypeScript

The TypeScript SDK (@daytonaio/sdk) mirrors the Python API. Key differences: executeCommand instead of exec, codeRun instead of code_run, uploadFile/downloadFile/listFiles for file ops, DaytonaError for error handling. Install with npm install @daytonaio/sdk.

For full TypeScript SDK reference and examples, see typescript-sdk/README.md.

Common Patterns

Custom environments and snapshots

When the user needs specific packages, tools, or a custom OS in their sandbox, define a custom image with the Image builder. If the user will create multiple sandboxes with the same setup, offer to build a snapshot — snapshots bake dependencies into a reusable template so subsequent sandboxes start quickly with everything pre-installed.

Note: Snapshots are built from image definitions, not from live sandbox state. You cannot snapshot a running sandbox to capture its current filesystem.

Define images with the Image builder:

from daytona import Image

# Debian with Python packages
image = Image.debian_slim("3.12").pip_install(["pandas", "numpy", "scikit-learn"])

# With system packages and shell commands
image = (Image.debian_slim("3.12")
    .run_commands("apt-get update && apt-get install -y curl git",
                   "curl -fsSL https://deb.nodesource.com/setup_20.x | bash -")
    .pip_install(["flask"])
    .env({"APP_ENV": "production"}))

# From a Dockerfile
image = Image.from_dockerfile("./Dockerfile")

# From a registry image directly
image = Image.base("node:20-slim")
import { Image } from '@daytonaio/sdk'

const image = Image.debianSlim('3.12').pipInstall(['pandas', 'numpy', 'scikit-learn'])

const image = Image.debianSlim('3.12')
    .runCommands('apt-get update && apt-get install -y curl git',
                 'curl -fsSL https://deb.nodesource.com/setup_20.x | bash -')
    .pipInstall(['flask'])
    .env({ APP_ENV: 'production' })

const image = Image.fromDockerfile('./Dockerfile')

const image = Image.base('node:20-slim')

Create a one-off sandbox directly from an image:

from daytona import Daytona, CreateSandboxFromImageParams, Image

daytona = Daytona()
image = Image.debian_slim("3.12").pip_install(["flask"])
sandbox = daytona.create(CreateSandboxFromImageParams(image=image))
const sandbox = await daytona.create({ image })

Or build a snapshot for reuse (recommended if creating multiple sandboxes with the same setup):

from daytona import Daytona, CreateSandboxFromSnapshotParams, CreateSnapshotParams, Image

daytona = Daytona()

# One-time: build a snapshot
image = Image.debian_slim("3.12").pip_install(["pandas", "numpy", "scikit-learn"])
snapshot = daytona.snapshot.create(CreateSnapshotParams(
    name="data-science",
    image=image,
))

# Every time after: fast start from snapshot
sandbox = daytona.create(CreateSandboxFromSnapshotParams(
    snapshot=snapshot.name,
))
response = sandbox.process.code_run("import pandas; print(pandas.__version__)")
const snapshot = await daytona.snapshot.create({
    name: 'data-science',
    image: Image.debianSlim('3.12').pipInstall(['pandas', 'numpy', 'scikit-learn']),
})

const sandbox = await daytona.create({ snapshot: snapshot.name })

For the full Image builder API, see ./references/<lang>-sdk/declarative-builder.md. For snapshot management, see ./references/<lang>-sdk/snapshots.md.

Long-running task pattern

from daytona import Daytona

daytona = Daytona()
sandbox = daytona.create()

# ... clone repo, install deps, etc.

# Start a test suite in the background
sandbox.process.exec("nohup pytest --tb=short > /home/daytona/test.log 2>&1 &")

# Check progress later
response = sandbox.process.exec("tail -5 /home/daytona/test.log")
print(response.result)

# Download the full report when done
report = sandbox.fs.download_file("/home/daytona/test.log")

Preview URLs

Sandboxes expose HTTP services via preview URLs. Previews are token-authenticated by default, or public if public=True (Python) / public: true (TypeScript) at sandbox creation.

  • Token-authenticated — returns .url and .token (send as x-daytona-preview-token header)

- Python: sandbox.get_preview_link(port) | TypeScript: sandbox.getPreviewLink(port) | Go: sandbox.GetPreviewLink(port) | Ruby: sandbox.get_preview_link(port)

  • Signed URL (shareable) — token embedded in URL, no headers needed

- Python: sandbox.create_signed_preview_url(port, expires_in_seconds=3600) | TypeScript: sandbox.getSignedPreviewUrl(port, 3600) | Go: sandbox.GetSignedPreviewLink(port, 3600) | Ruby: sandbox.create_signed_preview_url(port, expires_in_seconds: 3600)

For details, see ./references/<lang>-sdk/preview.md.

Sandbox Limits & Constraints

ConstraintDefaultMaximum
vCPU per sandbox14
RAM per sandbox1 GB8 GB
Disk per sandbox3 GiB10 GB

Aggregate limits (total vCPU/RAM/disk across all sandboxes) depend on your organization tier:

TiervCPURAMStorageRequirements
Tier 11010 GiB30 GiBEmail verified
Tier 2100200 GiB300 GiBCredit card + $25 top-up + GitHub connected
Tier 3250500 GiB2000 GiBBusiness email + $500 top-up
Tier 45001000 GiB5000 GiB$2000 top-up every 30 days

Resource state impact:

  • Running sandboxes count against vCPU + RAM + disk
  • Stopped sandboxes count only against disk
  • Archived sandboxes have no quota impact (data in cold storage)

Network access restrictions

Tier 1 & Tier 2 organizations have restricted network access. Sandboxes can only reach a whitelist of essential services (package registries, Git hosts, AI APIs, CDNs, etc.). This restriction cannot be overridden at the sandbox level — even setting networkAllowList won't help if your org is Tier 1/2.

Tier 3 & Tier 4 get full unrestricted internet access by default, with optional per-sandbox firewall controls.

If your code needs to reach arbitrary URLs (external APIs, custom services, etc.), you need Tier 3+. Check your tier at Daytona Dashboard > Limits.

Essential services available on all tiers include: npm/PyPI/apt registries, GitHub/GitLab/Bitbucket, Docker registries, major AI APIs (Anthropic, OpenAI, Google AI, etc.), S3, Google Cloud Storage, and common dev tools (Vercel, Supabase, Clerk, Sentry, etc.). For the full list, see network-limits.md. Missing a service? Submit a request at daytonaio/sandbox-network-whitelist.

View your usage at Daytona Dashboard > Limits. For full details, see limits.md.

Quick Decision Tree

I need to...Start here
Run code/commands in an isolated environmentSDK Essentials above, then ./references/<lang>-sdk/process-code-execution.md
Make sandboxes start faster./references/<lang>-sdk/snapshots.md — build a snapshot from an image definition, create new sandboxes from it
Persist data across sandbox runs./references/<lang>-sdk/volumes.md — attach persistent storage that survives sandbox deletion
Build a custom environment (specific OS, packages, deps)./references/<lang>-sdk/declarative-builder.md — use the Image builder to define custom sandbox images
Control what a sandbox can access on the network./references/<lang>-sdk/network-limits.md — per-sandbox firewall rules (Tier 3+ for unrestricted)
Interact with a browser or GUI in the sandbox./references/<lang>-sdk/computer-use-guide.md + ./references/<lang>-sdk/vnc-access.md
Run a stateful Python interpreter (persistent variables between calls)./references/python-sdk/sync/code-interpreter.md or ./references/typescript-sdk/code-interpreter.md
Store and retrieve objects (S3-compatible)./references/<lang>-sdk/object-storage.md (Python sync/async, TypeScript, Ruby)
SSH into a running sandbox./references/<lang>-sdk/ssh-access.md

Replace <lang>-sdk with: python-sdk, typescript-sdk, go-sdk, or ruby-sdk.

SDK Index

Python SDK (primary)

FileDescription
python-sdk/README.mdInstallation, quickstart, configuration
python-sdk/sync/daytona.mdDaytona client — create, list, delete sandboxes
python-sdk/sync/sandbox.mdSandbox instance — lifecycle, resources, labels
python-sdk/sync/process.mdExecute commands, run code
python-sdk/sync/file-system.mdFile operations — read, write, upload, download
python-sdk/sync/git.mdGit operations — clone, commit, push, status
python-sdk/sync/snapshot.mdSnapshot management
python-sdk/sync/volume.mdVolume management
python-sdk/sync/code-interpreter.mdStateful Python interpreter
python-sdk/sync/computer-use.mdDesktop automation (mouse/keyboard/screen)
python-sdk/sync/lsp-server.mdLanguage Server Protocol
python-sdk/sync/object-storage.mdS3-compatible object storage
python-sdk/errors.mdError types
python-sdk/image.mdCustom image definitions

Async versions mirror the sync API: python-sdk/async/.

TypeScript SDK

Flat structure (no sync/async split like Python): typescript-sdk/README.md. Files: daytona.md, sandbox.md, process.md, file-system.md, git.md, snapshot.md, volume.md, code-interpreter.md, computer-use.md, lsp-server.md, object-storage.md, execute-response.md, pty-handle.md, errors.md, image.md.

Go SDK & Ruby SDK

Both follow the same patterns. Go uses a compact single-file structure: go-sdk/README.md. Ruby mirrors TypeScript: ruby-sdk/README.md.

Feature Guides (per-SDK)

Each SDK folder contains the same set of feature guides with language-specific examples. To find a guide, use ./references/<lang>-sdk/<filename> (e.g., ./references/python-sdk/sandboxes.md, ./references/typescript-sdk/snapshots.md).

FilenameTopic
sandboxes.mdSandbox lifecycle — create, start, stop, archive, delete
process-code-execution.mdRun commands and code, stateful interpreter
file-system-operations.mdRead, write, upload, download files
git-operations.mdClone, commit, push, status
snapshots.mdBuild reusable sandbox templates from image definitions
volumes.mdPersistent storage across sandboxes
ssh-access.mdSSH into sandboxes
vnc-access.mdVNC for desktop sandboxes
computer-use-guide.mdDesktop automation (mouse/keyboard/screen)
configuration.mdEnvironment variables, config precedence
declarative-builder.mdCustom sandbox images with the Image builder
log-streaming.mdStream sandbox logs
network-limits.mdNetwork firewall controls
language-server-protocol.mdIDE-like features (autocomplete, diagnostics)
preview.mdPreview URLs for exposed ports
pty.mdPTY/terminal support
regions.mdAvailable regions
vpn-connections.mdVPN connections
getting-started.mdQuick start guide

Platform Reference

FileDescription
limits.mdResource limits, rate limits, tier requirements
organizations.mdTeam management, member roles
billing.mdUsage tracking, pricing
audit-logs.mdAudit logging
linked-accounts.mdGitHub/GitLab account linking
web-terminal.mdBrowser-based terminal access
webhooks.mdWebhook events
mcp.mdMCP integration
runners.mdRunner infrastructure
oss-deployment.mdSelf-hosted deployment
cli.mdCLI command reference

API Reference

Raw REST API documentation for all Daytona endpoints (sandboxes, snapshots, volumes, toolbox operations, etc.): api/README.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.23%
按下载量换算56

Claude

28.46%
按下载量换算45

Cursor

19.91%
按下载量换算31

Gemini CLI

8.64%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills