17 lines
412 B
Python
17 lines
412 B
Python
#!/usr/bin/env python3
|
|
"""Thin repo-local wrapper for the Atlas/Hermes context-gate advisory CLI."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
REPO_ROOT = Path(__file__).resolve().parents[1]
|
|
if str(REPO_ROOT) not in sys.path:
|
|
sys.path.insert(0, str(REPO_ROOT))
|
|
|
|
from openvino_context_gate.cli import main # noqa: E402
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|