Skip to main content
Mesa treats every write as a versioned change in a real Git repository.

Versioning model

  • Commits are immutable checkpoints.
  • Branches let you isolate proposed changes.
  • Merges or explicit commits to main promote accepted work.

Why it matters for agents

Agent workflows are often iterative and non-linear. Versioning gives you:
  • repeatability for every run,
  • clear rollback points,
  • auditable change history for human review.

Next steps