#!/usr/bin/env python3
"""Thin CLI wrapper — installed to ~/.okstra/bin/. Delegates to okstra_ctl."""
import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))
from okstra_ctl.incremental_scope import main  # noqa: E402

if __name__ == "__main__":
    raise SystemExit(main(sys.argv[1:]))
