fix: relocate binary analysis skill

This commit is contained in:
username
2026-07-31 13:25:08 -04:00
parent 0d4a3652e4
commit f66ed48b8c
107 changed files with 17 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/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())