Ticket automation
Automatically open change tickets with remediation context, link PRs, and close tickets when the fix merges.
Slack/Teams notifications
Send remediation events to security and engineering channels with approve/decline actions and PR summaries.
Escalation paths
Escalate to incident or on-call rotations when validation fails or rollout monitors detect anomalies.
Example Slack notification payload
{
"channel": "#security-remediation",
"text": "Waclaude opened PR #542 to fix CVE-2023-12345",
"attachments": [
{
"title": "Review minimal diff",
"title_link": "https://github.com/acme/api/pull/542",
"fields": [
{ "title": "Exploit", "value": "SQLi replay blocked" },
{ "title": "Tests", "value": "unit ✅ integration ✅ fuzz ✅" }
],
"actions": [
{ "type": "button", "text": "Approve", "url": "https://waclaude.run/approve/542" },
{ "type": "button", "text": "Request changes", "url": "https://waclaude.run/reject/542" }
]
}
]
}