Adios

The Workspace & Deploy Tool
For Your AI Agent

Adios is the ultimate developer environment for AI coding agents. Give Claude, ChatGPT, or custom agents a secure, source-backed workspace to run builds, execute tests, start previews, and request production deployment.

Plans from $10/month. Start with a 14-day free trial. Card required.

The Agent's Workbench

How your AI agent builds and deploys on Adios.

Agents can't run code in a vacuum or deploy without safety rails. Adios gives your agent an isolated, secure workspace to write code, execute test suites, spin up previews, and prepare approved production releases.

01

1. Build with Your Agent

Connect your AI agent via MCP. The agent works directly with your repository files in a persistent, source-backed workspace to implement features.

02

2. Isolated Testing

The agent runs tests and compiles builds inside the isolated workspace sandbox. You get automatic proof of success before any code is promoted.

03

3. Live Preview & Logs

The agent boots a live preview environment on Adios and verifies the health of the routes, feeding diagnostics back into the prompt.

04

4. Approved Deployment

Once tests pass and the preview is verified healthy, you approve the release. Adios promotes the new version behind your custom domain.

Declarative Manifests

Give your agent clear deployment rules.

An AI agent needs structured boundaries. adios.yaml keeps build commands, startup behavior, health checks, resources, and secrets right beside the code. Your agent can read, write, or update this file to self-configure the workspace dynamically.

  • One contract for code and agentKeep build, start, port, and database configurations in one simple file that both you and your AI agent can read and modify.
  • Protected secret referencesYour agent uses secret:// references in the manifest without ever seeing or exposing actual production API keys or passwords.
  • Automated health gatesThe agent boots the candidate release. Adios checks its health path, ensuring only working, healthy releases go live.
adios.yaml
name: node-api
region: de
replicas: 2

build_cmd: npm ci && npm run build
start_cmd: node dist/server.js

runtime:
  name: node@24
  port: 8080
  memory_mb: 1024
  health_path: /healthz

secrets:
  DATABASE_URL: secret://DATABASE_URL
adios-demo.mp4

Turn your AI agent into a full-cycle developer.

Give any MCP-capable AI client scoped access to an Adios workspace. Your agent gains the direct tools to build code, run tests, spin up custom previews, and inspect logs to self-diagnose and fix failures independently.

  • Complete Build Control: The agent compiles code and manages packages inside the workspace.
  • Self-Correcting Previews: Your agent reads build outputs and runtime logs to fix its own bugs.
  • Secure Gateway Controls: Promote the finished build to production behind TLS with your absolute approval.
Explore AI agent environments

Build and manage the full application surface

Node.jsPythonGo.NETRubyPHP
Next.jsDjangoFlaskExpressLaravelReactVueAngularSvelte
PostgresRedisRabbitMQMongoDBMySQLWorkflows

Deployable starters

Deploy a starter, then customize it.

Start from official Adios templates for web apps, API backends, databases, caches, and queues. Deploy in the console or clone locally and run adios up.

View all deployment paths
Web apps

Next.js

4 variants

JavaScript and TypeScript Next.js starters using npm or pnpm and Adios runtime config.

Next.jsNode.jsnpmpnpmTypeScript
$ cd template-nextjs
$ adios up
Web apps

Supabase-connected Node.js

1 variant

A Node.js 24 starter connected to an existing Supabase project with secret-backed configuration.

SupabaseNode.js 24PostgreSQLnpm
$ cd templates/nodejs/supabase
$ adios up
Web apps

WordPress

1 variant

WordPress 7.0.3 on PHP 8.3 with managed MySQL, generated salts, and persistent wp-content.

WordPress 7.0.3PHP 8.3MySQL 8Persistent
$ cd templates/php/wordpress
$ adios up
Web apps

PocketBase

1 variant

PocketBase 0.39.10 with persistent SQLite data, generated superuser credentials, and built-in auth and realtime APIs.

PocketBase 0.39.10SQLiteAuthRealtime
$ cd templates/pocketbase
$ adios up
Web apps

Strapi

1 variant

Strapi 5 on Node.js 24 with managed PostgreSQL, generated secrets, and persistent uploads.

Strapi 5Node.js 24PostgreSQL 17Persistent
$ cd templates/nodejs/strapi
$ adios up
API starters

Python API

8 variants

FastAPI, Django, Flask, Litestar, and Sanic starters with production start commands.

PythonFastAPIDjangoFlaskLitestarSanic
$ cd template-python-fastapi
$ adios up
API starters

Ruby apps & APIs

5 variants

Rails, Sinatra, Grape, Hanami, and Roda starters with Bundler and Adios config.

RubyRailsSinatraGrapeHanamiRoda
$ cd templates/ruby/rails
$ adios up
API starters

PHP apps & APIs

6 variants

Laravel, Symfony, CakePHP, CodeIgniter, Yii, and PHP 8.2 starters.

PHPLaravelSymfonyCakePHPCodeIgniterYii
$ cd templates/php/laravel
$ adios up
API starters

Go API

5 variants

Gin, Chi, Echo, Fiber, and Beego starters with compiled production binaries.

GoGinChiEchoFiberBeego
$ cd templates/go/gin
$ adios up
API starters

.NET apps & APIs

6 variants

ASP.NET Core, Blazor, ABP, FastEndpoints, Orchard Core, and .NET 8 starters.

.NETC#ASP.NET CoreBlazorABPOrchard Core
$ cd templates/dotnet/aspnet-core
$ adios up

Workflow example

Automate backend work without losing visibility.

Define triggers, secret references, and ordered steps in YAML. Each run keeps its status, logs, inputs, outputs, and errors, so your team can see exactly what happened.

Daily market brief

This example runs every weekday or from a webhook, then turns market data into a brief for an internal dashboard.

  1. 01

    Trigger

    Run on a weekday schedule or start from a webhook.

  2. 02

    Process

    Fetch price data and select the fields the next step needs.

  3. 03

    Publish

    Send the brief to an internal dashboard and keep every step attached to the run.

workflows/daily-market-brief.yaml
workflow_id: daily-market-brief
enabled: true

triggers:
  - type: cron
    cron: "0 13 * * 1-5"
  - type: webhook
    event: market.brief.requested

secrets:
  MARKET_DATA_API_KEY: secret://MARKET_DATA_API_KEY

steps:
  - step_id: fetch-prices
    kind: http
    command:
      method: GET
      url: https://api.example.com/quotes
      headers:
        Authorization: "Bearer secret://MARKET_DATA_API_KEY"

  - step_id: select-close
    kind: data-json
    dependencies: [fetch-prices]
    command:
      from_step: fetch-prices
      path: ".quotes"

  - step_id: publish-brief
    kind: http
    dependencies: [select-close]
    command:
      method: POST
      url: https://dashboard.example.com/api/market-briefs
2 triggers3 visible stepsSecret-backed API access

Before you start

Know what stays connected after the first build.

How do AI agents use Adios?

AI agents connect to Adios via the Model Context Protocol (MCP). Adios gives them a secure, source-backed workspace where they can run builds, execute tests, start previews, and request deployment under your approval.

Does AI-generated code stay reviewable?

Yes. All agent modifications land directly in your workspace files. You can inspect the Git diff, verify the build output, and preview the live app before deciding what to commit or deploy.

What is an AI agent environment?

It is a dedicated, secure workbench that provides an AI agent with the exact tools it needs to edit source, run declared terminal tasks, inspect logs, and manage server previews, keeping your credentials secure.

Can I bring an existing repository to Adios?

Yes. Start from any existing Git repository, local project, or template. Add your adios.yaml, and both you and your agent can build, test, and preview the app immediately.

What kinds of workloads can my agent deploy?

Adios runs web apps, APIs, WebSockets, background workers, and databases across Node.js, Python, Go, .NET, Ruby, PHP, and more, all configurable by your agent via adios.yaml.

How do you protect production deployments?

Destructive actions, custom domains, and production deployments are approval-gated. The agent can build, test, and preview its work, but it must request your permission to deploy to production.

Choose the capacity your apps need

Plans start at $10 per month. Choose the compute, storage, bandwidth, and included AI usage that fit your apps. Final terms and availability are shown at checkout.

Starter

For a first app, small API, or personal workspace.

$10/mo

  • 14-day free trial; card required
  • 1 vCPU and 1 GB RAM
  • Deploy apps within plan resource limits
  • Built-in AI assistant and web editor
  • Git and CLI deploys
  • Custom domains and TLS
  • 10 GB storage
  • 500K included AI tokens
  • 500 GB included bandwidth
Start free trial
POPULAR

Dev

For active development across several apps.

$50/mo

  • 2 vCPU and 4 GB RAM
  • Deploy apps within plan resource limits
  • AI assistant, workspaces, and previews
  • Database deployments with backups
  • Custom domains and TLS
  • 50 GB storage
  • 2.5M included AI tokens
  • 2 TB included bandwidth
Choose Dev

Pro

For production projects that need more headroom.

$99/mo

  • 4 vCPU and 8 GB RAM
  • Deploy apps within plan resource limits
  • AI assistant, workspaces, and previews
  • Database deployments with backups
  • Custom domains and TLS
  • 100 GB storage
  • 5M included AI tokens
  • 5 TB included bandwidth
Choose Pro