#!/usr/bin/env python3
"""Thin CI adapter for Harbor/benchmark planning."""

from __future__ import annotations

import sys
from pathlib import Path

ROOT = Path(__file__).resolve().parents[2]
if str(ROOT) not in sys.path:
    sys.path.insert(0, str(ROOT))

from tools.benchmark_plan.compiler import main, plan  # noqa: E402

__all__ = ["main", "plan"]

if __name__ == "__main__":
    raise SystemExit(main())
