Get Started with Autonoma
Deploy the world's first autonomous SDLC platform in 5 minutes
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)
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 --daemonThat'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:
| Editor | Installation |
|---|---|
| VS Code | code --install-extension autonoma.autonoma-code |
| JetBrains | Settings → Plugins → Marketplace → "A6s" |
| Neovim | { "The-Autonoma/autonoma-nvim" } |
| Emacs | (use-package autonoma) |
| Sublime Text | Package Control → A6s |
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/wsConnect 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/extensionsPro Tip: Get your API key from your A6s Dashboard. Keep it secure and never commit it to version control.
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
$ 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:3000Verify Installation
Check that Autonoma is working correctly:
2. Trigger Test Event
Create a test event to see Autonoma in action:
a6s test