[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-pagerduty-api":3,"mdc-pt0rtd-key":36,"related-org-anthropic-pagerduty-api":3098,"related-repo-anthropic-pagerduty-api":3287},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"pagerduty-api","manage PagerDuty incidents and on-call","Query and manage PagerDuty — find out who's on call, list and manage incidents, read escalation policies and schedules, trace who got paged and why, acknowledge\u002Fresolve\u002Fsnooze\u002Fescalate incidents, and create or update services. Use this whenever the user mentions PagerDuty, on-call, paging, escalation, an incident ID like `PXXXXXX` or `Q...`, asks \"who's on call\", \"page the on-call\", \"ack this incident\", \"why wasn't I paged\", or pastes a pagerduty.com URL — even if they don't say \"API\". Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Operations","operations","tag",{"name":18,"slug":19,"type":16},"Alerting","alerting",{"name":21,"slug":22,"type":16},"Monitoring","monitoring",{"name":24,"slug":25,"type":16},"Incident Response","incident-response",30,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins","2026-06-24T07:45:28.6261",null,12,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins\u002Ftree\u002FHEAD\u002Fpagerduty\u002Fskills\u002Fpagerduty-api","---\nname: pagerduty-api\ndescription: Query and manage PagerDuty — find out who's on call, list and manage incidents, read escalation policies and schedules, trace who got paged and why, acknowledge\u002Fresolve\u002Fsnooze\u002Fescalate incidents, and create or update services. Use this whenever the user mentions PagerDuty, on-call, paging, escalation, an incident ID like `PXXXXXX` or `Q...`, asks \"who's on call\", \"page the on-call\", \"ack this incident\", \"why wasn't I paged\", or pastes a pagerduty.com URL — even if they don't say \"API\". Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.\n---\n\nPagerDuty exposes two distinct APIs:\n\n- **REST API** at `https:\u002F\u002Fapi.pagerduty.com` — read\u002Fmanage everything (incidents, on-call,\n  schedules, escalation policies, services, users, log entries).\n- **Events API v2** at `https:\u002F\u002Fevents.pagerduty.com` — trigger\u002Facknowledge\u002Fresolve alerts\n  programmatically. Different host, different auth (routing key in the body, no `Authorization`\n  header).\n\nData model: an alert fires on a **service** → routes through an **escalation policy** → targets\n**schedules** and **users** → opens an **incident**; **log entries** record exactly who was\nnotified, when, and on which channel.\n\n## Request setup\n\nAuthentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent `401`\u002F`403` means the credential isn't configured for this workspace\n— report that instead of debugging auth.\n\n**REST API** (`api.pagerduty.com`) — header on every request is `Authorization: Token token=\u003Ct>`\n(neither Bearer nor Basic):\n\n```bash\nexport PAGERDUTY_TOKEN=\"placeholder\"   # injected by the runtime; any value works\n```\n\n**Events API v2** (`events.pagerduty.com`) — addressed by an integration **routing key** (32 hex\nchars) in the request **body**. No `Authorization` header.\n\n```bash\nexport PD_ROUTING_KEY=\"placeholder\"   # injected by the runtime; any value works\n```\n\n**Sanity check** — confirm the workspace is wired up:\n\n```bash\ncurl -sS -w '\\nHTTP %{http_code}\\n' \"https:\u002F\u002Fapi.pagerduty.com\u002Fusers\u002Fme\" \\\n  -H \"Authorization: Token token=${PAGERDUTY_TOKEN}\" \\\n  -H \"Content-Type: application\u002Fjson\"\n```\n\n`200` → wired up; pipe through `jq '.user | {id, name, email}'`. `401`\u002F`403` → credential not\nconfigured (the body is often **empty**, which is why the status code is printed). `\u002Fusers\u002Fme` works\nonly on user tokens; account-level tokens can verify with `\u002Fabilities`.\n\nHelper used below (optional):\n\n```bash\npagerduty() { curl -sS -g \"$@\" -H \"Authorization: Token token=${PAGERDUTY_TOKEN}\" \\\n  -H \"Accept: application\u002Fvnd.pagerduty+json;version=2\" -H \"Content-Type: application\u002Fjson\"; }\n```\n\nThe `-g` matters: PagerDuty's array params use brackets (`statuses[]=triggered`), which older curl\nglob-expands and fails on — see Pagination.\n\n**Response codes & bodies** — applies to every recipe below:\n\n- REST mutations: `200` update, `201` create. **`401` returns an empty body** — when a write looks\n  like it silently did nothing, check the HTTP status (`-w '%{http_code}'`).\n- Events v2 enqueue: `202` accepted; a bad routing key is `400` with a **plain-text** body\n  `Invalid routing key` (not JSON — don't pipe to `jq`).\n- Any reference to another object in a request body needs the form\n  `{\"id\": \"\u003Cid>\", \"type\": \"\u003Cx>_reference\"}` — omitting `type` is a `400`.\n\n## Core operations\n\n### 1. Who's on call (`scripts\u002Fpd_oncall.sh`)\n\nAnswer \"who is on call\" through the bundled script (path is relative to this skill's directory):\nit resolves service and user names to ids, queries `\u002Foncalls` with the bracketed array filters,\npages on `offset`\u002F`limit` while `more` is true, and emits TSV or JSONL.\n\n```bash\nscripts\u002Fpd_oncall.sh --service checkout --earliest\nscripts\u002Fpd_oncall.sh --user alice@example.com --at 2026-06-01T09:00:00Z --json\n```\n\n- `--service NAME|ID` scopes to one service. A value matching `^P[A-Z0-9]{5,7}$` is used as the\n  id; anything else is looked up via `\u002Fservices?query=`. The service's escalation policy is then\n  passed as `escalation_policy_ids[]` — `\u002Foncalls` has no service filter of its own.\n- `--policy ID` \u002F `--schedule ID` filter directly (repeatable). `--user QUERY` resolves a name or\n  email via `\u002Fusers?query=` to `user_ids[]` (repeatable). Name lookups (here and `--service`) must\n  match exactly one result — pass the id for reliability.\n- `--at TIME` asks who is on call at an ISO-8601 instant (sets both `since` and `until`);\n  `--earliest` returns only the next-up entry per policy.\n- `--limit N` caps total entries (default 100, `0` = everything); `--page-size N` sets the per-page\n  size (max 100). `--json` emits one JSON object per entry instead of TSV with header\n  `level, user, policy, schedule, until`. Resolved ids and counts go to stderr. Instance specifics\n  come from `PAGERDUTY_TOKEN` above.\n- Exit codes: `0` success, `1` request failed, API error, or bad arguments — the API's own\n  `error.code`\u002F`error.message` is on stderr (a `401` body is empty, so the HTTP status is printed\n  instead).\n\nIf the script errors, read it — it's plain `curl` + `jq` — and debug against `references\u002Fapi.md`.\n\n### 2. List open incidents\n\n```bash\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\" -G \\\n  --data-urlencode \"statuses[]=triggered\" \\\n  --data-urlencode \"statuses[]=acknowledged\" \\\n  --data-urlencode \"sort_by=created_at:desc\" \\\n  --data-urlencode \"limit=25\" | \\\n  jq '.incidents[]? | {id, incident_number, title, status, urgency, service: .service.summary, created_at}'\n```\n\nTime-scope with `since=`\u002F`until=` (ISO-8601); filter with `service_ids[]=`, `team_ids[]=`,\n`urgencies[]=high`.\n\n### 3. Get one incident\n\n```bash\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\" | \\\n  jq '.incident | {id, title, status, urgency, assignments, escalation_policy: .escalation_policy.summary}'\n```\n\n`\u003Cincident_id>` is the alphanumeric ID (`P...`\u002F`Q...`), **not** `incident_number`. To look up by\nnumber, list with `date_range=all` and filter client-side.\n\n### 4. Who actually got paged? (log entries)\n\n```bash\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\u002Flog_entries\" -G \\\n  --data-urlencode \"is_overview=false\" | \\\n  jq '.log_entries[]? | {type, at: .created_at, summary, channel: .channel.type}'\n```\n\n`type` values of interest: `trigger_log_entry`, `notify_log_entry` (who was paged, which channel),\n`acknowledge_log_entry`, `escalate_log_entry`, `assign_log_entry`, `resolve_log_entry`. Pair with\n`\u002Fusers\u002F\u003Cid>\u002Fnotification_rules` to understand why a channel was (or wasn't) used.\n\n### 5. Acknowledge \u002F resolve \u002F escalate \u002F snooze \u002F note\n\nAll incident mutations require a `From:` header containing the email of a real PagerDuty user in the\naccount — it attributes the action in the audit log. Missing or unknown email → `400`.\n\n```bash\npagerduty -X PUT \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\" \\\n  -H \"From: me@example.com\" \\\n  -d '{\"incident\": {\"type\": \"incident_reference\", \"status\": \"acknowledged\"}}'\n```\n\n- **Acknowledge** — `PUT \u002Fincidents\u002F\u003Cid>`: `{\"incident\":{\"type\":\"incident_reference\",\"status\":\"acknowledged\"}}`\n- **Resolve** — `PUT \u002Fincidents\u002F\u003Cid>`: `{\"incident\":{\"type\":\"incident_reference\",\"status\":\"resolved\"}}`\n- **Escalate to level N** — `PUT \u002Fincidents\u002F\u003Cid>`: `{\"incident\":{\"type\":\"incident_reference\",\"escalation_level\":N}}`\n- **Snooze** — `POST \u002Fincidents\u002F\u003Cid>\u002Fsnooze`: `{\"duration\": \u003Cseconds>}`\n- **Add note** — `POST \u002Fincidents\u002F\u003Cid>\u002Fnotes`: `{\"note\":{\"content\":\"...\"}}`\n\n### 6. Trace routing: service → escalation policy → schedule\n\n```bash\n# service → which policy\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fservices\u002F\u003Cservice_id>?include[]=escalation_policies\" | \\\n  jq '.service | {name, escalation_policy}'\n\n# policy → ordered rules and targets\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fescalation_policies\u002F\u003Cpolicy_id>\" | \\\n  jq '.escalation_policy.escalation_rules[]? | {delay_min: .escalation_delay_in_minutes, targets: [.targets[]? | {type, summary}]}'\n\n# schedule → rendered rotation for the next week (after overrides\u002Flayers)\n# GNU date; on BSD\u002FmacOS use: date -u -v+7d +%Y-%m-%dT%H:%M:%SZ\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fschedules\u002F\u003Cschedule_id>\" -G \\\n  --data-urlencode \"since=$(date -u +%Y-%m-%dT%H:%M:%SZ)\" \\\n  --data-urlencode \"until=$(date -u -d '+7 days' +%Y-%m-%dT%H:%M:%SZ)\" | \\\n  jq '.schedule.final_schedule.rendered_schedule_entries[]? | {start, end, user: .user.summary}'\n```\n\nMost list endpoints take `query=` for substring name match, e.g.\n`GET \u002Fschedules?query=platform` → `jq '.schedules[]? | {id, name}'`.\n\n### 7. Create an incident\n\n```bash\npagerduty -X POST \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\" \\\n  -H \"From: me@example.com\" \\\n  -d '{\n    \"incident\": {\n      \"type\": \"incident\",\n      \"title\": \"Payment gateway returning 500s\",\n      \"urgency\": \"high\",\n      \"service\": {\"id\": \"\u003Cservice_id>\", \"type\": \"service_reference\"},\n      \"body\": {\"type\": \"incident_body\", \"details\": \"Seeing 40% error rate since 14:00 UTC.\"}\n    }\n  }'\n```\n\nSuccess is `201` — read `.incident.id` for follow-up calls (it's `null` on an error envelope;\ncheck the status before reusing it).\n\n### 8. Trigger an alert via Events API v2\n\n```bash\ncurl -sS -X POST \"https:\u002F\u002Fevents.pagerduty.com\u002Fv2\u002Fenqueue\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"routing_key\": \"'\"${PD_ROUTING_KEY}\"'\",\n    \"event_action\": \"trigger\",\n    \"dedup_key\": \"db-latency-prod-us-east\",\n    \"payload\": {\n      \"summary\": \"DB p99 latency > 500ms in prod us-east\",\n      \"source\": \"prometheus:db_latency_p99\",\n      \"severity\": \"critical\",\n      \"custom_details\": {\"value_ms\": 612}\n    }\n  }'\n```\n\n`event_action` ∈ `trigger` \u002F `acknowledge` \u002F `resolve` — send a later event with the same\n`dedup_key` to close the loop. `202` returns `{\"status\":\"success\",\"dedup_key\":\"...\"}`; keep the\n`dedup_key` if PagerDuty generated it. Malformed payloads return `400` JSON with `errors[]`.\n\n## Pagination\n\nClassic offset\u002Flimit: `limit` (default 25, max 100) and `offset` (default 0); page while the\nresponse has `more: true`, incrementing `offset` by `limit`. **`offset + limit` is capped at\n10,000** — narrow the time window or filters past that. Exceptions: `\u002Faudit\u002Frecords` returns\n`next_cursor` (pass back as `cursor=`); `\u002Fanalytics\u002Fraw\u002F...` takes `starting_after` in the POST body\n(set to the previous response's `last`).\n\n**curl globbing trap.** Array params use bracket syntax — `statuses[]=`, `service_ids[]=`,\n`team_ids[]=`, `include[]=`. Older curl treats `[` `]` as glob characters and errors with\n`curl: (3) bad range`; modern curl sends them literally. Always pass `-g`\u002F`--globoff` (the helper\ndoes) or percent-encode the brackets via `-G --data-urlencode 'statuses[]=...'` to be safe.\n\n## Rate limits\n\nREST API: **960 requests\u002Fminute per token** (a user's keys share one budget). Responses carry\n`ratelimit-limit`, `ratelimit-remaining`, `ratelimit-reset` (**seconds** until reset). On `429`\n(`{\"error\":{\"message\":\"Rate Limit Exceeded\",\"code\":2020}}`) sleep `ratelimit-reset` seconds and\nretry. Some endpoints add tighter per-operation limits; the headers reflect whichever is closest.\n`\u002Foncalls` and `\u002Fschedules\u002F{id}` are relatively expensive — cache results if reused.\n\nEvents API v2 has a **separate budget**, ~120 events\u002Fminute per routing key. On `429`, back off and\nretry ~30s apart.\n\n## Error handling\n\nError bodies: `{\"error\": {\"message\": \"...\", \"code\": N, \"errors\": [\"field X is ...\"]}}`.\n\n- **`400`** — Bad request. Read `error.errors[]` — names the bad field. Common: missing `From:` on a mutation, missing `type` on a reference object, bad ISO-8601 timestamp.\n- **`401`** — Credential rejected. **Body is empty** — print the status. Header must be `Authorization: Token token=...`. If it persists, the credential isn't configured — report it.\n- **`403`** — Forbidden. Read-only credential mutating, or scoped to a team that doesn't own the resource.\n- **`404`** — Not found. IDs are short alphanumerics (`P...`\u002F`Q...`), not names or `incident_number`.\n- **`429`** — Rate limited. Sleep `ratelimit-reset` seconds, retry.\n\n## Going deeper\n\n`references\u002Fapi.md` has the full endpoint catalog — incidents (alerts, merges, responder requests,\npriorities), services and integrations, escalation policies, schedules and overrides, users and\nnotification\u002Fcontact methods, teams, maintenance windows, business services, event orchestration,\nanalytics, and the full Events API v2 payload shape. Read it when you need an endpoint beyond the\nones above.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,99,146,153,174,199,255,292,331,341,460,515,520,649,670,680,793,799,814,850,911,1133,1159,1165,1327,1370,1376,1431,1480,1486,1569,1631,1637,1656,1741,1853,1859,2162,2190,2196,2342,2370,2376,2559,2636,2642,2742,2824,2830,2907,2926,2932,2944,3076,3082,3092],{"type":42,"tag":43,"props":44,"children":45},"element","p",{},[46],{"type":47,"value":48},"text","PagerDuty exposes two distinct APIs:",{"type":42,"tag":50,"props":51,"children":52},"ul",{},[53,74],{"type":42,"tag":54,"props":55,"children":56},"li",{},[57,63,65,72],{"type":42,"tag":58,"props":59,"children":60},"strong",{},[61],{"type":47,"value":62},"REST API",{"type":47,"value":64}," at ",{"type":42,"tag":66,"props":67,"children":69},"code",{"className":68},[],[70],{"type":47,"value":71},"https:\u002F\u002Fapi.pagerduty.com",{"type":47,"value":73}," — read\u002Fmanage everything (incidents, on-call,\nschedules, escalation policies, services, users, log entries).",{"type":42,"tag":54,"props":75,"children":76},{},[77,82,83,89,91,97],{"type":42,"tag":58,"props":78,"children":79},{},[80],{"type":47,"value":81},"Events API v2",{"type":47,"value":64},{"type":42,"tag":66,"props":84,"children":86},{"className":85},[],[87],{"type":47,"value":88},"https:\u002F\u002Fevents.pagerduty.com",{"type":47,"value":90}," — trigger\u002Facknowledge\u002Fresolve alerts\nprogrammatically. Different host, different auth (routing key in the body, no ",{"type":42,"tag":66,"props":92,"children":94},{"className":93},[],[95],{"type":47,"value":96},"Authorization",{"type":47,"value":98},"\nheader).",{"type":42,"tag":43,"props":100,"children":101},{},[102,104,109,111,116,118,123,125,130,132,137,139,144],{"type":47,"value":103},"Data model: an alert fires on a ",{"type":42,"tag":58,"props":105,"children":106},{},[107],{"type":47,"value":108},"service",{"type":47,"value":110}," → routes through an ",{"type":42,"tag":58,"props":112,"children":113},{},[114],{"type":47,"value":115},"escalation policy",{"type":47,"value":117}," → targets\n",{"type":42,"tag":58,"props":119,"children":120},{},[121],{"type":47,"value":122},"schedules",{"type":47,"value":124}," and ",{"type":42,"tag":58,"props":126,"children":127},{},[128],{"type":47,"value":129},"users",{"type":47,"value":131}," → opens an ",{"type":42,"tag":58,"props":133,"children":134},{},[135],{"type":47,"value":136},"incident",{"type":47,"value":138},"; ",{"type":42,"tag":58,"props":140,"children":141},{},[142],{"type":47,"value":143},"log entries",{"type":47,"value":145}," record exactly who was\nnotified, when, and on which channel.",{"type":42,"tag":147,"props":148,"children":150},"h2",{"id":149},"request-setup",[151],{"type":47,"value":152},"Request setup",{"type":42,"tag":43,"props":154,"children":155},{},[156,158,164,166,172],{"type":47,"value":157},"Authentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent ",{"type":42,"tag":66,"props":159,"children":161},{"className":160},[],[162],{"type":47,"value":163},"401",{"type":47,"value":165},"\u002F",{"type":42,"tag":66,"props":167,"children":169},{"className":168},[],[170],{"type":47,"value":171},"403",{"type":47,"value":173}," means the credential isn't configured for this workspace\n— report that instead of debugging auth.",{"type":42,"tag":43,"props":175,"children":176},{},[177,181,183,189,191,197],{"type":42,"tag":58,"props":178,"children":179},{},[180],{"type":47,"value":62},{"type":47,"value":182}," (",{"type":42,"tag":66,"props":184,"children":186},{"className":185},[],[187],{"type":47,"value":188},"api.pagerduty.com",{"type":47,"value":190},") — header on every request is ",{"type":42,"tag":66,"props":192,"children":194},{"className":193},[],[195],{"type":47,"value":196},"Authorization: Token token=\u003Ct>",{"type":47,"value":198},"\n(neither Bearer nor Basic):",{"type":42,"tag":200,"props":201,"children":206},"pre",{"className":202,"code":203,"language":204,"meta":205,"style":205},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export PAGERDUTY_TOKEN=\"placeholder\"   # injected by the runtime; any value works\n","bash","",[207],{"type":42,"tag":66,"props":208,"children":209},{"__ignoreMap":205},[210],{"type":42,"tag":211,"props":212,"children":215},"span",{"class":213,"line":214},"line",1,[216,222,228,234,239,245,249],{"type":42,"tag":211,"props":217,"children":219},{"style":218},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[220],{"type":47,"value":221},"export",{"type":42,"tag":211,"props":223,"children":225},{"style":224},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[226],{"type":47,"value":227}," PAGERDUTY_TOKEN",{"type":42,"tag":211,"props":229,"children":231},{"style":230},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[232],{"type":47,"value":233},"=",{"type":42,"tag":211,"props":235,"children":236},{"style":230},[237],{"type":47,"value":238},"\"",{"type":42,"tag":211,"props":240,"children":242},{"style":241},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[243],{"type":47,"value":244},"placeholder",{"type":42,"tag":211,"props":246,"children":247},{"style":230},[248],{"type":47,"value":238},{"type":42,"tag":211,"props":250,"children":252},{"style":251},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[253],{"type":47,"value":254},"   # injected by the runtime; any value works\n",{"type":42,"tag":43,"props":256,"children":257},{},[258,262,263,269,271,276,278,283,285,290],{"type":42,"tag":58,"props":259,"children":260},{},[261],{"type":47,"value":81},{"type":47,"value":182},{"type":42,"tag":66,"props":264,"children":266},{"className":265},[],[267],{"type":47,"value":268},"events.pagerduty.com",{"type":47,"value":270},") — addressed by an integration ",{"type":42,"tag":58,"props":272,"children":273},{},[274],{"type":47,"value":275},"routing key",{"type":47,"value":277}," (32 hex\nchars) in the request ",{"type":42,"tag":58,"props":279,"children":280},{},[281],{"type":47,"value":282},"body",{"type":47,"value":284},". No ",{"type":42,"tag":66,"props":286,"children":288},{"className":287},[],[289],{"type":47,"value":96},{"type":47,"value":291}," header.",{"type":42,"tag":200,"props":293,"children":295},{"className":202,"code":294,"language":204,"meta":205,"style":205},"export PD_ROUTING_KEY=\"placeholder\"   # injected by the runtime; any value works\n",[296],{"type":42,"tag":66,"props":297,"children":298},{"__ignoreMap":205},[299],{"type":42,"tag":211,"props":300,"children":301},{"class":213,"line":214},[302,306,311,315,319,323,327],{"type":42,"tag":211,"props":303,"children":304},{"style":218},[305],{"type":47,"value":221},{"type":42,"tag":211,"props":307,"children":308},{"style":224},[309],{"type":47,"value":310}," PD_ROUTING_KEY",{"type":42,"tag":211,"props":312,"children":313},{"style":230},[314],{"type":47,"value":233},{"type":42,"tag":211,"props":316,"children":317},{"style":230},[318],{"type":47,"value":238},{"type":42,"tag":211,"props":320,"children":321},{"style":241},[322],{"type":47,"value":244},{"type":42,"tag":211,"props":324,"children":325},{"style":230},[326],{"type":47,"value":238},{"type":42,"tag":211,"props":328,"children":329},{"style":251},[330],{"type":47,"value":254},{"type":42,"tag":43,"props":332,"children":333},{},[334,339],{"type":42,"tag":58,"props":335,"children":336},{},[337],{"type":47,"value":338},"Sanity check",{"type":47,"value":340}," — confirm the workspace is wired up:",{"type":42,"tag":200,"props":342,"children":344},{"className":202,"code":343,"language":204,"meta":205,"style":205},"curl -sS -w '\\nHTTP %{http_code}\\n' \"https:\u002F\u002Fapi.pagerduty.com\u002Fusers\u002Fme\" \\\n  -H \"Authorization: Token token=${PAGERDUTY_TOKEN}\" \\\n  -H \"Content-Type: application\u002Fjson\"\n",[345],{"type":42,"tag":66,"props":346,"children":347},{"__ignoreMap":205},[348,401,438],{"type":42,"tag":211,"props":349,"children":350},{"class":213,"line":214},[351,357,362,367,372,377,382,387,392,396],{"type":42,"tag":211,"props":352,"children":354},{"style":353},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[355],{"type":47,"value":356},"curl",{"type":42,"tag":211,"props":358,"children":359},{"style":241},[360],{"type":47,"value":361}," -sS",{"type":42,"tag":211,"props":363,"children":364},{"style":241},[365],{"type":47,"value":366}," -w",{"type":42,"tag":211,"props":368,"children":369},{"style":230},[370],{"type":47,"value":371}," '",{"type":42,"tag":211,"props":373,"children":374},{"style":241},[375],{"type":47,"value":376},"\\nHTTP %{http_code}\\n",{"type":42,"tag":211,"props":378,"children":379},{"style":230},[380],{"type":47,"value":381},"'",{"type":42,"tag":211,"props":383,"children":384},{"style":230},[385],{"type":47,"value":386}," \"",{"type":42,"tag":211,"props":388,"children":389},{"style":241},[390],{"type":47,"value":391},"https:\u002F\u002Fapi.pagerduty.com\u002Fusers\u002Fme",{"type":42,"tag":211,"props":393,"children":394},{"style":230},[395],{"type":47,"value":238},{"type":42,"tag":211,"props":397,"children":398},{"style":224},[399],{"type":47,"value":400}," \\\n",{"type":42,"tag":211,"props":402,"children":404},{"class":213,"line":403},2,[405,410,414,419,424,429,434],{"type":42,"tag":211,"props":406,"children":407},{"style":241},[408],{"type":47,"value":409},"  -H",{"type":42,"tag":211,"props":411,"children":412},{"style":230},[413],{"type":47,"value":386},{"type":42,"tag":211,"props":415,"children":416},{"style":241},[417],{"type":47,"value":418},"Authorization: Token token=",{"type":42,"tag":211,"props":420,"children":421},{"style":230},[422],{"type":47,"value":423},"${",{"type":42,"tag":211,"props":425,"children":426},{"style":224},[427],{"type":47,"value":428},"PAGERDUTY_TOKEN",{"type":42,"tag":211,"props":430,"children":431},{"style":230},[432],{"type":47,"value":433},"}\"",{"type":42,"tag":211,"props":435,"children":436},{"style":224},[437],{"type":47,"value":400},{"type":42,"tag":211,"props":439,"children":441},{"class":213,"line":440},3,[442,446,450,455],{"type":42,"tag":211,"props":443,"children":444},{"style":241},[445],{"type":47,"value":409},{"type":42,"tag":211,"props":447,"children":448},{"style":230},[449],{"type":47,"value":386},{"type":42,"tag":211,"props":451,"children":452},{"style":241},[453],{"type":47,"value":454},"Content-Type: application\u002Fjson",{"type":42,"tag":211,"props":456,"children":457},{"style":230},[458],{"type":47,"value":459},"\"\n",{"type":42,"tag":43,"props":461,"children":462},{},[463,469,471,477,479,484,485,490,492,497,499,505,507,513],{"type":42,"tag":66,"props":464,"children":466},{"className":465},[],[467],{"type":47,"value":468},"200",{"type":47,"value":470}," → wired up; pipe through ",{"type":42,"tag":66,"props":472,"children":474},{"className":473},[],[475],{"type":47,"value":476},"jq '.user | {id, name, email}'",{"type":47,"value":478},". ",{"type":42,"tag":66,"props":480,"children":482},{"className":481},[],[483],{"type":47,"value":163},{"type":47,"value":165},{"type":42,"tag":66,"props":486,"children":488},{"className":487},[],[489],{"type":47,"value":171},{"type":47,"value":491}," → credential not\nconfigured (the body is often ",{"type":42,"tag":58,"props":493,"children":494},{},[495],{"type":47,"value":496},"empty",{"type":47,"value":498},", which is why the status code is printed). ",{"type":42,"tag":66,"props":500,"children":502},{"className":501},[],[503],{"type":47,"value":504},"\u002Fusers\u002Fme",{"type":47,"value":506}," works\nonly on user tokens; account-level tokens can verify with ",{"type":42,"tag":66,"props":508,"children":510},{"className":509},[],[511],{"type":47,"value":512},"\u002Fabilities",{"type":47,"value":514},".",{"type":42,"tag":43,"props":516,"children":517},{},[518],{"type":47,"value":519},"Helper used below (optional):",{"type":42,"tag":200,"props":521,"children":523},{"className":202,"code":522,"language":204,"meta":205,"style":205},"pagerduty() { curl -sS -g \"$@\" -H \"Authorization: Token token=${PAGERDUTY_TOKEN}\" \\\n  -H \"Accept: application\u002Fvnd.pagerduty+json;version=2\" -H \"Content-Type: application\u002Fjson\"; }\n",[524],{"type":42,"tag":66,"props":525,"children":526},{"__ignoreMap":205},[527,603],{"type":42,"tag":211,"props":528,"children":529},{"class":213,"line":214},[530,536,541,546,551,555,560,564,570,574,579,583,587,591,595,599],{"type":42,"tag":211,"props":531,"children":533},{"style":532},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[534],{"type":47,"value":535},"pagerduty",{"type":42,"tag":211,"props":537,"children":538},{"style":230},[539],{"type":47,"value":540},"()",{"type":42,"tag":211,"props":542,"children":543},{"style":230},[544],{"type":47,"value":545}," {",{"type":42,"tag":211,"props":547,"children":548},{"style":353},[549],{"type":47,"value":550}," curl",{"type":42,"tag":211,"props":552,"children":553},{"style":241},[554],{"type":47,"value":361},{"type":42,"tag":211,"props":556,"children":557},{"style":241},[558],{"type":47,"value":559}," -g",{"type":42,"tag":211,"props":561,"children":562},{"style":230},[563],{"type":47,"value":386},{"type":42,"tag":211,"props":565,"children":567},{"style":566},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[568],{"type":47,"value":569},"$@",{"type":42,"tag":211,"props":571,"children":572},{"style":230},[573],{"type":47,"value":238},{"type":42,"tag":211,"props":575,"children":576},{"style":241},[577],{"type":47,"value":578}," -H",{"type":42,"tag":211,"props":580,"children":581},{"style":230},[582],{"type":47,"value":386},{"type":42,"tag":211,"props":584,"children":585},{"style":241},[586],{"type":47,"value":418},{"type":42,"tag":211,"props":588,"children":589},{"style":230},[590],{"type":47,"value":423},{"type":42,"tag":211,"props":592,"children":593},{"style":224},[594],{"type":47,"value":428},{"type":42,"tag":211,"props":596,"children":597},{"style":230},[598],{"type":47,"value":433},{"type":42,"tag":211,"props":600,"children":601},{"style":224},[602],{"type":47,"value":400},{"type":42,"tag":211,"props":604,"children":605},{"class":213,"line":403},[606,610,614,619,623,627,631,635,639,644],{"type":42,"tag":211,"props":607,"children":608},{"style":241},[609],{"type":47,"value":409},{"type":42,"tag":211,"props":611,"children":612},{"style":230},[613],{"type":47,"value":386},{"type":42,"tag":211,"props":615,"children":616},{"style":241},[617],{"type":47,"value":618},"Accept: application\u002Fvnd.pagerduty+json;version=2",{"type":42,"tag":211,"props":620,"children":621},{"style":230},[622],{"type":47,"value":238},{"type":42,"tag":211,"props":624,"children":625},{"style":241},[626],{"type":47,"value":578},{"type":42,"tag":211,"props":628,"children":629},{"style":230},[630],{"type":47,"value":386},{"type":42,"tag":211,"props":632,"children":633},{"style":241},[634],{"type":47,"value":454},{"type":42,"tag":211,"props":636,"children":637},{"style":230},[638],{"type":47,"value":238},{"type":42,"tag":211,"props":640,"children":641},{"style":230},[642],{"type":47,"value":643},";",{"type":42,"tag":211,"props":645,"children":646},{"style":230},[647],{"type":47,"value":648}," }\n",{"type":42,"tag":43,"props":650,"children":651},{},[652,654,660,662,668],{"type":47,"value":653},"The ",{"type":42,"tag":66,"props":655,"children":657},{"className":656},[],[658],{"type":47,"value":659},"-g",{"type":47,"value":661}," matters: PagerDuty's array params use brackets (",{"type":42,"tag":66,"props":663,"children":665},{"className":664},[],[666],{"type":47,"value":667},"statuses[]=triggered",{"type":47,"value":669},"), which older curl\nglob-expands and fails on — see Pagination.",{"type":42,"tag":43,"props":671,"children":672},{},[673,678],{"type":42,"tag":58,"props":674,"children":675},{},[676],{"type":47,"value":677},"Response codes & bodies",{"type":47,"value":679}," — applies to every recipe below:",{"type":42,"tag":50,"props":681,"children":682},{},[683,723,766],{"type":42,"tag":54,"props":684,"children":685},{},[686,688,693,695,701,703,713,715,721],{"type":47,"value":687},"REST mutations: ",{"type":42,"tag":66,"props":689,"children":691},{"className":690},[],[692],{"type":47,"value":468},{"type":47,"value":694}," update, ",{"type":42,"tag":66,"props":696,"children":698},{"className":697},[],[699],{"type":47,"value":700},"201",{"type":47,"value":702}," create. ",{"type":42,"tag":58,"props":704,"children":705},{},[706,711],{"type":42,"tag":66,"props":707,"children":709},{"className":708},[],[710],{"type":47,"value":163},{"type":47,"value":712}," returns an empty body",{"type":47,"value":714}," — when a write looks\nlike it silently did nothing, check the HTTP status (",{"type":42,"tag":66,"props":716,"children":718},{"className":717},[],[719],{"type":47,"value":720},"-w '%{http_code}'",{"type":47,"value":722},").",{"type":42,"tag":54,"props":724,"children":725},{},[726,728,734,736,742,744,749,751,757,759,765],{"type":47,"value":727},"Events v2 enqueue: ",{"type":42,"tag":66,"props":729,"children":731},{"className":730},[],[732],{"type":47,"value":733},"202",{"type":47,"value":735}," accepted; a bad routing key is ",{"type":42,"tag":66,"props":737,"children":739},{"className":738},[],[740],{"type":47,"value":741},"400",{"type":47,"value":743}," with a ",{"type":42,"tag":58,"props":745,"children":746},{},[747],{"type":47,"value":748},"plain-text",{"type":47,"value":750}," body\n",{"type":42,"tag":66,"props":752,"children":754},{"className":753},[],[755],{"type":47,"value":756},"Invalid routing key",{"type":47,"value":758}," (not JSON — don't pipe to ",{"type":42,"tag":66,"props":760,"children":762},{"className":761},[],[763],{"type":47,"value":764},"jq",{"type":47,"value":722},{"type":42,"tag":54,"props":767,"children":768},{},[769,771,777,779,785,787,792],{"type":47,"value":770},"Any reference to another object in a request body needs the form\n",{"type":42,"tag":66,"props":772,"children":774},{"className":773},[],[775],{"type":47,"value":776},"{\"id\": \"\u003Cid>\", \"type\": \"\u003Cx>_reference\"}",{"type":47,"value":778}," — omitting ",{"type":42,"tag":66,"props":780,"children":782},{"className":781},[],[783],{"type":47,"value":784},"type",{"type":47,"value":786}," is a ",{"type":42,"tag":66,"props":788,"children":790},{"className":789},[],[791],{"type":47,"value":741},{"type":47,"value":514},{"type":42,"tag":147,"props":794,"children":796},{"id":795},"core-operations",[797],{"type":47,"value":798},"Core operations",{"type":42,"tag":800,"props":801,"children":803},"h3",{"id":802},"_1-whos-on-call-scriptspd_oncallsh",[804,806,812],{"type":47,"value":805},"1. Who's on call (",{"type":42,"tag":66,"props":807,"children":809},{"className":808},[],[810],{"type":47,"value":811},"scripts\u002Fpd_oncall.sh",{"type":47,"value":813},")",{"type":42,"tag":43,"props":815,"children":816},{},[817,819,825,827,833,834,840,842,848],{"type":47,"value":818},"Answer \"who is on call\" through the bundled script (path is relative to this skill's directory):\nit resolves service and user names to ids, queries ",{"type":42,"tag":66,"props":820,"children":822},{"className":821},[],[823],{"type":47,"value":824},"\u002Foncalls",{"type":47,"value":826}," with the bracketed array filters,\npages on ",{"type":42,"tag":66,"props":828,"children":830},{"className":829},[],[831],{"type":47,"value":832},"offset",{"type":47,"value":165},{"type":42,"tag":66,"props":835,"children":837},{"className":836},[],[838],{"type":47,"value":839},"limit",{"type":47,"value":841}," while ",{"type":42,"tag":66,"props":843,"children":845},{"className":844},[],[846],{"type":47,"value":847},"more",{"type":47,"value":849}," is true, and emits TSV or JSONL.",{"type":42,"tag":200,"props":851,"children":853},{"className":202,"code":852,"language":204,"meta":205,"style":205},"scripts\u002Fpd_oncall.sh --service checkout --earliest\nscripts\u002Fpd_oncall.sh --user alice@example.com --at 2026-06-01T09:00:00Z --json\n",[854],{"type":42,"tag":66,"props":855,"children":856},{"__ignoreMap":205},[857,879],{"type":42,"tag":211,"props":858,"children":859},{"class":213,"line":214},[860,864,869,874],{"type":42,"tag":211,"props":861,"children":862},{"style":353},[863],{"type":47,"value":811},{"type":42,"tag":211,"props":865,"children":866},{"style":241},[867],{"type":47,"value":868}," --service",{"type":42,"tag":211,"props":870,"children":871},{"style":241},[872],{"type":47,"value":873}," checkout",{"type":42,"tag":211,"props":875,"children":876},{"style":241},[877],{"type":47,"value":878}," --earliest\n",{"type":42,"tag":211,"props":880,"children":881},{"class":213,"line":403},[882,886,891,896,901,906],{"type":42,"tag":211,"props":883,"children":884},{"style":353},[885],{"type":47,"value":811},{"type":42,"tag":211,"props":887,"children":888},{"style":241},[889],{"type":47,"value":890}," --user",{"type":42,"tag":211,"props":892,"children":893},{"style":241},[894],{"type":47,"value":895}," alice@example.com",{"type":42,"tag":211,"props":897,"children":898},{"style":241},[899],{"type":47,"value":900}," --at",{"type":42,"tag":211,"props":902,"children":903},{"style":241},[904],{"type":47,"value":905}," 2026-06-01T09:00:00Z",{"type":42,"tag":211,"props":907,"children":908},{"style":241},[909],{"type":47,"value":910}," --json\n",{"type":42,"tag":50,"props":912,"children":913},{},[914,956,1007,1041,1091],{"type":42,"tag":54,"props":915,"children":916},{},[917,923,925,931,933,939,941,947,949,954],{"type":42,"tag":66,"props":918,"children":920},{"className":919},[],[921],{"type":47,"value":922},"--service NAME|ID",{"type":47,"value":924}," scopes to one service. A value matching ",{"type":42,"tag":66,"props":926,"children":928},{"className":927},[],[929],{"type":47,"value":930},"^P[A-Z0-9]{5,7}$",{"type":47,"value":932}," is used as the\nid; anything else is looked up via ",{"type":42,"tag":66,"props":934,"children":936},{"className":935},[],[937],{"type":47,"value":938},"\u002Fservices?query=",{"type":47,"value":940},". The service's escalation policy is then\npassed as ",{"type":42,"tag":66,"props":942,"children":944},{"className":943},[],[945],{"type":47,"value":946},"escalation_policy_ids[]",{"type":47,"value":948}," — ",{"type":42,"tag":66,"props":950,"children":952},{"className":951},[],[953],{"type":47,"value":824},{"type":47,"value":955}," has no service filter of its own.",{"type":42,"tag":54,"props":957,"children":958},{},[959,965,967,973,975,981,983,989,991,997,999,1005],{"type":42,"tag":66,"props":960,"children":962},{"className":961},[],[963],{"type":47,"value":964},"--policy ID",{"type":47,"value":966}," \u002F ",{"type":42,"tag":66,"props":968,"children":970},{"className":969},[],[971],{"type":47,"value":972},"--schedule ID",{"type":47,"value":974}," filter directly (repeatable). ",{"type":42,"tag":66,"props":976,"children":978},{"className":977},[],[979],{"type":47,"value":980},"--user QUERY",{"type":47,"value":982}," resolves a name or\nemail via ",{"type":42,"tag":66,"props":984,"children":986},{"className":985},[],[987],{"type":47,"value":988},"\u002Fusers?query=",{"type":47,"value":990}," to ",{"type":42,"tag":66,"props":992,"children":994},{"className":993},[],[995],{"type":47,"value":996},"user_ids[]",{"type":47,"value":998}," (repeatable). Name lookups (here and ",{"type":42,"tag":66,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":47,"value":1004},"--service",{"type":47,"value":1006},") must\nmatch exactly one result — pass the id for reliability.",{"type":42,"tag":54,"props":1008,"children":1009},{},[1010,1016,1018,1024,1025,1031,1033,1039],{"type":42,"tag":66,"props":1011,"children":1013},{"className":1012},[],[1014],{"type":47,"value":1015},"--at TIME",{"type":47,"value":1017}," asks who is on call at an ISO-8601 instant (sets both ",{"type":42,"tag":66,"props":1019,"children":1021},{"className":1020},[],[1022],{"type":47,"value":1023},"since",{"type":47,"value":124},{"type":42,"tag":66,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":47,"value":1030},"until",{"type":47,"value":1032},");\n",{"type":42,"tag":66,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":47,"value":1038},"--earliest",{"type":47,"value":1040}," returns only the next-up entry per policy.",{"type":42,"tag":54,"props":1042,"children":1043},{},[1044,1050,1052,1058,1060,1066,1068,1074,1076,1082,1084,1089],{"type":42,"tag":66,"props":1045,"children":1047},{"className":1046},[],[1048],{"type":47,"value":1049},"--limit N",{"type":47,"value":1051}," caps total entries (default 100, ",{"type":42,"tag":66,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":47,"value":1057},"0",{"type":47,"value":1059}," = everything); ",{"type":42,"tag":66,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":47,"value":1065},"--page-size N",{"type":47,"value":1067}," sets the per-page\nsize (max 100). ",{"type":42,"tag":66,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":47,"value":1073},"--json",{"type":47,"value":1075}," emits one JSON object per entry instead of TSV with header\n",{"type":42,"tag":66,"props":1077,"children":1079},{"className":1078},[],[1080],{"type":47,"value":1081},"level, user, policy, schedule, until",{"type":47,"value":1083},". Resolved ids and counts go to stderr. Instance specifics\ncome from ",{"type":42,"tag":66,"props":1085,"children":1087},{"className":1086},[],[1088],{"type":47,"value":428},{"type":47,"value":1090}," above.",{"type":42,"tag":54,"props":1092,"children":1093},{},[1094,1096,1101,1103,1109,1111,1117,1118,1124,1126,1131],{"type":47,"value":1095},"Exit codes: ",{"type":42,"tag":66,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":47,"value":1057},{"type":47,"value":1102}," success, ",{"type":42,"tag":66,"props":1104,"children":1106},{"className":1105},[],[1107],{"type":47,"value":1108},"1",{"type":47,"value":1110}," request failed, API error, or bad arguments — the API's own\n",{"type":42,"tag":66,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":47,"value":1116},"error.code",{"type":47,"value":165},{"type":42,"tag":66,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":47,"value":1123},"error.message",{"type":47,"value":1125}," is on stderr (a ",{"type":42,"tag":66,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":47,"value":163},{"type":47,"value":1132}," body is empty, so the HTTP status is printed\ninstead).",{"type":42,"tag":43,"props":1134,"children":1135},{},[1136,1138,1143,1145,1150,1152,1158],{"type":47,"value":1137},"If the script errors, read it — it's plain ",{"type":42,"tag":66,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":47,"value":356},{"type":47,"value":1144}," + ",{"type":42,"tag":66,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":47,"value":764},{"type":47,"value":1151}," — and debug against ",{"type":42,"tag":66,"props":1153,"children":1155},{"className":1154},[],[1156],{"type":47,"value":1157},"references\u002Fapi.md",{"type":47,"value":514},{"type":42,"tag":800,"props":1160,"children":1162},{"id":1161},"_2-list-open-incidents",[1163],{"type":47,"value":1164},"2. List open incidents",{"type":42,"tag":200,"props":1166,"children":1168},{"className":202,"code":1167,"language":204,"meta":205,"style":205},"pagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\" -G \\\n  --data-urlencode \"statuses[]=triggered\" \\\n  --data-urlencode \"statuses[]=acknowledged\" \\\n  --data-urlencode \"sort_by=created_at:desc\" \\\n  --data-urlencode \"limit=25\" | \\\n  jq '.incidents[]? | {id, incident_number, title, status, urgency, service: .service.summary, created_at}'\n",[1169],{"type":42,"tag":66,"props":1170,"children":1171},{"__ignoreMap":205},[1172,1201,1225,1249,1274,1304],{"type":42,"tag":211,"props":1173,"children":1174},{"class":213,"line":214},[1175,1179,1183,1188,1192,1197],{"type":42,"tag":211,"props":1176,"children":1177},{"style":353},[1178],{"type":47,"value":535},{"type":42,"tag":211,"props":1180,"children":1181},{"style":230},[1182],{"type":47,"value":386},{"type":42,"tag":211,"props":1184,"children":1185},{"style":241},[1186],{"type":47,"value":1187},"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents",{"type":42,"tag":211,"props":1189,"children":1190},{"style":230},[1191],{"type":47,"value":238},{"type":42,"tag":211,"props":1193,"children":1194},{"style":241},[1195],{"type":47,"value":1196}," -G",{"type":42,"tag":211,"props":1198,"children":1199},{"style":224},[1200],{"type":47,"value":400},{"type":42,"tag":211,"props":1202,"children":1203},{"class":213,"line":403},[1204,1209,1213,1217,1221],{"type":42,"tag":211,"props":1205,"children":1206},{"style":241},[1207],{"type":47,"value":1208},"  --data-urlencode",{"type":42,"tag":211,"props":1210,"children":1211},{"style":230},[1212],{"type":47,"value":386},{"type":42,"tag":211,"props":1214,"children":1215},{"style":241},[1216],{"type":47,"value":667},{"type":42,"tag":211,"props":1218,"children":1219},{"style":230},[1220],{"type":47,"value":238},{"type":42,"tag":211,"props":1222,"children":1223},{"style":224},[1224],{"type":47,"value":400},{"type":42,"tag":211,"props":1226,"children":1227},{"class":213,"line":440},[1228,1232,1236,1241,1245],{"type":42,"tag":211,"props":1229,"children":1230},{"style":241},[1231],{"type":47,"value":1208},{"type":42,"tag":211,"props":1233,"children":1234},{"style":230},[1235],{"type":47,"value":386},{"type":42,"tag":211,"props":1237,"children":1238},{"style":241},[1239],{"type":47,"value":1240},"statuses[]=acknowledged",{"type":42,"tag":211,"props":1242,"children":1243},{"style":230},[1244],{"type":47,"value":238},{"type":42,"tag":211,"props":1246,"children":1247},{"style":224},[1248],{"type":47,"value":400},{"type":42,"tag":211,"props":1250,"children":1252},{"class":213,"line":1251},4,[1253,1257,1261,1266,1270],{"type":42,"tag":211,"props":1254,"children":1255},{"style":241},[1256],{"type":47,"value":1208},{"type":42,"tag":211,"props":1258,"children":1259},{"style":230},[1260],{"type":47,"value":386},{"type":42,"tag":211,"props":1262,"children":1263},{"style":241},[1264],{"type":47,"value":1265},"sort_by=created_at:desc",{"type":42,"tag":211,"props":1267,"children":1268},{"style":230},[1269],{"type":47,"value":238},{"type":42,"tag":211,"props":1271,"children":1272},{"style":224},[1273],{"type":47,"value":400},{"type":42,"tag":211,"props":1275,"children":1277},{"class":213,"line":1276},5,[1278,1282,1286,1291,1295,1300],{"type":42,"tag":211,"props":1279,"children":1280},{"style":241},[1281],{"type":47,"value":1208},{"type":42,"tag":211,"props":1283,"children":1284},{"style":230},[1285],{"type":47,"value":386},{"type":42,"tag":211,"props":1287,"children":1288},{"style":241},[1289],{"type":47,"value":1290},"limit=25",{"type":42,"tag":211,"props":1292,"children":1293},{"style":230},[1294],{"type":47,"value":238},{"type":42,"tag":211,"props":1296,"children":1297},{"style":230},[1298],{"type":47,"value":1299}," |",{"type":42,"tag":211,"props":1301,"children":1302},{"style":224},[1303],{"type":47,"value":400},{"type":42,"tag":211,"props":1305,"children":1307},{"class":213,"line":1306},6,[1308,1313,1317,1322],{"type":42,"tag":211,"props":1309,"children":1310},{"style":353},[1311],{"type":47,"value":1312},"  jq",{"type":42,"tag":211,"props":1314,"children":1315},{"style":230},[1316],{"type":47,"value":371},{"type":42,"tag":211,"props":1318,"children":1319},{"style":241},[1320],{"type":47,"value":1321},".incidents[]? | {id, incident_number, title, status, urgency, service: .service.summary, created_at}",{"type":42,"tag":211,"props":1323,"children":1324},{"style":230},[1325],{"type":47,"value":1326},"'\n",{"type":42,"tag":43,"props":1328,"children":1329},{},[1330,1332,1338,1339,1345,1347,1353,1355,1361,1363,1369],{"type":47,"value":1331},"Time-scope with ",{"type":42,"tag":66,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":47,"value":1337},"since=",{"type":47,"value":165},{"type":42,"tag":66,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":47,"value":1344},"until=",{"type":47,"value":1346}," (ISO-8601); filter with ",{"type":42,"tag":66,"props":1348,"children":1350},{"className":1349},[],[1351],{"type":47,"value":1352},"service_ids[]=",{"type":47,"value":1354},", ",{"type":42,"tag":66,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":47,"value":1360},"team_ids[]=",{"type":47,"value":1362},",\n",{"type":42,"tag":66,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":47,"value":1368},"urgencies[]=high",{"type":47,"value":514},{"type":42,"tag":800,"props":1371,"children":1373},{"id":1372},"_3-get-one-incident",[1374],{"type":47,"value":1375},"3. Get one incident",{"type":42,"tag":200,"props":1377,"children":1379},{"className":202,"code":1378,"language":204,"meta":205,"style":205},"pagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\" | \\\n  jq '.incident | {id, title, status, urgency, assignments, escalation_policy: .escalation_policy.summary}'\n",[1380],{"type":42,"tag":66,"props":1381,"children":1382},{"__ignoreMap":205},[1383,1411],{"type":42,"tag":211,"props":1384,"children":1385},{"class":213,"line":214},[1386,1390,1394,1399,1403,1407],{"type":42,"tag":211,"props":1387,"children":1388},{"style":353},[1389],{"type":47,"value":535},{"type":42,"tag":211,"props":1391,"children":1392},{"style":230},[1393],{"type":47,"value":386},{"type":42,"tag":211,"props":1395,"children":1396},{"style":241},[1397],{"type":47,"value":1398},"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>",{"type":42,"tag":211,"props":1400,"children":1401},{"style":230},[1402],{"type":47,"value":238},{"type":42,"tag":211,"props":1404,"children":1405},{"style":230},[1406],{"type":47,"value":1299},{"type":42,"tag":211,"props":1408,"children":1409},{"style":224},[1410],{"type":47,"value":400},{"type":42,"tag":211,"props":1412,"children":1413},{"class":213,"line":403},[1414,1418,1422,1427],{"type":42,"tag":211,"props":1415,"children":1416},{"style":353},[1417],{"type":47,"value":1312},{"type":42,"tag":211,"props":1419,"children":1420},{"style":230},[1421],{"type":47,"value":371},{"type":42,"tag":211,"props":1423,"children":1424},{"style":241},[1425],{"type":47,"value":1426},".incident | {id, title, status, urgency, assignments, escalation_policy: .escalation_policy.summary}",{"type":42,"tag":211,"props":1428,"children":1429},{"style":230},[1430],{"type":47,"value":1326},{"type":42,"tag":43,"props":1432,"children":1433},{},[1434,1440,1442,1448,1449,1455,1457,1462,1464,1470,1472,1478],{"type":42,"tag":66,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":47,"value":1439},"\u003Cincident_id>",{"type":47,"value":1441}," is the alphanumeric ID (",{"type":42,"tag":66,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":47,"value":1447},"P...",{"type":47,"value":165},{"type":42,"tag":66,"props":1450,"children":1452},{"className":1451},[],[1453],{"type":47,"value":1454},"Q...",{"type":47,"value":1456},"), ",{"type":42,"tag":58,"props":1458,"children":1459},{},[1460],{"type":47,"value":1461},"not",{"type":47,"value":1463}," ",{"type":42,"tag":66,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":47,"value":1469},"incident_number",{"type":47,"value":1471},". To look up by\nnumber, list with ",{"type":42,"tag":66,"props":1473,"children":1475},{"className":1474},[],[1476],{"type":47,"value":1477},"date_range=all",{"type":47,"value":1479}," and filter client-side.",{"type":42,"tag":800,"props":1481,"children":1483},{"id":1482},"_4-who-actually-got-paged-log-entries",[1484],{"type":47,"value":1485},"4. Who actually got paged? (log entries)",{"type":42,"tag":200,"props":1487,"children":1489},{"className":202,"code":1488,"language":204,"meta":205,"style":205},"pagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\u002Flog_entries\" -G \\\n  --data-urlencode \"is_overview=false\" | \\\n  jq '.log_entries[]? | {type, at: .created_at, summary, channel: .channel.type}'\n",[1490],{"type":42,"tag":66,"props":1491,"children":1492},{"__ignoreMap":205},[1493,1521,1549],{"type":42,"tag":211,"props":1494,"children":1495},{"class":213,"line":214},[1496,1500,1504,1509,1513,1517],{"type":42,"tag":211,"props":1497,"children":1498},{"style":353},[1499],{"type":47,"value":535},{"type":42,"tag":211,"props":1501,"children":1502},{"style":230},[1503],{"type":47,"value":386},{"type":42,"tag":211,"props":1505,"children":1506},{"style":241},[1507],{"type":47,"value":1508},"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\u002Flog_entries",{"type":42,"tag":211,"props":1510,"children":1511},{"style":230},[1512],{"type":47,"value":238},{"type":42,"tag":211,"props":1514,"children":1515},{"style":241},[1516],{"type":47,"value":1196},{"type":42,"tag":211,"props":1518,"children":1519},{"style":224},[1520],{"type":47,"value":400},{"type":42,"tag":211,"props":1522,"children":1523},{"class":213,"line":403},[1524,1528,1532,1537,1541,1545],{"type":42,"tag":211,"props":1525,"children":1526},{"style":241},[1527],{"type":47,"value":1208},{"type":42,"tag":211,"props":1529,"children":1530},{"style":230},[1531],{"type":47,"value":386},{"type":42,"tag":211,"props":1533,"children":1534},{"style":241},[1535],{"type":47,"value":1536},"is_overview=false",{"type":42,"tag":211,"props":1538,"children":1539},{"style":230},[1540],{"type":47,"value":238},{"type":42,"tag":211,"props":1542,"children":1543},{"style":230},[1544],{"type":47,"value":1299},{"type":42,"tag":211,"props":1546,"children":1547},{"style":224},[1548],{"type":47,"value":400},{"type":42,"tag":211,"props":1550,"children":1551},{"class":213,"line":440},[1552,1556,1560,1565],{"type":42,"tag":211,"props":1553,"children":1554},{"style":353},[1555],{"type":47,"value":1312},{"type":42,"tag":211,"props":1557,"children":1558},{"style":230},[1559],{"type":47,"value":371},{"type":42,"tag":211,"props":1561,"children":1562},{"style":241},[1563],{"type":47,"value":1564},".log_entries[]? | {type, at: .created_at, summary, channel: .channel.type}",{"type":42,"tag":211,"props":1566,"children":1567},{"style":230},[1568],{"type":47,"value":1326},{"type":42,"tag":43,"props":1570,"children":1571},{},[1572,1577,1579,1585,1586,1592,1594,1600,1601,1607,1608,1614,1615,1621,1623,1629],{"type":42,"tag":66,"props":1573,"children":1575},{"className":1574},[],[1576],{"type":47,"value":784},{"type":47,"value":1578}," values of interest: ",{"type":42,"tag":66,"props":1580,"children":1582},{"className":1581},[],[1583],{"type":47,"value":1584},"trigger_log_entry",{"type":47,"value":1354},{"type":42,"tag":66,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":47,"value":1591},"notify_log_entry",{"type":47,"value":1593}," (who was paged, which channel),\n",{"type":42,"tag":66,"props":1595,"children":1597},{"className":1596},[],[1598],{"type":47,"value":1599},"acknowledge_log_entry",{"type":47,"value":1354},{"type":42,"tag":66,"props":1602,"children":1604},{"className":1603},[],[1605],{"type":47,"value":1606},"escalate_log_entry",{"type":47,"value":1354},{"type":42,"tag":66,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":47,"value":1613},"assign_log_entry",{"type":47,"value":1354},{"type":42,"tag":66,"props":1616,"children":1618},{"className":1617},[],[1619],{"type":47,"value":1620},"resolve_log_entry",{"type":47,"value":1622},". Pair with\n",{"type":42,"tag":66,"props":1624,"children":1626},{"className":1625},[],[1627],{"type":47,"value":1628},"\u002Fusers\u002F\u003Cid>\u002Fnotification_rules",{"type":47,"value":1630}," to understand why a channel was (or wasn't) used.",{"type":42,"tag":800,"props":1632,"children":1634},{"id":1633},"_5-acknowledge-resolve-escalate-snooze-note",[1635],{"type":47,"value":1636},"5. Acknowledge \u002F resolve \u002F escalate \u002F snooze \u002F note",{"type":42,"tag":43,"props":1638,"children":1639},{},[1640,1642,1648,1650,1655],{"type":47,"value":1641},"All incident mutations require a ",{"type":42,"tag":66,"props":1643,"children":1645},{"className":1644},[],[1646],{"type":47,"value":1647},"From:",{"type":47,"value":1649}," header containing the email of a real PagerDuty user in the\naccount — it attributes the action in the audit log. Missing or unknown email → ",{"type":42,"tag":66,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":47,"value":741},{"type":47,"value":514},{"type":42,"tag":200,"props":1657,"children":1659},{"className":202,"code":1658,"language":204,"meta":205,"style":205},"pagerduty -X PUT \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\u002F\u003Cincident_id>\" \\\n  -H \"From: me@example.com\" \\\n  -d '{\"incident\": {\"type\": \"incident_reference\", \"status\": \"acknowledged\"}}'\n",[1660],{"type":42,"tag":66,"props":1661,"children":1662},{"__ignoreMap":205},[1663,1696,1720],{"type":42,"tag":211,"props":1664,"children":1665},{"class":213,"line":214},[1666,1670,1675,1680,1684,1688,1692],{"type":42,"tag":211,"props":1667,"children":1668},{"style":353},[1669],{"type":47,"value":535},{"type":42,"tag":211,"props":1671,"children":1672},{"style":241},[1673],{"type":47,"value":1674}," -X",{"type":42,"tag":211,"props":1676,"children":1677},{"style":241},[1678],{"type":47,"value":1679}," PUT",{"type":42,"tag":211,"props":1681,"children":1682},{"style":230},[1683],{"type":47,"value":386},{"type":42,"tag":211,"props":1685,"children":1686},{"style":241},[1687],{"type":47,"value":1398},{"type":42,"tag":211,"props":1689,"children":1690},{"style":230},[1691],{"type":47,"value":238},{"type":42,"tag":211,"props":1693,"children":1694},{"style":224},[1695],{"type":47,"value":400},{"type":42,"tag":211,"props":1697,"children":1698},{"class":213,"line":403},[1699,1703,1707,1712,1716],{"type":42,"tag":211,"props":1700,"children":1701},{"style":241},[1702],{"type":47,"value":409},{"type":42,"tag":211,"props":1704,"children":1705},{"style":230},[1706],{"type":47,"value":386},{"type":42,"tag":211,"props":1708,"children":1709},{"style":241},[1710],{"type":47,"value":1711},"From: me@example.com",{"type":42,"tag":211,"props":1713,"children":1714},{"style":230},[1715],{"type":47,"value":238},{"type":42,"tag":211,"props":1717,"children":1718},{"style":224},[1719],{"type":47,"value":400},{"type":42,"tag":211,"props":1721,"children":1722},{"class":213,"line":440},[1723,1728,1732,1737],{"type":42,"tag":211,"props":1724,"children":1725},{"style":241},[1726],{"type":47,"value":1727},"  -d",{"type":42,"tag":211,"props":1729,"children":1730},{"style":230},[1731],{"type":47,"value":371},{"type":42,"tag":211,"props":1733,"children":1734},{"style":241},[1735],{"type":47,"value":1736},"{\"incident\": {\"type\": \"incident_reference\", \"status\": \"acknowledged\"}}",{"type":42,"tag":211,"props":1738,"children":1739},{"style":230},[1740],{"type":47,"value":1326},{"type":42,"tag":50,"props":1742,"children":1743},{},[1744,1767,1788,1809,1831],{"type":42,"tag":54,"props":1745,"children":1746},{},[1747,1752,1753,1759,1761],{"type":42,"tag":58,"props":1748,"children":1749},{},[1750],{"type":47,"value":1751},"Acknowledge",{"type":47,"value":948},{"type":42,"tag":66,"props":1754,"children":1756},{"className":1755},[],[1757],{"type":47,"value":1758},"PUT \u002Fincidents\u002F\u003Cid>",{"type":47,"value":1760},": ",{"type":42,"tag":66,"props":1762,"children":1764},{"className":1763},[],[1765],{"type":47,"value":1766},"{\"incident\":{\"type\":\"incident_reference\",\"status\":\"acknowledged\"}}",{"type":42,"tag":54,"props":1768,"children":1769},{},[1770,1775,1776,1781,1782],{"type":42,"tag":58,"props":1771,"children":1772},{},[1773],{"type":47,"value":1774},"Resolve",{"type":47,"value":948},{"type":42,"tag":66,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":47,"value":1758},{"type":47,"value":1760},{"type":42,"tag":66,"props":1783,"children":1785},{"className":1784},[],[1786],{"type":47,"value":1787},"{\"incident\":{\"type\":\"incident_reference\",\"status\":\"resolved\"}}",{"type":42,"tag":54,"props":1789,"children":1790},{},[1791,1796,1797,1802,1803],{"type":42,"tag":58,"props":1792,"children":1793},{},[1794],{"type":47,"value":1795},"Escalate to level N",{"type":47,"value":948},{"type":42,"tag":66,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":47,"value":1758},{"type":47,"value":1760},{"type":42,"tag":66,"props":1804,"children":1806},{"className":1805},[],[1807],{"type":47,"value":1808},"{\"incident\":{\"type\":\"incident_reference\",\"escalation_level\":N}}",{"type":42,"tag":54,"props":1810,"children":1811},{},[1812,1817,1818,1824,1825],{"type":42,"tag":58,"props":1813,"children":1814},{},[1815],{"type":47,"value":1816},"Snooze",{"type":47,"value":948},{"type":42,"tag":66,"props":1819,"children":1821},{"className":1820},[],[1822],{"type":47,"value":1823},"POST \u002Fincidents\u002F\u003Cid>\u002Fsnooze",{"type":47,"value":1760},{"type":42,"tag":66,"props":1826,"children":1828},{"className":1827},[],[1829],{"type":47,"value":1830},"{\"duration\": \u003Cseconds>}",{"type":42,"tag":54,"props":1832,"children":1833},{},[1834,1839,1840,1846,1847],{"type":42,"tag":58,"props":1835,"children":1836},{},[1837],{"type":47,"value":1838},"Add note",{"type":47,"value":948},{"type":42,"tag":66,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":47,"value":1845},"POST \u002Fincidents\u002F\u003Cid>\u002Fnotes",{"type":47,"value":1760},{"type":42,"tag":66,"props":1848,"children":1850},{"className":1849},[],[1851],{"type":47,"value":1852},"{\"note\":{\"content\":\"...\"}}",{"type":42,"tag":800,"props":1854,"children":1856},{"id":1855},"_6-trace-routing-service-escalation-policy-schedule",[1857],{"type":47,"value":1858},"6. Trace routing: service → escalation policy → schedule",{"type":42,"tag":200,"props":1860,"children":1862},{"className":202,"code":1861,"language":204,"meta":205,"style":205},"# service → which policy\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fservices\u002F\u003Cservice_id>?include[]=escalation_policies\" | \\\n  jq '.service | {name, escalation_policy}'\n\n# policy → ordered rules and targets\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fescalation_policies\u002F\u003Cpolicy_id>\" | \\\n  jq '.escalation_policy.escalation_rules[]? | {delay_min: .escalation_delay_in_minutes, targets: [.targets[]? | {type, summary}]}'\n\n# schedule → rendered rotation for the next week (after overrides\u002Flayers)\n# GNU date; on BSD\u002FmacOS use: date -u -v+7d +%Y-%m-%dT%H:%M:%SZ\npagerduty \"https:\u002F\u002Fapi.pagerduty.com\u002Fschedules\u002F\u003Cschedule_id>\" -G \\\n  --data-urlencode \"since=$(date -u +%Y-%m-%dT%H:%M:%SZ)\" \\\n  --data-urlencode \"until=$(date -u -d '+7 days' +%Y-%m-%dT%H:%M:%SZ)\" | \\\n  jq '.schedule.final_schedule.rendered_schedule_entries[]? | {start, end, user: .user.summary}'\n",[1863],{"type":42,"tag":66,"props":1864,"children":1865},{"__ignoreMap":205},[1866,1874,1902,1922,1931,1939,1967,1988,1996,2005,2014,2043,2082,2141],{"type":42,"tag":211,"props":1867,"children":1868},{"class":213,"line":214},[1869],{"type":42,"tag":211,"props":1870,"children":1871},{"style":251},[1872],{"type":47,"value":1873},"# service → which policy\n",{"type":42,"tag":211,"props":1875,"children":1876},{"class":213,"line":403},[1877,1881,1885,1890,1894,1898],{"type":42,"tag":211,"props":1878,"children":1879},{"style":353},[1880],{"type":47,"value":535},{"type":42,"tag":211,"props":1882,"children":1883},{"style":230},[1884],{"type":47,"value":386},{"type":42,"tag":211,"props":1886,"children":1887},{"style":241},[1888],{"type":47,"value":1889},"https:\u002F\u002Fapi.pagerduty.com\u002Fservices\u002F\u003Cservice_id>?include[]=escalation_policies",{"type":42,"tag":211,"props":1891,"children":1892},{"style":230},[1893],{"type":47,"value":238},{"type":42,"tag":211,"props":1895,"children":1896},{"style":230},[1897],{"type":47,"value":1299},{"type":42,"tag":211,"props":1899,"children":1900},{"style":224},[1901],{"type":47,"value":400},{"type":42,"tag":211,"props":1903,"children":1904},{"class":213,"line":440},[1905,1909,1913,1918],{"type":42,"tag":211,"props":1906,"children":1907},{"style":353},[1908],{"type":47,"value":1312},{"type":42,"tag":211,"props":1910,"children":1911},{"style":230},[1912],{"type":47,"value":371},{"type":42,"tag":211,"props":1914,"children":1915},{"style":241},[1916],{"type":47,"value":1917},".service | {name, escalation_policy}",{"type":42,"tag":211,"props":1919,"children":1920},{"style":230},[1921],{"type":47,"value":1326},{"type":42,"tag":211,"props":1923,"children":1924},{"class":213,"line":1251},[1925],{"type":42,"tag":211,"props":1926,"children":1928},{"emptyLinePlaceholder":1927},true,[1929],{"type":47,"value":1930},"\n",{"type":42,"tag":211,"props":1932,"children":1933},{"class":213,"line":1276},[1934],{"type":42,"tag":211,"props":1935,"children":1936},{"style":251},[1937],{"type":47,"value":1938},"# policy → ordered rules and targets\n",{"type":42,"tag":211,"props":1940,"children":1941},{"class":213,"line":1306},[1942,1946,1950,1955,1959,1963],{"type":42,"tag":211,"props":1943,"children":1944},{"style":353},[1945],{"type":47,"value":535},{"type":42,"tag":211,"props":1947,"children":1948},{"style":230},[1949],{"type":47,"value":386},{"type":42,"tag":211,"props":1951,"children":1952},{"style":241},[1953],{"type":47,"value":1954},"https:\u002F\u002Fapi.pagerduty.com\u002Fescalation_policies\u002F\u003Cpolicy_id>",{"type":42,"tag":211,"props":1956,"children":1957},{"style":230},[1958],{"type":47,"value":238},{"type":42,"tag":211,"props":1960,"children":1961},{"style":230},[1962],{"type":47,"value":1299},{"type":42,"tag":211,"props":1964,"children":1965},{"style":224},[1966],{"type":47,"value":400},{"type":42,"tag":211,"props":1968,"children":1970},{"class":213,"line":1969},7,[1971,1975,1979,1984],{"type":42,"tag":211,"props":1972,"children":1973},{"style":353},[1974],{"type":47,"value":1312},{"type":42,"tag":211,"props":1976,"children":1977},{"style":230},[1978],{"type":47,"value":371},{"type":42,"tag":211,"props":1980,"children":1981},{"style":241},[1982],{"type":47,"value":1983},".escalation_policy.escalation_rules[]? | {delay_min: .escalation_delay_in_minutes, targets: [.targets[]? | {type, summary}]}",{"type":42,"tag":211,"props":1985,"children":1986},{"style":230},[1987],{"type":47,"value":1326},{"type":42,"tag":211,"props":1989,"children":1991},{"class":213,"line":1990},8,[1992],{"type":42,"tag":211,"props":1993,"children":1994},{"emptyLinePlaceholder":1927},[1995],{"type":47,"value":1930},{"type":42,"tag":211,"props":1997,"children":1999},{"class":213,"line":1998},9,[2000],{"type":42,"tag":211,"props":2001,"children":2002},{"style":251},[2003],{"type":47,"value":2004},"# schedule → rendered rotation for the next week (after overrides\u002Flayers)\n",{"type":42,"tag":211,"props":2006,"children":2008},{"class":213,"line":2007},10,[2009],{"type":42,"tag":211,"props":2010,"children":2011},{"style":251},[2012],{"type":47,"value":2013},"# GNU date; on BSD\u002FmacOS use: date -u -v+7d +%Y-%m-%dT%H:%M:%SZ\n",{"type":42,"tag":211,"props":2015,"children":2017},{"class":213,"line":2016},11,[2018,2022,2026,2031,2035,2039],{"type":42,"tag":211,"props":2019,"children":2020},{"style":353},[2021],{"type":47,"value":535},{"type":42,"tag":211,"props":2023,"children":2024},{"style":230},[2025],{"type":47,"value":386},{"type":42,"tag":211,"props":2027,"children":2028},{"style":241},[2029],{"type":47,"value":2030},"https:\u002F\u002Fapi.pagerduty.com\u002Fschedules\u002F\u003Cschedule_id>",{"type":42,"tag":211,"props":2032,"children":2033},{"style":230},[2034],{"type":47,"value":238},{"type":42,"tag":211,"props":2036,"children":2037},{"style":241},[2038],{"type":47,"value":1196},{"type":42,"tag":211,"props":2040,"children":2041},{"style":224},[2042],{"type":47,"value":400},{"type":42,"tag":211,"props":2044,"children":2045},{"class":213,"line":30},[2046,2050,2054,2058,2063,2068,2073,2078],{"type":42,"tag":211,"props":2047,"children":2048},{"style":241},[2049],{"type":47,"value":1208},{"type":42,"tag":211,"props":2051,"children":2052},{"style":230},[2053],{"type":47,"value":386},{"type":42,"tag":211,"props":2055,"children":2056},{"style":241},[2057],{"type":47,"value":1337},{"type":42,"tag":211,"props":2059,"children":2060},{"style":230},[2061],{"type":47,"value":2062},"$(",{"type":42,"tag":211,"props":2064,"children":2065},{"style":353},[2066],{"type":47,"value":2067},"date",{"type":42,"tag":211,"props":2069,"children":2070},{"style":241},[2071],{"type":47,"value":2072}," -u +%Y-%m-%dT%H:%M:%SZ",{"type":42,"tag":211,"props":2074,"children":2075},{"style":230},[2076],{"type":47,"value":2077},")\"",{"type":42,"tag":211,"props":2079,"children":2080},{"style":224},[2081],{"type":47,"value":400},{"type":42,"tag":211,"props":2083,"children":2085},{"class":213,"line":2084},13,[2086,2090,2094,2098,2102,2106,2111,2115,2120,2124,2129,2133,2137],{"type":42,"tag":211,"props":2087,"children":2088},{"style":241},[2089],{"type":47,"value":1208},{"type":42,"tag":211,"props":2091,"children":2092},{"style":230},[2093],{"type":47,"value":386},{"type":42,"tag":211,"props":2095,"children":2096},{"style":241},[2097],{"type":47,"value":1344},{"type":42,"tag":211,"props":2099,"children":2100},{"style":230},[2101],{"type":47,"value":2062},{"type":42,"tag":211,"props":2103,"children":2104},{"style":353},[2105],{"type":47,"value":2067},{"type":42,"tag":211,"props":2107,"children":2108},{"style":241},[2109],{"type":47,"value":2110}," -u -d ",{"type":42,"tag":211,"props":2112,"children":2113},{"style":230},[2114],{"type":47,"value":381},{"type":42,"tag":211,"props":2116,"children":2117},{"style":241},[2118],{"type":47,"value":2119},"+7 days",{"type":42,"tag":211,"props":2121,"children":2122},{"style":230},[2123],{"type":47,"value":381},{"type":42,"tag":211,"props":2125,"children":2126},{"style":241},[2127],{"type":47,"value":2128}," +%Y-%m-%dT%H:%M:%SZ",{"type":42,"tag":211,"props":2130,"children":2131},{"style":230},[2132],{"type":47,"value":2077},{"type":42,"tag":211,"props":2134,"children":2135},{"style":230},[2136],{"type":47,"value":1299},{"type":42,"tag":211,"props":2138,"children":2139},{"style":224},[2140],{"type":47,"value":400},{"type":42,"tag":211,"props":2142,"children":2144},{"class":213,"line":2143},14,[2145,2149,2153,2158],{"type":42,"tag":211,"props":2146,"children":2147},{"style":353},[2148],{"type":47,"value":1312},{"type":42,"tag":211,"props":2150,"children":2151},{"style":230},[2152],{"type":47,"value":371},{"type":42,"tag":211,"props":2154,"children":2155},{"style":241},[2156],{"type":47,"value":2157},".schedule.final_schedule.rendered_schedule_entries[]? | {start, end, user: .user.summary}",{"type":42,"tag":211,"props":2159,"children":2160},{"style":230},[2161],{"type":47,"value":1326},{"type":42,"tag":43,"props":2163,"children":2164},{},[2165,2167,2173,2175,2181,2183,2189],{"type":47,"value":2166},"Most list endpoints take ",{"type":42,"tag":66,"props":2168,"children":2170},{"className":2169},[],[2171],{"type":47,"value":2172},"query=",{"type":47,"value":2174}," for substring name match, e.g.\n",{"type":42,"tag":66,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":47,"value":2180},"GET \u002Fschedules?query=platform",{"type":47,"value":2182}," → ",{"type":42,"tag":66,"props":2184,"children":2186},{"className":2185},[],[2187],{"type":47,"value":2188},"jq '.schedules[]? | {id, name}'",{"type":47,"value":514},{"type":42,"tag":800,"props":2191,"children":2193},{"id":2192},"_7-create-an-incident",[2194],{"type":47,"value":2195},"7. Create an incident",{"type":42,"tag":200,"props":2197,"children":2199},{"className":202,"code":2198,"language":204,"meta":205,"style":205},"pagerduty -X POST \"https:\u002F\u002Fapi.pagerduty.com\u002Fincidents\" \\\n  -H \"From: me@example.com\" \\\n  -d '{\n    \"incident\": {\n      \"type\": \"incident\",\n      \"title\": \"Payment gateway returning 500s\",\n      \"urgency\": \"high\",\n      \"service\": {\"id\": \"\u003Cservice_id>\", \"type\": \"service_reference\"},\n      \"body\": {\"type\": \"incident_body\", \"details\": \"Seeing 40% error rate since 14:00 UTC.\"}\n    }\n  }'\n",[2200],{"type":42,"tag":66,"props":2201,"children":2202},{"__ignoreMap":205},[2203,2235,2258,2274,2282,2290,2298,2306,2314,2322,2330],{"type":42,"tag":211,"props":2204,"children":2205},{"class":213,"line":214},[2206,2210,2214,2219,2223,2227,2231],{"type":42,"tag":211,"props":2207,"children":2208},{"style":353},[2209],{"type":47,"value":535},{"type":42,"tag":211,"props":2211,"children":2212},{"style":241},[2213],{"type":47,"value":1674},{"type":42,"tag":211,"props":2215,"children":2216},{"style":241},[2217],{"type":47,"value":2218}," POST",{"type":42,"tag":211,"props":2220,"children":2221},{"style":230},[2222],{"type":47,"value":386},{"type":42,"tag":211,"props":2224,"children":2225},{"style":241},[2226],{"type":47,"value":1187},{"type":42,"tag":211,"props":2228,"children":2229},{"style":230},[2230],{"type":47,"value":238},{"type":42,"tag":211,"props":2232,"children":2233},{"style":224},[2234],{"type":47,"value":400},{"type":42,"tag":211,"props":2236,"children":2237},{"class":213,"line":403},[2238,2242,2246,2250,2254],{"type":42,"tag":211,"props":2239,"children":2240},{"style":241},[2241],{"type":47,"value":409},{"type":42,"tag":211,"props":2243,"children":2244},{"style":230},[2245],{"type":47,"value":386},{"type":42,"tag":211,"props":2247,"children":2248},{"style":241},[2249],{"type":47,"value":1711},{"type":42,"tag":211,"props":2251,"children":2252},{"style":230},[2253],{"type":47,"value":238},{"type":42,"tag":211,"props":2255,"children":2256},{"style":224},[2257],{"type":47,"value":400},{"type":42,"tag":211,"props":2259,"children":2260},{"class":213,"line":440},[2261,2265,2269],{"type":42,"tag":211,"props":2262,"children":2263},{"style":241},[2264],{"type":47,"value":1727},{"type":42,"tag":211,"props":2266,"children":2267},{"style":230},[2268],{"type":47,"value":371},{"type":42,"tag":211,"props":2270,"children":2271},{"style":241},[2272],{"type":47,"value":2273},"{\n",{"type":42,"tag":211,"props":2275,"children":2276},{"class":213,"line":1251},[2277],{"type":42,"tag":211,"props":2278,"children":2279},{"style":241},[2280],{"type":47,"value":2281},"    \"incident\": {\n",{"type":42,"tag":211,"props":2283,"children":2284},{"class":213,"line":1276},[2285],{"type":42,"tag":211,"props":2286,"children":2287},{"style":241},[2288],{"type":47,"value":2289},"      \"type\": \"incident\",\n",{"type":42,"tag":211,"props":2291,"children":2292},{"class":213,"line":1306},[2293],{"type":42,"tag":211,"props":2294,"children":2295},{"style":241},[2296],{"type":47,"value":2297},"      \"title\": \"Payment gateway returning 500s\",\n",{"type":42,"tag":211,"props":2299,"children":2300},{"class":213,"line":1969},[2301],{"type":42,"tag":211,"props":2302,"children":2303},{"style":241},[2304],{"type":47,"value":2305},"      \"urgency\": \"high\",\n",{"type":42,"tag":211,"props":2307,"children":2308},{"class":213,"line":1990},[2309],{"type":42,"tag":211,"props":2310,"children":2311},{"style":241},[2312],{"type":47,"value":2313},"      \"service\": {\"id\": \"\u003Cservice_id>\", \"type\": \"service_reference\"},\n",{"type":42,"tag":211,"props":2315,"children":2316},{"class":213,"line":1998},[2317],{"type":42,"tag":211,"props":2318,"children":2319},{"style":241},[2320],{"type":47,"value":2321},"      \"body\": {\"type\": \"incident_body\", \"details\": \"Seeing 40% error rate since 14:00 UTC.\"}\n",{"type":42,"tag":211,"props":2323,"children":2324},{"class":213,"line":2007},[2325],{"type":42,"tag":211,"props":2326,"children":2327},{"style":241},[2328],{"type":47,"value":2329},"    }\n",{"type":42,"tag":211,"props":2331,"children":2332},{"class":213,"line":2016},[2333,2338],{"type":42,"tag":211,"props":2334,"children":2335},{"style":241},[2336],{"type":47,"value":2337},"  }",{"type":42,"tag":211,"props":2339,"children":2340},{"style":230},[2341],{"type":47,"value":1326},{"type":42,"tag":43,"props":2343,"children":2344},{},[2345,2347,2352,2354,2360,2362,2368],{"type":47,"value":2346},"Success is ",{"type":42,"tag":66,"props":2348,"children":2350},{"className":2349},[],[2351],{"type":47,"value":700},{"type":47,"value":2353}," — read ",{"type":42,"tag":66,"props":2355,"children":2357},{"className":2356},[],[2358],{"type":47,"value":2359},".incident.id",{"type":47,"value":2361}," for follow-up calls (it's ",{"type":42,"tag":66,"props":2363,"children":2365},{"className":2364},[],[2366],{"type":47,"value":2367},"null",{"type":47,"value":2369}," on an error envelope;\ncheck the status before reusing it).",{"type":42,"tag":800,"props":2371,"children":2373},{"id":2372},"_8-trigger-an-alert-via-events-api-v2",[2374],{"type":47,"value":2375},"8. Trigger an alert via Events API v2",{"type":42,"tag":200,"props":2377,"children":2379},{"className":202,"code":2378,"language":204,"meta":205,"style":205},"curl -sS -X POST \"https:\u002F\u002Fevents.pagerduty.com\u002Fv2\u002Fenqueue\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"routing_key\": \"'\"${PD_ROUTING_KEY}\"'\",\n    \"event_action\": \"trigger\",\n    \"dedup_key\": \"db-latency-prod-us-east\",\n    \"payload\": {\n      \"summary\": \"DB p99 latency > 500ms in prod us-east\",\n      \"source\": \"prometheus:db_latency_p99\",\n      \"severity\": \"critical\",\n      \"custom_details\": {\"value_ms\": 612}\n    }\n  }'\n",[2380],{"type":42,"tag":66,"props":2381,"children":2382},{"__ignoreMap":205},[2383,2419,2442,2457,2485,2493,2501,2509,2517,2525,2533,2541,2548],{"type":42,"tag":211,"props":2384,"children":2385},{"class":213,"line":214},[2386,2390,2394,2398,2402,2406,2411,2415],{"type":42,"tag":211,"props":2387,"children":2388},{"style":353},[2389],{"type":47,"value":356},{"type":42,"tag":211,"props":2391,"children":2392},{"style":241},[2393],{"type":47,"value":361},{"type":42,"tag":211,"props":2395,"children":2396},{"style":241},[2397],{"type":47,"value":1674},{"type":42,"tag":211,"props":2399,"children":2400},{"style":241},[2401],{"type":47,"value":2218},{"type":42,"tag":211,"props":2403,"children":2404},{"style":230},[2405],{"type":47,"value":386},{"type":42,"tag":211,"props":2407,"children":2408},{"style":241},[2409],{"type":47,"value":2410},"https:\u002F\u002Fevents.pagerduty.com\u002Fv2\u002Fenqueue",{"type":42,"tag":211,"props":2412,"children":2413},{"style":230},[2414],{"type":47,"value":238},{"type":42,"tag":211,"props":2416,"children":2417},{"style":224},[2418],{"type":47,"value":400},{"type":42,"tag":211,"props":2420,"children":2421},{"class":213,"line":403},[2422,2426,2430,2434,2438],{"type":42,"tag":211,"props":2423,"children":2424},{"style":241},[2425],{"type":47,"value":409},{"type":42,"tag":211,"props":2427,"children":2428},{"style":230},[2429],{"type":47,"value":386},{"type":42,"tag":211,"props":2431,"children":2432},{"style":241},[2433],{"type":47,"value":454},{"type":42,"tag":211,"props":2435,"children":2436},{"style":230},[2437],{"type":47,"value":238},{"type":42,"tag":211,"props":2439,"children":2440},{"style":224},[2441],{"type":47,"value":400},{"type":42,"tag":211,"props":2443,"children":2444},{"class":213,"line":440},[2445,2449,2453],{"type":42,"tag":211,"props":2446,"children":2447},{"style":241},[2448],{"type":47,"value":1727},{"type":42,"tag":211,"props":2450,"children":2451},{"style":230},[2452],{"type":47,"value":371},{"type":42,"tag":211,"props":2454,"children":2455},{"style":241},[2456],{"type":47,"value":2273},{"type":42,"tag":211,"props":2458,"children":2459},{"class":213,"line":1251},[2460,2465,2470,2475,2480],{"type":42,"tag":211,"props":2461,"children":2462},{"style":241},[2463],{"type":47,"value":2464},"    \"routing_key\": \"",{"type":42,"tag":211,"props":2466,"children":2467},{"style":230},[2468],{"type":47,"value":2469},"'\"${",{"type":42,"tag":211,"props":2471,"children":2472},{"style":224},[2473],{"type":47,"value":2474},"PD_ROUTING_KEY",{"type":42,"tag":211,"props":2476,"children":2477},{"style":230},[2478],{"type":47,"value":2479},"}\"'",{"type":42,"tag":211,"props":2481,"children":2482},{"style":241},[2483],{"type":47,"value":2484},"\",\n",{"type":42,"tag":211,"props":2486,"children":2487},{"class":213,"line":1276},[2488],{"type":42,"tag":211,"props":2489,"children":2490},{"style":241},[2491],{"type":47,"value":2492},"    \"event_action\": \"trigger\",\n",{"type":42,"tag":211,"props":2494,"children":2495},{"class":213,"line":1306},[2496],{"type":42,"tag":211,"props":2497,"children":2498},{"style":241},[2499],{"type":47,"value":2500},"    \"dedup_key\": \"db-latency-prod-us-east\",\n",{"type":42,"tag":211,"props":2502,"children":2503},{"class":213,"line":1969},[2504],{"type":42,"tag":211,"props":2505,"children":2506},{"style":241},[2507],{"type":47,"value":2508},"    \"payload\": {\n",{"type":42,"tag":211,"props":2510,"children":2511},{"class":213,"line":1990},[2512],{"type":42,"tag":211,"props":2513,"children":2514},{"style":241},[2515],{"type":47,"value":2516},"      \"summary\": \"DB p99 latency > 500ms in prod us-east\",\n",{"type":42,"tag":211,"props":2518,"children":2519},{"class":213,"line":1998},[2520],{"type":42,"tag":211,"props":2521,"children":2522},{"style":241},[2523],{"type":47,"value":2524},"      \"source\": \"prometheus:db_latency_p99\",\n",{"type":42,"tag":211,"props":2526,"children":2527},{"class":213,"line":2007},[2528],{"type":42,"tag":211,"props":2529,"children":2530},{"style":241},[2531],{"type":47,"value":2532},"      \"severity\": \"critical\",\n",{"type":42,"tag":211,"props":2534,"children":2535},{"class":213,"line":2016},[2536],{"type":42,"tag":211,"props":2537,"children":2538},{"style":241},[2539],{"type":47,"value":2540},"      \"custom_details\": {\"value_ms\": 612}\n",{"type":42,"tag":211,"props":2542,"children":2543},{"class":213,"line":30},[2544],{"type":42,"tag":211,"props":2545,"children":2546},{"style":241},[2547],{"type":47,"value":2329},{"type":42,"tag":211,"props":2549,"children":2550},{"class":213,"line":2084},[2551,2555],{"type":42,"tag":211,"props":2552,"children":2553},{"style":241},[2554],{"type":47,"value":2337},{"type":42,"tag":211,"props":2556,"children":2557},{"style":230},[2558],{"type":47,"value":1326},{"type":42,"tag":43,"props":2560,"children":2561},{},[2562,2568,2570,2576,2577,2583,2584,2590,2592,2598,2600,2605,2607,2613,2615,2620,2622,2627,2629,2635],{"type":42,"tag":66,"props":2563,"children":2565},{"className":2564},[],[2566],{"type":47,"value":2567},"event_action",{"type":47,"value":2569}," ∈ ",{"type":42,"tag":66,"props":2571,"children":2573},{"className":2572},[],[2574],{"type":47,"value":2575},"trigger",{"type":47,"value":966},{"type":42,"tag":66,"props":2578,"children":2580},{"className":2579},[],[2581],{"type":47,"value":2582},"acknowledge",{"type":47,"value":966},{"type":42,"tag":66,"props":2585,"children":2587},{"className":2586},[],[2588],{"type":47,"value":2589},"resolve",{"type":47,"value":2591}," — send a later event with the same\n",{"type":42,"tag":66,"props":2593,"children":2595},{"className":2594},[],[2596],{"type":47,"value":2597},"dedup_key",{"type":47,"value":2599}," to close the loop. ",{"type":42,"tag":66,"props":2601,"children":2603},{"className":2602},[],[2604],{"type":47,"value":733},{"type":47,"value":2606}," returns ",{"type":42,"tag":66,"props":2608,"children":2610},{"className":2609},[],[2611],{"type":47,"value":2612},"{\"status\":\"success\",\"dedup_key\":\"...\"}",{"type":47,"value":2614},"; keep the\n",{"type":42,"tag":66,"props":2616,"children":2618},{"className":2617},[],[2619],{"type":47,"value":2597},{"type":47,"value":2621}," if PagerDuty generated it. Malformed payloads return ",{"type":42,"tag":66,"props":2623,"children":2625},{"className":2624},[],[2626],{"type":47,"value":741},{"type":47,"value":2628}," JSON with ",{"type":42,"tag":66,"props":2630,"children":2632},{"className":2631},[],[2633],{"type":47,"value":2634},"errors[]",{"type":47,"value":514},{"type":42,"tag":147,"props":2637,"children":2639},{"id":2638},"pagination",[2640],{"type":47,"value":2641},"Pagination",{"type":42,"tag":43,"props":2643,"children":2644},{},[2645,2647,2652,2654,2659,2661,2667,2669,2674,2676,2681,2682,2693,2695,2701,2703,2709,2711,2717,2719,2725,2727,2733,2735,2741],{"type":47,"value":2646},"Classic offset\u002Flimit: ",{"type":42,"tag":66,"props":2648,"children":2650},{"className":2649},[],[2651],{"type":47,"value":839},{"type":47,"value":2653}," (default 25, max 100) and ",{"type":42,"tag":66,"props":2655,"children":2657},{"className":2656},[],[2658],{"type":47,"value":832},{"type":47,"value":2660}," (default 0); page while the\nresponse has ",{"type":42,"tag":66,"props":2662,"children":2664},{"className":2663},[],[2665],{"type":47,"value":2666},"more: true",{"type":47,"value":2668},", incrementing ",{"type":42,"tag":66,"props":2670,"children":2672},{"className":2671},[],[2673],{"type":47,"value":832},{"type":47,"value":2675}," by ",{"type":42,"tag":66,"props":2677,"children":2679},{"className":2678},[],[2680],{"type":47,"value":839},{"type":47,"value":478},{"type":42,"tag":58,"props":2683,"children":2684},{},[2685,2691],{"type":42,"tag":66,"props":2686,"children":2688},{"className":2687},[],[2689],{"type":47,"value":2690},"offset + limit",{"type":47,"value":2692}," is capped at\n10,000",{"type":47,"value":2694}," — narrow the time window or filters past that. Exceptions: ",{"type":42,"tag":66,"props":2696,"children":2698},{"className":2697},[],[2699],{"type":47,"value":2700},"\u002Faudit\u002Frecords",{"type":47,"value":2702}," returns\n",{"type":42,"tag":66,"props":2704,"children":2706},{"className":2705},[],[2707],{"type":47,"value":2708},"next_cursor",{"type":47,"value":2710}," (pass back as ",{"type":42,"tag":66,"props":2712,"children":2714},{"className":2713},[],[2715],{"type":47,"value":2716},"cursor=",{"type":47,"value":2718},"); ",{"type":42,"tag":66,"props":2720,"children":2722},{"className":2721},[],[2723],{"type":47,"value":2724},"\u002Fanalytics\u002Fraw\u002F...",{"type":47,"value":2726}," takes ",{"type":42,"tag":66,"props":2728,"children":2730},{"className":2729},[],[2731],{"type":47,"value":2732},"starting_after",{"type":47,"value":2734}," in the POST body\n(set to the previous response's ",{"type":42,"tag":66,"props":2736,"children":2738},{"className":2737},[],[2739],{"type":47,"value":2740},"last",{"type":47,"value":722},{"type":42,"tag":43,"props":2743,"children":2744},{},[2745,2750,2752,2758,2759,2764,2765,2770,2771,2777,2779,2785,2786,2792,2794,2800,2802,2807,2808,2814,2816,2822],{"type":42,"tag":58,"props":2746,"children":2747},{},[2748],{"type":47,"value":2749},"curl globbing trap.",{"type":47,"value":2751}," Array params use bracket syntax — ",{"type":42,"tag":66,"props":2753,"children":2755},{"className":2754},[],[2756],{"type":47,"value":2757},"statuses[]=",{"type":47,"value":1354},{"type":42,"tag":66,"props":2760,"children":2762},{"className":2761},[],[2763],{"type":47,"value":1352},{"type":47,"value":1362},{"type":42,"tag":66,"props":2766,"children":2768},{"className":2767},[],[2769],{"type":47,"value":1360},{"type":47,"value":1354},{"type":42,"tag":66,"props":2772,"children":2774},{"className":2773},[],[2775],{"type":47,"value":2776},"include[]=",{"type":47,"value":2778},". Older curl treats ",{"type":42,"tag":66,"props":2780,"children":2782},{"className":2781},[],[2783],{"type":47,"value":2784},"[",{"type":47,"value":1463},{"type":42,"tag":66,"props":2787,"children":2789},{"className":2788},[],[2790],{"type":47,"value":2791},"]",{"type":47,"value":2793}," as glob characters and errors with\n",{"type":42,"tag":66,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":47,"value":2799},"curl: (3) bad range",{"type":47,"value":2801},"; modern curl sends them literally. Always pass ",{"type":42,"tag":66,"props":2803,"children":2805},{"className":2804},[],[2806],{"type":47,"value":659},{"type":47,"value":165},{"type":42,"tag":66,"props":2809,"children":2811},{"className":2810},[],[2812],{"type":47,"value":2813},"--globoff",{"type":47,"value":2815}," (the helper\ndoes) or percent-encode the brackets via ",{"type":42,"tag":66,"props":2817,"children":2819},{"className":2818},[],[2820],{"type":47,"value":2821},"-G --data-urlencode 'statuses[]=...'",{"type":47,"value":2823}," to be safe.",{"type":42,"tag":147,"props":2825,"children":2827},{"id":2826},"rate-limits",[2828],{"type":47,"value":2829},"Rate limits",{"type":42,"tag":43,"props":2831,"children":2832},{},[2833,2835,2840,2842,2848,2849,2855,2856,2862,2863,2868,2870,2876,2878,2884,2886,2891,2893,2898,2899,2905],{"type":47,"value":2834},"REST API: ",{"type":42,"tag":58,"props":2836,"children":2837},{},[2838],{"type":47,"value":2839},"960 requests\u002Fminute per token",{"type":47,"value":2841}," (a user's keys share one budget). Responses carry\n",{"type":42,"tag":66,"props":2843,"children":2845},{"className":2844},[],[2846],{"type":47,"value":2847},"ratelimit-limit",{"type":47,"value":1354},{"type":42,"tag":66,"props":2850,"children":2852},{"className":2851},[],[2853],{"type":47,"value":2854},"ratelimit-remaining",{"type":47,"value":1354},{"type":42,"tag":66,"props":2857,"children":2859},{"className":2858},[],[2860],{"type":47,"value":2861},"ratelimit-reset",{"type":47,"value":182},{"type":42,"tag":58,"props":2864,"children":2865},{},[2866],{"type":47,"value":2867},"seconds",{"type":47,"value":2869}," until reset). On ",{"type":42,"tag":66,"props":2871,"children":2873},{"className":2872},[],[2874],{"type":47,"value":2875},"429",{"type":47,"value":2877},"\n(",{"type":42,"tag":66,"props":2879,"children":2881},{"className":2880},[],[2882],{"type":47,"value":2883},"{\"error\":{\"message\":\"Rate Limit Exceeded\",\"code\":2020}}",{"type":47,"value":2885},") sleep ",{"type":42,"tag":66,"props":2887,"children":2889},{"className":2888},[],[2890],{"type":47,"value":2861},{"type":47,"value":2892}," seconds and\nretry. Some endpoints add tighter per-operation limits; the headers reflect whichever is closest.\n",{"type":42,"tag":66,"props":2894,"children":2896},{"className":2895},[],[2897],{"type":47,"value":824},{"type":47,"value":124},{"type":42,"tag":66,"props":2900,"children":2902},{"className":2901},[],[2903],{"type":47,"value":2904},"\u002Fschedules\u002F{id}",{"type":47,"value":2906}," are relatively expensive — cache results if reused.",{"type":42,"tag":43,"props":2908,"children":2909},{},[2910,2912,2917,2919,2924],{"type":47,"value":2911},"Events API v2 has a ",{"type":42,"tag":58,"props":2913,"children":2914},{},[2915],{"type":47,"value":2916},"separate budget",{"type":47,"value":2918},", ~120 events\u002Fminute per routing key. On ",{"type":42,"tag":66,"props":2920,"children":2922},{"className":2921},[],[2923],{"type":47,"value":2875},{"type":47,"value":2925},", back off and\nretry ~30s apart.",{"type":42,"tag":147,"props":2927,"children":2929},{"id":2928},"error-handling",[2930],{"type":47,"value":2931},"Error handling",{"type":42,"tag":43,"props":2933,"children":2934},{},[2935,2937,2943],{"type":47,"value":2936},"Error bodies: ",{"type":42,"tag":66,"props":2938,"children":2940},{"className":2939},[],[2941],{"type":47,"value":2942},"{\"error\": {\"message\": \"...\", \"code\": N, \"errors\": [\"field X is ...\"]}}",{"type":47,"value":514},{"type":42,"tag":50,"props":2945,"children":2946},{},[2947,2982,3010,3023,3056],{"type":42,"tag":54,"props":2948,"children":2949},{},[2950,2958,2960,2966,2968,2973,2975,2980],{"type":42,"tag":58,"props":2951,"children":2952},{},[2953],{"type":42,"tag":66,"props":2954,"children":2956},{"className":2955},[],[2957],{"type":47,"value":741},{"type":47,"value":2959}," — Bad request. Read ",{"type":42,"tag":66,"props":2961,"children":2963},{"className":2962},[],[2964],{"type":47,"value":2965},"error.errors[]",{"type":47,"value":2967}," — names the bad field. Common: missing ",{"type":42,"tag":66,"props":2969,"children":2971},{"className":2970},[],[2972],{"type":47,"value":1647},{"type":47,"value":2974}," on a mutation, missing ",{"type":42,"tag":66,"props":2976,"children":2978},{"className":2977},[],[2979],{"type":47,"value":784},{"type":47,"value":2981}," on a reference object, bad ISO-8601 timestamp.",{"type":42,"tag":54,"props":2983,"children":2984},{},[2985,2993,2995,3000,3002,3008],{"type":42,"tag":58,"props":2986,"children":2987},{},[2988],{"type":42,"tag":66,"props":2989,"children":2991},{"className":2990},[],[2992],{"type":47,"value":163},{"type":47,"value":2994}," — Credential rejected. ",{"type":42,"tag":58,"props":2996,"children":2997},{},[2998],{"type":47,"value":2999},"Body is empty",{"type":47,"value":3001}," — print the status. Header must be ",{"type":42,"tag":66,"props":3003,"children":3005},{"className":3004},[],[3006],{"type":47,"value":3007},"Authorization: Token token=...",{"type":47,"value":3009},". If it persists, the credential isn't configured — report it.",{"type":42,"tag":54,"props":3011,"children":3012},{},[3013,3021],{"type":42,"tag":58,"props":3014,"children":3015},{},[3016],{"type":42,"tag":66,"props":3017,"children":3019},{"className":3018},[],[3020],{"type":47,"value":171},{"type":47,"value":3022}," — Forbidden. Read-only credential mutating, or scoped to a team that doesn't own the resource.",{"type":42,"tag":54,"props":3024,"children":3025},{},[3026,3035,3037,3042,3043,3048,3050,3055],{"type":42,"tag":58,"props":3027,"children":3028},{},[3029],{"type":42,"tag":66,"props":3030,"children":3032},{"className":3031},[],[3033],{"type":47,"value":3034},"404",{"type":47,"value":3036}," — Not found. IDs are short alphanumerics (",{"type":42,"tag":66,"props":3038,"children":3040},{"className":3039},[],[3041],{"type":47,"value":1447},{"type":47,"value":165},{"type":42,"tag":66,"props":3044,"children":3046},{"className":3045},[],[3047],{"type":47,"value":1454},{"type":47,"value":3049},"), not names or ",{"type":42,"tag":66,"props":3051,"children":3053},{"className":3052},[],[3054],{"type":47,"value":1469},{"type":47,"value":514},{"type":42,"tag":54,"props":3057,"children":3058},{},[3059,3067,3069,3074],{"type":42,"tag":58,"props":3060,"children":3061},{},[3062],{"type":42,"tag":66,"props":3063,"children":3065},{"className":3064},[],[3066],{"type":47,"value":2875},{"type":47,"value":3068}," — Rate limited. Sleep ",{"type":42,"tag":66,"props":3070,"children":3072},{"className":3071},[],[3073],{"type":47,"value":2861},{"type":47,"value":3075}," seconds, retry.",{"type":42,"tag":147,"props":3077,"children":3079},{"id":3078},"going-deeper",[3080],{"type":47,"value":3081},"Going deeper",{"type":42,"tag":43,"props":3083,"children":3084},{},[3085,3090],{"type":42,"tag":66,"props":3086,"children":3088},{"className":3087},[],[3089],{"type":47,"value":1157},{"type":47,"value":3091}," has the full endpoint catalog — incidents (alerts, merges, responder requests,\npriorities), services and integrations, escalation policies, schedules and overrides, users and\nnotification\u002Fcontact methods, teams, maintenance windows, business services, event orchestration,\nanalytics, and the full Events API v2 payload shape. Read it when you need an endpoint beyond the\nones above.",{"type":42,"tag":3093,"props":3094,"children":3095},"style",{},[3096],{"type":47,"value":3097},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3099,"total":3286},[3100,3121,3135,3147,3166,3179,3200,3220,3234,3249,3257,3270],{"slug":3101,"name":3101,"fn":3102,"description":3103,"org":3104,"tags":3105,"stars":3118,"repoUrl":3119,"updatedAt":3120},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3106,3109,3112,3115],{"name":3107,"slug":3108,"type":16},"Creative","creative",{"name":3110,"slug":3111,"type":16},"Design","design",{"name":3113,"slug":3114,"type":16},"Generative Art","generative-art",{"name":3116,"slug":3117,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":3122,"name":3122,"fn":3123,"description":3124,"org":3125,"tags":3126,"stars":3118,"repoUrl":3119,"updatedAt":3134},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3127,3130,3131],{"name":3128,"slug":3129,"type":16},"Branding","branding",{"name":3110,"slug":3111,"type":16},{"name":3132,"slug":3133,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":3136,"name":3136,"fn":3137,"description":3138,"org":3139,"tags":3140,"stars":3118,"repoUrl":3119,"updatedAt":3146},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3141,3142,3143],{"name":3107,"slug":3108,"type":16},{"name":3110,"slug":3111,"type":16},{"name":3144,"slug":3145,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":3148,"name":3148,"fn":3149,"description":3150,"org":3151,"tags":3152,"stars":3118,"repoUrl":3119,"updatedAt":3165},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3153,3156,3157,3160,3162],{"name":3154,"slug":3155,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":3158,"slug":3159,"type":16},"Anthropic SDK","anthropic-sdk",{"name":3161,"slug":3148,"type":16},"Claude API",{"name":3163,"slug":3164,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":3167,"name":3167,"fn":3168,"description":3169,"org":3170,"tags":3171,"stars":3118,"repoUrl":3119,"updatedAt":3178},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3172,3175],{"name":3173,"slug":3174,"type":16},"Documentation","documentation",{"name":3176,"slug":3177,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":3180,"name":3180,"fn":3181,"description":3182,"org":3183,"tags":3184,"stars":3118,"repoUrl":3119,"updatedAt":3199},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3185,3188,3190,3193,3196],{"name":3186,"slug":3187,"type":16},"Documents","documents",{"name":3189,"slug":3180,"type":16},"DOCX",{"name":3191,"slug":3192,"type":16},"Office","office",{"name":3194,"slug":3195,"type":16},"Templates","templates",{"name":3197,"slug":3198,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3204,"tags":3205,"stars":3118,"repoUrl":3119,"updatedAt":3219},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3206,3207,3210,3213,3216],{"name":3110,"slug":3111,"type":16},{"name":3208,"slug":3209,"type":16},"Frontend","frontend",{"name":3211,"slug":3212,"type":16},"React","react",{"name":3214,"slug":3215,"type":16},"Tailwind CSS","tailwind-css",{"name":3217,"slug":3218,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":3221,"name":3221,"fn":3222,"description":3223,"org":3224,"tags":3225,"stars":3118,"repoUrl":3119,"updatedAt":3233},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3226,3229,3230],{"name":3227,"slug":3228,"type":16},"Communications","communications",{"name":3194,"slug":3195,"type":16},{"name":3231,"slug":3232,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":3235,"name":3235,"fn":3236,"description":3237,"org":3238,"tags":3239,"stars":3118,"repoUrl":3119,"updatedAt":3248},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3240,3241,3244,3245],{"name":3154,"slug":3155,"type":16},{"name":3242,"slug":3243,"type":16},"API Development","api-development",{"name":3163,"slug":3164,"type":16},{"name":3246,"slug":3247,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":3145,"name":3145,"fn":3250,"description":3251,"org":3252,"tags":3253,"stars":3118,"repoUrl":3119,"updatedAt":3256},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3254,3255],{"name":3186,"slug":3187,"type":16},{"name":3144,"slug":3145,"type":16},"2026-04-06T17:56:02.483316",{"slug":3258,"name":3258,"fn":3259,"description":3260,"org":3261,"tags":3262,"stars":3118,"repoUrl":3119,"updatedAt":3269},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3263,3266],{"name":3264,"slug":3265,"type":16},"PowerPoint","powerpoint",{"name":3267,"slug":3268,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":3271,"name":3271,"fn":3272,"description":3273,"org":3274,"tags":3275,"stars":3118,"repoUrl":3119,"updatedAt":3285},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3276,3277,3278,3281,3284],{"name":3154,"slug":3155,"type":16},{"name":3173,"slug":3174,"type":16},{"name":3279,"slug":3280,"type":16},"Evals","evals",{"name":3282,"slug":3283,"type":16},"Performance","performance",{"name":3176,"slug":3177,"type":16},"2026-04-19T06:45:40.804",490,{"items":3288,"total":3395},[3289,3305,3324,3339,3353,3368,3382],{"slug":3290,"name":3290,"fn":3291,"description":3292,"org":3293,"tags":3294,"stars":26,"repoUrl":27,"updatedAt":3304},"asana-api","manage Asana tasks and projects","Read and manage Asana tasks, projects, sections, comments, and workspaces. Use this whenever the user wants to list or search tasks, create or update a task, complete a task, comment on a task, move tasks between projects or sections, look up a project or workspace, or ask \"what's on my Asana list\" — even if they don't say \"API\". Also use it for any app.asana.com URL or an Asana task\u002Fproject gid. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3295,3298,3301],{"name":3296,"slug":3297,"type":16},"Productivity","productivity",{"name":3299,"slug":3300,"type":16},"Project Management","project-management",{"name":3302,"slug":3303,"type":16},"Task Management","task-management","2026-06-24T07:44:51.70496",{"slug":3306,"name":3306,"fn":3307,"description":3308,"org":3309,"tags":3310,"stars":26,"repoUrl":27,"updatedAt":3323},"bigquery-api","run SQL queries against BigQuery","Run SQL against Google BigQuery and browse its catalog — submit queries (sync or async), poll job status, page through results, list datasets\u002Ftables, and read table schemas. Use this whenever the user wants to query a BigQuery table, ask \"what's in this dataset\", check a BigQuery job's status, or mentions bigquery.googleapis.com or a `project.dataset.table` path. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3311,3314,3317,3320],{"name":3312,"slug":3313,"type":16},"Data Analysis","data-analysis",{"name":3315,"slug":3316,"type":16},"Database","database",{"name":3318,"slug":3319,"type":16},"Google Cloud","google-cloud",{"name":3321,"slug":3322,"type":16},"SQL","sql","2026-06-24T07:45:14.797877",{"slug":3325,"name":3325,"fn":3326,"description":3327,"org":3328,"tags":3329,"stars":26,"repoUrl":27,"updatedAt":3338},"config-guide","configure Claude agent settings and scopes","Reference guide for configuring @Claude agents — agents, agent scopes, identity profiles, presets, connections, rules, GitHub repositories, and custom instructions. Explains the inheritance model and configuration best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3330,3331,3332,3335],{"name":3154,"slug":3155,"type":16},{"name":3161,"slug":3148,"type":16},{"name":3333,"slug":3334,"type":16},"Configuration","configuration",{"name":3336,"slug":3337,"type":16},"GitHub","github","2026-06-25T07:41:36.617524",{"slug":3340,"name":3340,"fn":3341,"description":3342,"org":3343,"tags":3344,"stars":26,"repoUrl":27,"updatedAt":3352},"confluence-api","manage Confluence Cloud content","Read, search, and manage Confluence Cloud pages, spaces, blog posts, comments, attachments, and labels. Use this whenever the user wants to find a page, read a doc, search the wiki with CQL, create or update a page, add a comment, list pages in a space, pull an attachment, or ask \"what does the wiki say about X\" — even if they don't say \"API\". Also use it for any *.atlassian.net\u002Fwiki URL, or a CQL string when the context is wiki content rather than tickets. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3345,3348,3349],{"name":3346,"slug":3347,"type":16},"Confluence","confluence",{"name":3173,"slug":3174,"type":16},{"name":3350,"slug":3351,"type":16},"Knowledge Management","knowledge-management","2026-06-25T07:41:43.531982",{"slug":3354,"name":3354,"fn":3355,"description":3356,"org":3357,"tags":3358,"stars":26,"repoUrl":27,"updatedAt":3367},"datadog-api","manage Datadog monitoring and telemetry","Query and manage Datadog monitoring data — logs, metrics, monitors, dashboards, events, SLOs, traces, and incidents. Use this whenever the user wants to search logs, look at a metric, check which monitors are alerting, investigate a trace, pull SLO status, mute an alert, or ask \"what's happening in Datadog\" — even if they don't say \"API\". Also use it for any URL under *.datadoghq.com. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3359,3360,3363,3364],{"name":3242,"slug":3243,"type":16},{"name":3361,"slug":3362,"type":16},"Datadog","datadog",{"name":21,"slug":22,"type":16},{"name":3365,"slug":3366,"type":16},"Observability","observability","2026-06-24T07:46:42.266372",{"slug":3369,"name":3369,"fn":3370,"description":3371,"org":3372,"tags":3373,"stars":26,"repoUrl":27,"updatedAt":3381},"debug-plugins","diagnose Claude plugin loading failures","Diagnose why a plugin or skill configured in @Claude admin settings isn't loading. Checks mount directories, the Claude Code launch command, and startup logs from inside the running container, then explains what failed and how to fix it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3374,3375,3378],{"name":3161,"slug":3148,"type":16},{"name":3376,"slug":3377,"type":16},"Debugging","debugging",{"name":3379,"slug":3380,"type":16},"Plugin Development","plugin-development","2026-06-24T07:46:32.792809",{"slug":3383,"name":3383,"fn":3384,"description":3385,"org":3386,"tags":3387,"stars":26,"repoUrl":27,"updatedAt":3394},"enterprise-search","search company enterprise knowledge index","Search the company's enterprise knowledge index. Use this FIRST when starting any task that touches company-specific context - projects, people, policies, internal docs, prior decisions - before searching individual sources like Drive, Slack, or Jira directly. Also use it when the user asks \"do we have a doc about X\", \"what's our policy on Y\", or references internal initiatives by name. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3388,3390,3391],{"name":3389,"slug":3383,"type":16},"Enterprise Search",{"name":3350,"slug":3351,"type":16},{"name":3392,"slug":3393,"type":16},"Research","research","2026-06-24T07:46:40.641837",18]