🚀 Aexol CLI Commands Guide
Current reference for the maintained local Aexol CLI.
Available Commands
# Core file commands
aexol parse <file>
aexol validate <file>
aexol analyze <file>
aexol docs <file> [-o output.md]
# Tooling
aexol auth <subcommand>
aexol lsp [--info|--stdio]
aexol update [--version <version>]
Core Commands
Parse
aexol parse app.aexol
Parse an Aexol file and display its AST structure.
Validate
aexol validate app.aexol
Validate syntax and semantic structure.
Analyze
aexol analyze app.aexol
Generate a detailed analysis report.
Docs
aexol docs app.aexol -o API.md
Generate Markdown documentation from a specification.
Tooling Commands
Auth
aexol auth login
aexol auth whoami
Authentication management for supported cloud features.
LSP
aexol lsp --info
aexol lsp --stdio
Use the Language Server Protocol server with editors and IDEs.
Update
aexol update
aexol update --version 0.4.4
Install or update the CLI.
Removed Commands
The local CLI no longer exposes these commands:
chatfromimplementinferencemcp
If you see older examples using them, treat them as historical.
AI & Remote Workflows
AI-assisted and remote/team workflows are still available through maintained non-CLI surfaces:
- Remote MCP endpoint:
https://api.aexol.ai/mcp - Aexol Studio: browser-based editing, generation, refinement, and team workflows
See:
Examples
# Validate and inspect a spec
aexol validate examples/todo.aexol
aexol analyze examples/todo.aexol
# Generate docs
aexol docs examples/todo.aexol -o TODO.md
# Start LSP in an editor integration
aexol lsp --stdio
Getting Help
aexol help
aexol parse --help
aexol validate --help
aexol analyze --help
aexol docs --help