# External Communications Policy # Controls when and how agents can communicate externally. name: external-comms description: Governs agent communication with external systems and parties version: "1.0.0" rules: - name: deny-assistant-external-email description: Assistants cannot send external emails without escalation conditions: agent_role: assistant action: send_email target: external effect: escalate priority: 80 - name: allow-operator-external description: Operators may communicate externally conditions: agent_role: operator target: external effect: allow priority: 70 - name: deny-external-api-restricted description: No external API calls with restricted data conditions: action: api_call target: external data_type: restricted effect: deny priority: 100 - name: allow-internal-comms description: Internal communication is always allowed conditions: target: internal effect: allow priority: 10