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 StudioClick Validate to check your spec, then Generate to produce code.
3. Explore workflow recipes
Browse ready-made patterns for common projects:
- Todo Flow — task management workflow
- E-commerce Starter — product & order lifecycle
- Landing Blueprint — page builder specification
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 partneraexol validate <file>— check specs for errorsaexol analyze <file>— complexity analysisaexol docs <file>— generate markdown documentationaexol implement <file>— AI-assisted implementation
See CLI Commands for the full reference.
Next steps
- Studio Guide — comprehensive guide to Aexol Studio
- Workflow Recipes — ready-made patterns for common projects
- Language Tutorial — deep dive into Aexol syntax
- Language Reference — exhaustive keyword reference
