Problem
The Integrity Filtering Audit (source issue) identified that the AI Moderator workflow makes outbound connection attempts to chatgpt.com and ab.chatgpt.com, which are blocked by the Agent Workflow Firewall (AWF).
Evidence
From run 24418807601 and 24420822519:
⚠️ Warning: I tried to connect to the following addresses, but was blocked by firewall rules:
- chatgpt.com
- ab.chatgpt.com
The connections are blocked (the firewall is working correctly), but the fact that the code attempts these connections at all warrants investigation.
Analysis
- The AI Moderator workflow likely has an npm dependency that phones home to
chatgpt.com / ab.chatgpt.com — possibly an OpenAI SDK or related package performing telemetry, analytics, or configuration fetches.
api.openai.com is in the workflow's network allow list (presumably intentional for the moderation API), but chatgpt.com and ab.chatgpt.com are not.
- The workflow runs successfully despite the blocks, suggesting these are non-critical telemetry or analytics calls.
Recommended Actions
- Audit npm dependencies in the AI Moderator workflow for any package that contacts
chatgpt.com or ab.chatgpt.com. Check OpenAI SDK configuration for telemetry opt-out.
- Determine intent: If these calls are telemetry/analytics from an SDK, disable them via environment variable or configuration (e.g.,
OPENAI_LOG=off or similar).
- Review
api.openai.com: Confirm whether it should remain in the allow list or be routed through the MCP Gateway for auditability.
- Consider adding
chatgpt.com to a deny-log list so future probes are tracked without silently failing.
References
Problem
The Integrity Filtering Audit (source issue) identified that the AI Moderator workflow makes outbound connection attempts to
chatgpt.comandab.chatgpt.com, which are blocked by the Agent Workflow Firewall (AWF).Evidence
From run 24418807601 and 24420822519:
The connections are blocked (the firewall is working correctly), but the fact that the code attempts these connections at all warrants investigation.
Analysis
chatgpt.com/ab.chatgpt.com— possibly an OpenAI SDK or related package performing telemetry, analytics, or configuration fetches.api.openai.comis in the workflow's network allow list (presumably intentional for the moderation API), butchatgpt.comandab.chatgpt.comare not.Recommended Actions
chatgpt.comorab.chatgpt.com. Check OpenAI SDK configuration for telemetry opt-out.OPENAI_LOG=offor similar).api.openai.com: Confirm whether it should remain in the allow list or be routed through the MCP Gateway for auditability.chatgpt.comto a deny-log list so future probes are tracked without silently failing.References