Quick Start

Get Started with Autonoma

Deploy the world's first autonomous SDLC platform in 5 minutes

5 minute setup
No code changes required
Instant value

Prerequisites

Before you begin, ensure you have:

  • An Autonoma account (sign up free)
  • Your preferred development environment (VS Code, IntelliJ, etc.)
  • Access to your codebase (Git repository recommended)
1

Install Autonoma SDK

Choose your language and install the Autonoma SDK:

LanguagePackage ManagerInstallation Command
🟨JavaScript/TypeScript
npmnpm install @autonoma/sdk
🟨JavaScript/TypeScript
yarnyarn add @autonoma/sdk
🐍Python
pippip install autonoma
🐹Go
go getgo get github.com/the-autonoma/go-sdk
Java
Mavencom.autonoma:autonoma-sdk:1.0.0
Java
Gradleimplementation 'com.autonoma:autonoma-sdk:1.0.0'
2

Configure Your Project

Initialize Autonoma in your application with your API key:

LanguageConfiguration ExampleKey Features
🟨JavaScript/TypeScript
import { Autonoma } from '@autonoma/sdk';

const autonoma = new Autonoma({
  apiKey: process.env.AUTONOMA_API_KEY,
  environment: 'production',
  features: {
    autoFix: true,
    predictiveAnalysis: true
  }
});
  • • Auto-fix issues
  • • Predictive analysis
  • • Performance optimization
  • • Security scanning
🐍Python
from autonoma import Autonoma
import os

autonoma = Autonoma(
    api_key=os.environ['AUTONOMA_API_KEY'],
    environment='production',
    features={
        'auto_fix': True,
        'predictive_analysis': True
    }
)
  • • Auto-fix issues
  • • Predictive analysis
  • • Performance optimization
  • • Security scanning

Pro Tip: Get your API key from your Autonoma Dashboard. Keep it secure and never commit it to version control.

3

Run Your Application

Start your application normally. Autonoma will automatically:

Analyze your codebase

Understand code patterns, dependencies, and architecture

Build predictive models

Create ML models specific to your application's behavior

Start monitoring

Begin real-time monitoring for issues and anomalies

Enable auto-remediation

Automatically fix issues before they impact users

Terminal Output
$ npm start

> my-app@1.0.0 start
> node server.js

[Autonoma] Initializing autonomous SDLC platform...
[Autonoma] ✓ Connected to Autonoma Cloud
[Autonoma] ✓ Codebase analysis complete (2.3s)
[Autonoma] ✓ Predictive models loaded
[Autonoma] ✓ Real-time monitoring active
[Autonoma] ✓ Auto-remediation enabled
[Autonoma] 
[Autonoma] 🚀 Your application is now protected by Autonoma
[Autonoma] 
[Autonoma] Dashboard: https://dashboard.autonoma.ai/projects/my-app
[Autonoma] Documentation: https://docs.autonoma.ai

Server running on http://localhost:3000
4

Verify Installation

Check that Autonoma is working correctly:

1. Check Dashboard

Visit your Autonoma dashboard to see real-time insights:

Open Dashboard

2. Trigger Test Event

Create a test event to see Autonoma in action:

autonoma.test()

Need Help?

Our team is here to help you succeed