Documentation

Autonomous Platform DocumentationBuild, Deploy, and Operate Autonomously

Master Autonoma's three core workflows: Build & Deploy for rapid development, Maintain & Operate for autonomous operations, and Audit & Assess for continuous compliance.

Documentation by Workflow

Deep dive into each autonomous workflow

Getting Started with Build & Deploy

Transform natural language requirements into production-ready applications

Build & Deploy Access Options

Web Platform

  • • Sign up at app.theautonoma.io
  • • Natural language interface
  • • Visual architecture designer
  • • Real-time code generation
  • • One-click deployment
View pricing plans

CLI Tools

  • • Install: npm install -g @autonoma/cli
  • • Command-line interface
  • • CI/CD integration
  • • Scriptable workflows
  • • API key required
CLI documentation

Getting Started: Sign up for a free trial to access Build & Deploy. You'll receive API credentials and can start building immediately. No credit card required.

SDK Integration for Maintain & Operate

Add 3 lines of code to enable autonomous operations with Phase 3 deployment safety

New: SDKs now include feature flags, progressive delivery metrics, and compliance monitoring. For Build & Deploy, use our web platform or CLI tools.
🟨

JavaScript/TypeScript

import { Autonoma } from '@autonoma/sdk';

const autonoma = new Autonoma({
  apiKey: process.env.AUTONOMA_API_KEY
});

// 3 lines to enable autonomous operations
autonoma.start();
autonoma.trackPerformance();

// Autonoma now provides deployment safety & feature flags
🐍

Python

from autonoma import Autonoma

autonoma = Autonoma(
    api_key=os.environ['AUTONOMA_API_KEY']
)

# 3 lines to enable autonomous operations
autonoma.start()
autonoma.track_performance()

# Autonoma provides progressive delivery & monitoring
🐹

Go

import "github.com/the-autonoma/go-sdk"

client := autonoma.New(autonoma.Config{
    APIKey: os.Getenv("AUTONOMA_API_KEY"),
})

// 3 lines to enable autonomous operations
client.Start()
client.TrackPerformance()

// Progressive delivery and feature flags enabled

Java

import com.autonoma.sdk.Autonoma;

Autonoma autonoma = Autonoma.builder()
    .apiKey(System.getenv("AUTONOMA_API_KEY"))
    .build();

// 3 lines to enable autonomous operations
autonoma.start();
autonoma.trackPerformance();

// Deployment safety and compliance monitoring active

Integration Complexity by Workflow

Build & Deploy

Full SDK integration with natural language processing, architecture generation, and deployment automation.

Integration time: 30-60 minutes

Maintain & Operate

3 lines of code for complete autonomous operations, predictive monitoring, and self-healing.

Integration time: 5 minutes

Audit & Assess

Simple integration for production scoring, compliance validation, and performance benchmarking.

Integration time: 10 minutes

Need Help?

Our team is here to help you succeed with Autonoma