Quick Start: Build with Aexol AI

Start from an idea and ship working code — right in your browser with Aexol Studio, or via the CLI.

1. Learn about Aexol Studio

The fastest way to start building with Aexol is right in your browser. No installation needed.

→ Read the Studio Guide to learn about all features, then open Studio when you're ready.

With Studio you can:

  • Write and edit Aexol specifications with syntax highlighting
  • Convert natural language into Aexol specs using AI
  • Generate production code directly from the browser
  • Manage projects, teams, and billing

2. Write your first specification

In the Studio editor, try writing a simple specification:

type Todo {
  title: String
  done: Boolean
}

agent TodoManager {
  can create Todo
  can update Todo
  can delete Todo
}

workflow TodoFlow {
  initial state Open
  state InProgress
  final state Done

  transition start: Open -> InProgress
  transition complete: InProgress -> Done
}
✨ Edit in Studio

Click Validate to check your spec, then Generate to produce code.

3. Explore workflow recipes

Browse ready-made patterns for common projects:

Alternative: Use the CLI

Prefer working from the terminal? Install the Aexol CLI:

NPM (recommended)

npm install -g @aexol/aexol

Deno

deno install --allow-read --allow-write --allow-net -n aexol https://deno.land/x/aexol/main.ts

Key CLI commands

  • aexol chat — interactive AI design partner
  • aexol validate <file> — check specs for errors
  • aexol analyze <file> — complexity analysis
  • aexol docs <file> — generate markdown documentation
  • aexol implement <file> — AI-assisted implementation

See CLI Commands for the full reference.

Next steps