diff --git a/.github/workflows/dispatch_shadow_signal.yml b/.github/workflows/dispatch_shadow_signal.yml index 9aea6db..9310ac7 100644 --- a/.github/workflows/dispatch_shadow_signal.yml +++ b/.github/workflows/dispatch_shadow_signal.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 env: - BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/CodexAuditBridge' }} + BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/AIAuditBridge' }} BRIDGE_REF: ${{ vars.CODEX_AUDIT_BRIDGE_REF || 'main' }} BRIDGE_TASK: long_horizon_signal_shadow BRIDGE_PROVIDER: ${{ github.event.inputs.provider || 'auto' }} diff --git a/scripts/post_shadow_signal_request.py b/scripts/post_shadow_signal_request.py index 512af4a..f582406 100644 --- a/scripts/post_shadow_signal_request.py +++ b/scripts/post_shadow_signal_request.py @@ -173,7 +173,7 @@ def parse_args() -> argparse.Namespace: parser.add_argument("--repo", required=True) parser.add_argument("--source-ref", default="main") parser.add_argument("--provider", default="auto") - parser.add_argument("--bridge-repository", default="QuantStrategyLab/CodexAuditBridge") + parser.add_argument("--bridge-repository", default="QuantStrategyLab/AIAuditBridge") parser.add_argument("--as-of-date") parser.add_argument("--context-file", help="Optional JSON context bundle to embed in the issue body") parser.add_argument("--label", default=DEFAULT_LABEL) diff --git a/tests/test_dispatch_shadow_signal_workflow.py b/tests/test_dispatch_shadow_signal_workflow.py index 0b3a859..a72078f 100644 --- a/tests/test_dispatch_shadow_signal_workflow.py +++ b/tests/test_dispatch_shadow_signal_workflow.py @@ -8,4 +8,4 @@ def test_dispatch_shadow_signal_pins_bridge_ref_via_variable() -> None: assert "BRIDGE_REF: ${{ vars.CODEX_AUDIT_BRIDGE_REF || 'main' }}" in workflow assert '"ref": os.environ["BRIDGE_REF"]' in workflow - assert "QuantStrategyLab/CodexAuditBridge" in workflow + assert "QuantStrategyLab/AIAuditBridge" in workflow diff --git a/tests/test_post_shadow_signal_request.py b/tests/test_post_shadow_signal_request.py index a46b07f..817e8b9 100644 --- a/tests/test_post_shadow_signal_request.py +++ b/tests/test_post_shadow_signal_request.py @@ -10,7 +10,7 @@ def test_build_issue_body_marks_notification_and_shadow_boundary() -> None: as_of_date="2026-05-29", source_ref="main", provider="auto", - bridge_repository="QuantStrategyLab/CodexAuditBridge", + bridge_repository="QuantStrategyLab/AIAuditBridge", context_bundle={"as_of": "2026-05-29", "price_context": {"QQQ": {"trend": "above_200d"}}}, )