Skip to content

Commit 43b9fbc

Browse files
Pigbibicodex
andcommitted
chore: dispatch audits to AIAuditBridge
Co-Authored-By: Codex <noreply@openai.com>
1 parent c7e587c commit 43b9fbc

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/dispatch_shadow_signal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- codex
2020
- openai
2121
source_ref:
22-
description: "Ref to pass to CodexAuditBridge"
22+
description: "Ref to pass to AIAuditBridge"
2323
required: false
2424
default: "main"
2525

@@ -107,7 +107,7 @@ jobs:
107107
private-key: ${{ secrets.CROSS_REPO_GITHUB_APP_PRIVATE_KEY }}
108108
owner: ${{ github.repository_owner }}
109109
repositories: |
110-
CodexAuditBridge
110+
AIAuditBridge
111111
permission-actions: write
112112

113113
- name: Create shadow signal issue and dispatch bridge

docs/architecture.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ QuantStrategyLab already separates strategy math, snapshot generation, runtime
66
execution, and broker adapters. This repository adds a research-only signal context
77
pipeline without changing that production boundary.
88

9-
This repository is deliberately narrower than `CodexAuditBridge`. It owns
9+
This repository is deliberately narrower than `AIAuditBridge`. It owns
1010
research inputs, validation, saved artifacts, and replay harnesses. It does not
1111
own model provider routing, API keys, GitHub App write orchestration, live
1212
notifications, or execution behavior.
@@ -21,7 +21,7 @@ order routing.
2121

2222
- `ResearchSignalContextPipelines` stores context examples, schema, validation,
2323
replay tooling, and shadow artifacts.
24-
- `CodexAuditBridge` owns provider routing and API keys.
24+
- `AIAuditBridge` owns provider routing and API keys.
2525
- GitHub Issues are the first operator notification layer for monthly shadow
2626
signal runs.
2727
- The scheduled workflow builds the market context bundle before dispatching the
@@ -35,7 +35,7 @@ order routing.
3535
The current lifecycle is accumulation-first:
3636

3737
1. Build a point-in-time context bundle.
38-
2. Ask `CodexAuditBridge` to review it and produce a shadow-only artifact when
38+
2. Ask `AIAuditBridge` to review it and produce a shadow-only artifact when
3939
evidence is sufficient.
4040
3. Save both `latest_signal.json` and dated `signal_history/YYYY-MM-DD.json`.
4141
4. Replay only saved artifacts against later prices.
@@ -52,7 +52,7 @@ The current lifecycle is accumulation-first:
5252
artifacts.
5353
- Sending runtime Telegram or broker-facing notifications directly from this
5454
research repository before a deterministic plugin contract exists.
55-
- Duplicating `CodexAuditBridge` provider fallback or cross-repository write
55+
- Duplicating `AIAuditBridge` provider fallback or cross-repository write
5656
logic inside this repository.
5757

5858
## Validation Strategy

scripts/post_shadow_signal_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def build_issue_body(
130130
"## Operator Notification",
131131
"",
132132
"This issue is the operator-facing notification for the shadow signal run.",
133-
"CodexAuditBridge should post its review result here and may open a focused PR",
133+
"AIAuditBridge should post its review result here and may open a focused PR",
134134
"only for schema-valid shadow artifacts.",
135135
"",
136136
"## Boundaries",

scripts/run_codex_pr_review.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from typing import Any
2222

2323
# ---------------------------------------------------------------------------
24-
# Configuration (aligned with CodexAuditBridge)
24+
# Configuration (aligned with AIAuditBridge)
2525
# ---------------------------------------------------------------------------
2626

2727
API_BASE = "https://api.github.com"

0 commit comments

Comments
 (0)