feat: add profiled agent challenge harness

This commit is contained in:
lda
2026-06-23 00:19:31 +07:00 Verified
parent 3c3cd0e241
commit 893872f821
19 changed files with 2120 additions and 0 deletions
@@ -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())