daytonaio/daytona

★ 71,711⑂ 0

Daytona is a Secure and Elastic Infrastructure for Running AI-Generated Code

About daytonaio/daytona

daytonaio/daytona is an open-source project on GitHub, mainly written in several languages. Daytona is a Secure and Elastic Infrastructure for Running AI-Generated Code It currently holds 71,711 stars and 0 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Agent Skills board and on the AI AI Agent Skills list.

GitHub Repository Details

Repository daytonaio/daytona · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

[!IMPORTANT]
This repository is no longer maintained.
> As of June 2026, Daytona's core development has moved to a private codebase. This repository will receive no further updates, fixes, or releases.
It remains public and free to use, fork, and build on under the LICENSE, as is and without support or warranty.
> Daytona resources are available at github.com/daytona.

 

https://github.com/daytonaio/daytona/blob/HEAD/Daytona logo

Run AI Code.
Secure and Elastic Infrastructure for Running Your AI-Generated Code.

Documentation · Report Bug · Request Feature · Join our Slack · Connect on X

 

Daytona is a secure and elastic infrastructure runtime for AI-generated code execution and agent workflows. Our open-source platform provides sandboxes, full composable computers with complete isolation, a dedicated kernel, filesystem, network stack, and allocated vCPU, RAM, and disk.

Sandboxes are the core component of the Daytona platform, spinning up in under 90ms from code to execution and running any code in Python, TypeScript, and JavaScript. Built on OCI/Docker compatibility, massive parallelization, and unlimited persistence, sandboxes deliver consistent, predictable environments for agent workflows.

Agents and developers interact with sandboxes programmatically using the Daytona SDKs, API, and CLI. Operations span sandbox lifecycle management, filesystem operations, process and code execution, and runtime configuration through base images, packages, and tooling. Our stateful environment snapshots enable persistent agent operations across sessions, making Daytona the ideal foundation for AI agent architectures.

Features

Daytona provides an extensive set of features and tools for interacting with sandboxes.

| Platform | Sandboxes | Agent tools | Human tools | System tools | | :------------------------------------------------------------------------- | :---------------------------------------------------------------------- | :-------------------------------------------------------------------------------- | :------------------------------------------------------------------------ | :------------------------------------------------------------ | | Organizations | Environment | Process & code execution | Dashboard | Webhooks | | API Keys | Snapshots | File system operations | Web terminal | Network limits | | Limits | Declarative builder | Language server protocol | SSH access | | | Billing | Volumes | Computer use | VNC access | | | Audit logs | Regions | MCP server | VPN connection | | | OpenTelemetry | | Git operations | Preview | | | Integrations | | Pseudo terminal (PTY) | Custom preview proxy | | | Security exhibit | | Log streaming | Playground | |

Architecture

Daytona platform is organized into multiple plane components, each serving a specific purpose. A detailed overview of each component is available in the architecture documentation.

Client libraries

Client libraries integrate the Daytona platform from application code through developer-facing SDKs backed by OpenAPI-generated REST clients and toolbox API clients. Each directory is a publishable package for a specific language or runtime, available in the libs directory.

Python

pip install daytona

Standalone packages and libraries for interacting with Daytona using Python:

sdk-pythonapi-client-pythonapi-client-python-asynctoolbox-api-client-pythontoolbox-api-client-python-async

TypeScript

npm install @daytona/sdk

Standalone packages and libraries for interacting with Daytona using TypeScript:

sdk-typescriptapi-clienttoolbox-api-client

Ruby

gem install daytona

Standalone packages and libraries for interacting with Daytona using Ruby:

sdk-rubyapi-client-rubytoolbox-api-client-ruby

Go

go get github.com/daytonaio/daytona/libs/sdk-go

Standalone packages and libraries for interacting with Daytona using Go:

sdk-goapi-client-gotoolbox-api-client-go

Java

Gradle (build.gradle.kts):

dependencies {
    implementation("io.daytona:sdk:x.y.z")
}

Maven (pom.xml):


  io.daytona
  sdk
  x.y.z

Standalone packages and libraries for interacting with Daytona using Java:

sdk-javaapi-client-javatoolbox-api-client-java

Quick Start

1. Create an account at app.daytona.io 2. Generate an API key 3. Create a sandbox

Python SDK

from daytona import Daytona, DaytonaConfig

config = DaytonaConfig(api_key="YOUR_API_KEY") daytona = Daytona(config) sandbox = daytona.create() response = sandbox.process.code_run('print("Hello World!")') print(response.result)

Typescript SDK

import { Daytona } from "@daytona/sdk";

const daytona = new Daytona({ apiKey: "YOUR_API_KEY" }); const sandbox = await daytona.create(); const response = await sandbox.process.codeRun('print("Hello World!")'); console.log(response.result);

Ruby SDK

require 'daytona'

config = Daytona::Config.new(api_key: 'YOUR_API_KEY') daytona = Daytona::Daytona.new(config) sandbox = daytona.create response = sandbox.process.code_run(code: 'print("Hello World!")') puts response.result

Go SDK

package main

import ( "context" "fmt" "github.com/daytonaio/daytona/libs/sdk-go/pkg/daytona" "github.com/daytonaio/daytona/libs/sdk-go/pkg/types" )

func main() { config := &types.DaytonaConfig{APIKey: "YOUR_API_KEY"} client, _ := daytona.NewClientWithConfig(config) ctx := context.Background() sandbox, _ := client.Create(ctx, nil) response, _ := sandbox.Process.ExecuteCommand(ctx, "echo 'Hello World!'") fmt.Println(response.Result) }

Java SDK

import io.daytona.sdk.Daytona;
import io.daytona.sdk.DaytonaConfig;
import io.daytona.sdk.Sandbox;
import io.daytona.sdk.model.ExecuteResponse;

public class Main { public static void main(String[] args) { DaytonaConfig config = new DaytonaConfig.Builder() .apiKey("YOUR_API_KEY") .build(); try (Daytona daytona = new Daytona(config)) { Sandbox sandbox = daytona.create(); ExecuteResponse response = sandbox.getProcess().executeCommand("echo 'Hello World!'"); System.out.println(response.getResult()); } } }

API

curl 'https://app.daytona.io/api/sandbox' \
  --request POST \
  --header 'Authorization: Bearer <YOUR_API_KEY>' \
  --header 'Content-Type: application/json' \
  --data '{}'

CLI

daytona create

GitHub Stars & Activity

71,711Stars
0Forks
0Open issues
-Language

GitHub Popularity

GitHub stars71,711
Forks0
Open issues0
Primary language-
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

affaan-m / ECC

JavaScript★ 259,477⑂ 0
2

NousResearch / hermes-agent

Python★ 245,944⑂ 0
3

deepseek-ai / deepseek-harness

TypeScript★ 225,686⑂ 0
4

n8n-io / n8n

TypeScript★ 204,475⑂ 0
5

firecrawl / firecrawl

TypeScript★ 180,977⑂ 0
6

anthropics / skills

Python★ 176,568⑂ 0
7

Snailclimb / JavaGuide

JavaScript★ 158,591⑂ 0
8

langgenius / dify

TypeScript★ 155,892⑂ 0

More AI Rankings