"""Repo path helpers for loading shared config across services.""" from __future__ import annotations from pathlib import Path def repo_root() -> Path: # shared/aks_paths.py -> parents[1] is repo root return Path(__file__).resolve().parents[1]