feat: add profiled agent challenge harness
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
"""Central CLI for saving agent challenge manual audits."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
try:
|
||||
from .audit import main as audit_main
|
||||
except ImportError:
|
||||
_project_root = Path(__file__).resolve().parents[2]
|
||||
if str(_project_root) not in sys.path:
|
||||
sys.path.insert(0, str(_project_root))
|
||||
from examples.agent_challenges.audit import main as audit_main
|
||||
|
||||
|
||||
def main(argv: list[str] | None = None) -> int:
|
||||
return audit_main(argv)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
Reference in New Issue
Block a user