> opsgenie
Configure Opsgenie for alert management, on-call scheduling, routing rules, and incident response. Use when a user needs to set up alert routing, create escalation policies, manage on-call rotations, integrate with monitoring tools, or automate incident workflows with Opsgenie.
curl "https://skillshub.wtf/TerminalSkills/skills/opsgenie?format=md"Opsgenie
Overview
Set up Opsgenie for centralized alert management with routing rules, on-call schedules, escalation policies, and integrations. Covers alert API, team management, notification policies, and automation.
Instructions
Task A: Create Teams and Routing
# Create a team
curl -X POST "https://api.opsgenie.com/v2/teams" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "Platform Engineering",
"description": "Infrastructure and platform services team",
"members": [
{ "user": { "username": "marta@example.com" }, "role": "admin" },
{ "user": { "username": "tom@example.com" }, "role": "user" },
{ "user": { "username": "nina@example.com" }, "role": "user" }
]
}'
# Create a routing rule for the team
curl -X POST "https://api.opsgenie.com/v2/teams/Platform%20Engineering/routing-rules" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "Critical Production Alerts",
"order": 0,
"criteria": {
"type": "match-all-conditions",
"conditions": [
{ "field": "priority", "operation": "equals", "expectedValue": "P1" },
{ "field": "tags", "operation": "contains", "expectedValue": "production" }
]
},
"notify": {
"type": "escalation",
"name": "Platform Critical Escalation"
},
"timezone": "America/New_York"
}'
Task B: Create Alerts
# Create an alert
curl -X POST "https://api.opsgenie.com/v2/alerts" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"message": "Payment Service: Error rate exceeded 5%",
"alias": "payment-service-error-rate-prod",
"description": "Error rate for payment-service in production has exceeded the 5% threshold. Current rate: 8.3%.\n\nAffected endpoints: /api/charge, /api/refund\nDashboard: https://grafana.internal/d/payments",
"responders": [
{ "name": "Platform Engineering", "type": "team" }
],
"tags": ["production", "payment", "critical"],
"priority": "P1",
"entity": "payment-service",
"source": "prometheus-alertmanager",
"details": {
"error_rate": "8.3%",
"threshold": "5%",
"runbook": "https://wiki.internal/runbooks/payment-errors"
}
}'
# Acknowledge an alert
curl -X POST "https://api.opsgenie.com/v2/alerts/payment-service-error-rate-prod/acknowledge?identifierType=alias" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{ "user": "marta@example.com", "note": "Investigating — checking database connections." }'
# Close an alert
curl -X POST "https://api.opsgenie.com/v2/alerts/payment-service-error-rate-prod/close?identifierType=alias" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{ "user": "marta@example.com", "note": "Fixed connection pool sizing. Error rate back to normal." }'
Task C: On-Call Schedules
# Create an on-call schedule with weekly rotation
curl -X POST "https://api.opsgenie.com/v2/schedules" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "Platform Primary On-Call",
"ownerTeam": { "name": "Platform Engineering" },
"timezone": "America/New_York",
"enabled": true,
"rotations": [
{
"name": "Weekday Rotation",
"type": "weekly",
"startDate": "2026-02-23T09:00:00Z",
"participants": [
{ "type": "user", "username": "marta@example.com" },
{ "type": "user", "username": "tom@example.com" },
{ "type": "user", "username": "nina@example.com" }
],
"timeRestriction": {
"type": "weekday-and-time-of-day",
"restrictions": [
{ "startDay": "monday", "startHour": 9, "startMin": 0, "endDay": "friday", "endHour": 18, "endMin": 0 }
]
}
}
]
}'
# Get current on-call participants
curl -s "https://api.opsgenie.com/v2/schedules/Platform%20Primary%20On-Call/on-calls" \
-H "Authorization: GenieKey ${OG_API_KEY}" | \
jq '.data.onCallParticipants[] | {name: .name, type: .type}'
Task D: Escalation Policies
# Create an escalation policy
curl -X POST "https://api.opsgenie.com/v2/escalations" \
-H "Authorization: GenieKey ${OG_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "Platform Critical Escalation",
"ownerTeam": { "name": "Platform Engineering" },
"rules": [
{
"condition": "if-not-acked",
"notifyType": "default",
"delay": { "timeAmount": 5 },
"recipient": { "type": "schedule", "name": "Platform Primary On-Call" }
},
{
"condition": "if-not-acked",
"notifyType": "default",
"delay": { "timeAmount": 15 },
"recipient": { "type": "user", "username": "marta@example.com" }
},
{
"condition": "if-not-acked",
"notifyType": "all",
"delay": { "timeAmount": 30 },
"recipient": { "type": "team", "name": "Platform Engineering" }
}
],
"repeat": { "waitInterval": 10, "count": 3, "resetRecipientStates": true }
}'
Task E: Integration with Prometheus Alertmanager
# alertmanager.yml — Opsgenie receiver configuration
receivers:
- name: 'opsgenie-critical'
opsgenie_configs:
- api_key: '<OG_API_KEY>'
message: '{{ .CommonLabels.alertname }}: {{ .CommonAnnotations.summary }}'
description: '{{ .CommonAnnotations.description }}'
priority: '{{ if eq .CommonLabels.severity "critical" }}P1{{ else if eq .CommonLabels.severity "warning" }}P3{{ else }}P5{{ end }}'
tags: '{{ .CommonLabels.environment }},{{ .CommonLabels.service }}'
entity: '{{ .CommonLabels.service }}'
source: 'prometheus'
responders:
- name: 'Platform Engineering'
type: 'team'
details:
alertname: '{{ .CommonLabels.alertname }}'
cluster: '{{ .CommonLabels.cluster }}'
Best Practices
- Use alert aliases for deduplication so the same issue doesn't create multiple alerts
- Configure notification policies per user — allow P1 alerts to phone at night, P3 only during work hours
- Use routing rules to direct alerts to the correct team based on tags and priority
- Set escalation timeouts based on SLA requirements — shorter for P1, longer for P3
- Add runbook URLs and dashboard links in alert details for faster resolution
- Use heartbeat monitoring to detect when integrations stop sending alerts
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.