mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-11 19:47:12 +03:00
21 lines
489 B
Python
Executable File
21 lines
489 B
Python
Executable File
#!/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())
|