#!/usr/bin/env python3 """Thin entry point. The implementation is `llm_ingestion_okf.propose`. It moved into the package when `okf build` was packaged: the command has to reach the proposer from an installed copy, where this directory does not exist. This file stays because the published reproduction blocks in `docs/2026-09-03-k2-bundle-rebuild.md` and `docs/2026-09-04-k3-arm-c.md` name it, and a measurement whose command no longer runs is a measurement nobody can repeat. No logic here, deliberately: two copies of a proposal rule would let the published path and the packaged one drift apart while both stayed green. """ from __future__ import annotations import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) from llm_ingestion_okf.propose import main # noqa: E402 if __name__ == "__main__": raise SystemExit(main())