Routa Quickstart
1) Install dependencies
npm install --legacy-peer-deps
2) Start the web demo (development mode)
npm run dev
Open http://localhost:3000.
3) Start desktop mode (optional)
npm run tauri dev
4) Start the Rust backend API (if needed)
cargo run -p routa-server
If you are running against a custom backend endpoint, set:
ROUTA_RUST_BACKEND_URL="http://127.0.0.1:3210"
npm run dev
5) Run validation basics
npm run lint
npm run test:run
6) Core usage examples
Web
Use the UI from Home page and create a new workspace/task to let Routa agents decompose work.
CLI
The desktop package provides a Rust CLI binary in distribution:
routa --help
routa -p "Build user auth system"
7) Docs and API references
- Architecture: ARCHITECTURE
- Fitness checks: Fitness checklist
- Product spec: Feature tree
- Release notes: v0.2.5 notes
8) FAQ
- If a provider command is missing, install provider CLI first (
opencode,claude, etc.). - If static build fails, check Node version and run from repo root.