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
@@ -0,0 +1,33 @@
"""CLI command implementations — argument parsing, dispatch, and output."""
from __future__ import annotations
from binary_analysis.cli import (
binary_ops,
bootstrap,
doctor,
functions,
project,
references,
reporting,
search,
security,
structural,
version,
worker,
)
__all__ = [
"binary_ops",
"bootstrap",
"doctor",
"functions",
"project",
"references",
"reporting",
"search",
"security",
"structural",
"version",
"worker",
]