Install the CLI globally:
npm install -g @aut-o/cliOr use npx without installing:
npx @aut-o/cli init my-productCreate a new aut-o project. This generates grounding files (AGENTS.md, manifest.json) and the project structure:
aut-o init my-productThe init command detects your tech stack, generates an AGENTS.md file for AI tool grounding, and sets up the aut-o scoring configuration.
Check that your project meets aut-o quality standards:
aut-o validateThis runs the 12 tenets against your project and reports compliance.
Get your project's aut-o Score:
aut-o scoreThe aut-o Score combines deterministic checks (lint, types, tests), LLM-as-judge evaluation, and historical calibration into a 0-100 composite score.
Launch the full 9-stage autonomous pipeline:
aut-o run "Build a task management app with real-time collaboration"The pipeline researches, debates, evolves, documents, architects, implements, tests, deploys, and prepares your product for market. Each stage must pass its quality gate before advancing.