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 A6s CLI

The fastest way to get started — install the CLI globally and authenticate:

# Install
npm install -g @autonoma-io/code

# Authenticate (opens browser)
a6s auth login

# Run your first command
a6s "analyze my project for security issues"

# Start daemon for IDE extensions
a6s code --daemon

That's it — you now have access to 28 AI agents, LSP code intelligence, and the RIGOR verification framework.

IDE Extensions — bring A6s into your editor

Install an extension for your editor to get inline code actions, RIGOR progress, and agent invocation:

EditorInstallation
VS Codecode --install-extension autonoma.autonoma-code
JetBrainsSettings → Plugins → Marketplace → "A6s"
Neovim{ "The-Autonoma/autonoma-nvim" }
Emacs(use-package autonoma)
Sublime TextPackage Control → A6s
2

Configure Your Project

Configure the CLI and connect your IDE extension:

CLI Configuration

# Set your API key
export AUTONOMA_API_KEY=your-api-key-here

# Start the daemon (IDE extensions connect here)
a6s code --daemon

# The daemon runs on ws://localhost:9876/ws

Connect Your Editor

Install the A6s extension for your editor — it will auto-connect to the running daemon:

# VS Code
code --install-extension autonoma.autonoma-code

# Or see all 5 editors at /docs/extensions

Pro Tip: Get your API key from your A6s 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://www.theautonoma.io/dashboard
[Autonoma] Documentation: https://www.theautonoma.io/docs

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:

a6s test

Need Help?

Our team is here to help you succeed