#!/usr/bin/env python3
"""binary — CLI for the binary analysis skill.

Thin entrypoint that imports the implementation package from the same
directory so that `scripts/binary` remains the executable entrypoint.
"""

from __future__ import annotations

import os
import sys

_HERE = os.path.dirname(os.path.abspath(__file__))
if _HERE not in sys.path:
    sys.path.insert(0, _HERE)

from binary_analysis.cli.main import main  # noqa: E402

if __name__ == "__main__":
    sys.exit(main())
