Source stays inspectable
The AI works on project files, so you can review a diff, test it, commit it, and keep the next change grounded in the same codebase.
AI app deployment
AI can produce a useful first version, but developers still need source control, config, previews, logs, secrets, health checks, and a release path. Adios puts those pieces in one workspace-to-production flow.
Source to deploy
The problem
Copying generated files into a repository is only the beginning. A deployable app needs repeatable commands, environment boundaries, health behavior, logs, secrets, and a way to promote the version you actually checked.
The AI works on project files, so you can review a diff, test it, commit it, and keep the next change grounded in the same codebase.
Build, start, port, region, secrets, and dependencies belong in a manifest instead of being hidden in a chat transcript.
The same app can be deployed from a template, a workspace, a local folder, or a Git-backed source path.
Workflow
This is the workflow Adios is designed to keep in one place.
Open a repository, local project, or Adios template. The AI agent edits files in a workspace that keeps project state, not just a copied answer.
Use AI to add the route, UI, worker, workflow, or database integration. Review the changed files, commands, and assumptions before anything goes live.
Build and run the app in a preview runtime. Check build output, runtime logs, health behavior, and the page or API response the change created.
Keep build commands, start commands, ports, secrets, managed resources, and routing choices beside the application code where they can be reviewed.
Promote the current source into an Adios deployment, attach the generated route or custom domain, and continue from the same source-backed workflow next time.
Manifest
A small `adios.yaml` gives the app a reviewable runtime contract. The exact fields depend on the project, but the goal is the same: make the deploy path visible.
name: ai-assisted-api
runtime: node@24
region: de
build_cmd: npm ci && npm run build
start_cmd: node dist/server.js
health_cmd: node scripts/healthcheck.js
port: 8080
env:
DATABASE_URL: secret://DATABASE_URL
API_SIGNING_KEY: secret://API_SIGNING_KEYGood fit
Not the goal
FAQ
No. You can deploy an existing app, start from a template, or work in an AI-assisted workspace. The AI workflow is useful because Adios keeps generated code connected to source, preview, Git, and deployment.
adios.yaml describes how Adios builds, runs, configures, and publishes the app. It keeps runtime decisions close to the code instead of only storing them in a dashboard.
Yes. Adios has examples and templates for common web, API, and data-backed apps, including Next.js, Node.js, Python, Go, Ruby, .NET, Postgres, Redis, MongoDB, MySQL, and RabbitMQ.
MCP is one way for AI tools to work with platform context. The key Adios workflow is broader: source-backed edits, previews, logs, secrets, Git, and deploys stay connected even when the code started from an AI request.