Examples

Service repos with explicit readiness

A service contract that keeps healthchecks, setup, and readiness visible.

copynew usersbasicstable2026-05-30

Typical signals

  • service startup and healthchecks
  • setup tasks for dependencies
  • CI that validates the contract before deployment
  • clear writable and protected paths

Example contract

ota.yamlyaml
project:  name: platform-service  description: Service repo with readiness checkstasks:  setup:    internal: true    run: make setup  check:    run: make check  ci:    run:      - ota run setup      - ota run checkservices:  api:    healthcheck:      command: curl -fsS http://localhost:8080/healthagent:  entrypoint: setup  default_task: ci  safe_tasks:    - setup    - check    - ci  verify_after_changes:    - check    - ci