Skip to content

Developer Quick Start

This guide gets contributors set up to build and work on Ito locally.

Prerequisites

  • Rust toolchain (rustup, cargo)
  • uv for docs tooling and isolated Python environments
  • prek for hooks

1) Initialize developer environment

make init

2) Build Ito CLI

make build

3) Run Ito in your repository

ito init
ito list

4) Create your first change

ito create change "my-first-change"
ito agent instruction proposal --change <change-id>

5) Build docs site locally

make docs-site-build
make docs-site-serve

Next Steps