com um clique
pagerduty
PagerDuty incident management and on-call scheduling
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
PagerDuty incident management and on-call scheduling
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Docker container and image management with native docker CLI integration. Use when you need to manage containers, images, networks, volumes, or run Docker Compose.
Video and audio processing using FFmpeg inside a secure Docker container
Image manipulation and conversion using ImageMagick inside a secure Docker container
MongoDB database client with Docker-based mongosh CLI
MySQL database client with Docker-based mysql CLI
PostgreSQL CLI client (psql) for database operations running inside a Docker container
| name | pagerduty |
| version | 1.0.0 |
| description | PagerDuty incident management and on-call scheduling |
| author | Skill Engine |
Manage incidents and on-call schedules with PagerDuty API integration.
skill install ./examples/wasm-skills/pagerduty-skill
skill config pagerduty --set PAGERDUTY_API_KEY=your_api_key
List incidents with optional filtering.
Parameters:
status (optional, string): Filter: triggered, acknowledged, resolvedurgency (optional, string): Filter: high, lowservice (optional, string): Filter by service IDsince (optional, string): Start date (ISO 8601)until (optional, string): End datelimit (optional, number): Maximum results (default: 25)Example:
skill run pagerduty list-incidents --status triggered
skill run pagerduty list-incidents --urgency high
Get detailed information about a specific incident.
Parameters:
id (required, string): Incident IDExample:
skill run pagerduty get-incident --id P1234ABC
Create a new incident manually.
Parameters:
title (required, string): Incident titleservice (required, string): Service IDfrom (required, string): Email of the user creating the incidenturgency (optional, string): high or low (default: high)body (optional, string): Incident descriptionExample:
skill run pagerduty create-incident --title "Database connection failures" --service PXXXXX --from "user@example.com"
Acknowledge an incident.
Parameters:
id (required, string): Incident IDfrom (required, string): Email of the user acknowledgingExample:
skill run pagerduty acknowledge-incident --id P1234ABC --from "user@example.com"
Resolve an incident.
Parameters:
id (required, string): Incident IDfrom (required, string): Email of the user resolvingresolution (optional, string): Resolution notesExample:
skill run pagerduty resolve-incident --id P1234ABC --from "user@example.com" --resolution "Fixed by scaling up"
Add a note to an incident timeline.
Parameters:
incident_id (required, string): Incident IDcontent (required, string): Note contentfrom (required, string): Email of the user adding the noteExample:
skill run pagerduty add-note --incident_id P1234ABC --content "Identified root cause" --from "user@example.com"
List current on-call assignments.
Parameters:
schedule (optional, string): Filter by schedule IDescalation_policy (optional, string): Filter by escalation policy IDExample:
skill run pagerduty list-oncalls
List PagerDuty services.
Parameters:
query (optional, string): Search queryteam (optional, string): Filter by team IDExample:
skill run pagerduty list-services --query "production"