These templates are intentionally secret-free. Replace placeholders in your private environment only.
Support & Ticket Playbook
name: support_ticket_playbook
input:
channel_event: <CHANNEL_EVENT>
pipeline:
- normalize_message
- classify_intent
- check_faq_index: <FAQ_INDEX>
- decide_handoff:
conditions: [high_risk, repeated_issue, low_confidence]
- create_or_update_ticket: <TICKET_SYSTEM>
output:
auto_reply: <RESPONSE_TEMPLATE>
ticket_id: <TICKET_ID>
metrics: [fcr, frt, handoff_rate, escalation_rate]
Incident Response Playbook
name: incident_response_playbook
input:
alert_event: <MONITORING_ALERT>
pipeline:
- dedupe_alert:
key: [service, fingerprint, severity]
window_minutes: <DEDUP_WINDOW_MINUTES>
- route_by_severity:
p1: page_primary_oncall
p2: notify_incident_channel
- ack_and_close_loop:
ack_writeback: true
resolve_writeback: true
- draft_postmortem_stub
output:
incident_status: <INCIDENT_STATE>
metrics: [mtta, mttr, alerts_per_hour, false_positive_rate]
Sanitization Checklist
- Never publish tokens, API keys, webhook secrets, or signing secrets.
- Never expose server IPs, internal domains, ports, or real file paths.
- Never upload full logs, raw payloads, or user messages to public pages.