Skip to content

Quick start

In the repository you want Maestro to wire and register, run:

Terminal window
curl -fsSL https://maestro.maccredyreina.me/install.sh | sh
Terminal window
maestro status

Status shows the current session, live peers, and held work.

Terminal window
maestro work add "Document the install path" --kind task --atomic-reason "One bounded documentation change" --acceptance "README links to the installer"

The command prints the new work ID. In a fresh repository it is w1; use the ID printed in your repository in the next commands.

Terminal window
maestro work start w1

Make the accepted change and run the check that could falsify it.

Terminal window
maestro work done w1 --claim "docs: README links to the installer" --proof "source: rg -n 'install.sh' README.md"

The claim states the observable result. The proof names the evidence layer and the falsifier. Enabled policies can require a pair, a child breakdown, or a returned dispatch before completion.

Terminal window
maestro ready

Ready lists work that can start and names the gates blocking other items.