Direct supplier email send path bypasses approval
The Agent Charter requires approval for supplier_email actions, but the implementation exposes a direct send path for supplier follow-up email.
Charter approval requirement
supplier-risk-agent/agent.yml:38-42
send_supplier_email requires_approval: true and reversible: false.
Implementation action path
supplier-risk-agent/src/index.ts:54-57
sendSupplierEmailPilotFastPath delivers supplier email without approval.
Developer next step
Add an approval handoff before email send, or remove the direct send path and keep email draft-only.
Reviewer prompt
Decide whether this action must be approval-gated before pilot or the charter needs a reviewed scope change.
