#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.12"
# dependencies = []
# ///

# ─── How to run ───
# 1. Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh
# 2. Run: uv run python scripts/run_nutricoach_v140_golden_path.py --help
# ──────────────────

"""Compatibility exports for the split Todo10 r2 runtime."""

from scripts.nutricoach_v140_golden_path_orchestrator import run_scenario
from scripts.nutricoach_v140_golden_path_receipt import build_receipt
from scripts.nutricoach_v140_golden_path_verifier import verify_artifacts

__all__ = ("build_receipt", "run_scenario", "verify_artifacts")
