Coming Soon

BuildDebug& Deploy Application.

Run the full A8S workflow from your terminal with one clean CLI for authentication, setup, secrets, logs, rollout tracking, and instant recovery.

$ a8s cli --coming-soon
macmini - zsh - 120x30
coming soon
AUTONOMOUS
Autonomous CLI v1.0.0
Environment : Production
User : dev@autonomous
Cluster : connected
Tips:
- type 'help' to see commands
- type 'deploy' to deploy your app
- type 'exit' to quit
Autonomous CLI - DevOps Platform
Type 'help' to get started.
A8S > help
Commands:
deploy -> Deploy your app
status -> System status
logs -> View logs
exit -> Quit
A8S > deploy
CLI feature screen is coming soon.
Progress: 100%
Coming soon.

Install, login,and configure fast

Start from the terminal with token authentication, project control, and environment setup before the first deployment.

Setup Flow

Authenticate first, choose or create a project, then apply environment configuration before deployment.

CLI authentication
Secure token auth
Project management
Project control
Environment configuration
Runtime config
Secure token auth

CLI authentication

Login with a CLI token, store auth locally, and keep secure access to platform APIs without opening the dashboard.

a8s auth login --token <token>
Project control

Project management

Create new projects, switch between existing ones, and manage platform resources directly from the terminal instead of the UI.

a8s project create api-service
Runtime config

Environment configuration

Manage environment variables and runtime configuration from the CLI so the next deployment picks up the updated values.

a8s env set API_URL=https://api.example.com

Every command youneed to ship faster

Authenticate, bootstrap, inspect, and release from one operator-friendly command surface.

a8s deploy

Build or select a version and ship it to the chosen environment with rollout feedback directly in the terminal.

a8s deploy --env prod --follow
live deployment output
a8s deploy --env prod --follow
$ a8s deploy --env prod --follow
● selecting artifact :: api-service:1.9.4
● applying release :: namespace/team-prod
● rollout watch :: deployment/api-service
✔ service healthy :: 3/3 replicas ready
--env prod--followrollback ready

Operate releaseswithout leaving shell

Deploy, redeploy, rollback, and inspect logs from one CLI workflow instead of bouncing back to the web UI.

Equivalent to the UI deploy action.
Primary flow

Deployment via CLI

Deploy an application from the terminal with the same release flow as the UI deploy button and support environment selection directly in shell.

Release path
Select target environment
prod / staging / dev
Run deployment from terminal
a8s deploy --env prod --follow
Watch rollout feedback
build, rollout, health

Redeploy instantly

Useful for restart and config-only updates.

Re-trigger the last deployment without code changes when you need a restart, a config refresh, or a quick recovery cycle.

Rollback safely

Version-aware recovery from terminal.

Rollback to a previous version from the CLI and instantly redeploy the stored image without waiting for another build.

Logs access

Live tailing with filtered output.

Open application logs directly in the terminal with live streaming and filtering so debugging stays close to the release workflow.

Real commands.Daily workflow.

A simple CLI path for authentication, project setup, deployment, logs, and rollback.

1token auth
2project create
3env set
4deploy
5logs
6rollback
Use these command examples as the daily shell path for authentication, project setup, runtime config, deployment, logs, and rollback.
cli workflow examples
a8s cli
$ a8s auth login --token ********
✔ token saved locally :: workspace ready
$ a8s project create api-service --env prod
✔ project created :: team-prod/api-service
$ a8s env set API_URL=https://api.example.com
$ a8s deploy --env prod --follow
$ a8s logs api-service --env prod --follow
$ a8s rollback api-service --to v1.9.2

From commit to productionin four steps

A8S turns the daily release flow into a short CLI path your team can repeat with confidence.

1

Authenticate

Connect the workspace and load the correct project context before changing the release state.

$ a8s auth login
$ a8s use team-prod
2

Initialize App

Bootstrap the app configuration, runtime defaults, and generated project files from the CLI.

$ a8s init api-service
$ a8s services list
3

Set Secrets

Push environment values and make sure deployments have the runtime configuration they need.

$ a8s secrets sync
$ a8s status api-service
4

Deploy & Monitor

Release the app, watch rollout progress, and keep the log stream nearby until the service is healthy.

$ a8s deploy --follow
$ a8s logs api-service --follow