Agent skill

webflow-incident-runbook

Execute Webflow incident response \u2014 triage by HTTP status (401/403/429/500),\n\ circuit breaker activation, cached fallback, Webflow status page checks,\ncommunication\ \ templates, and postmortem process.\nTrigger with phrases like \"webflow incident\"\ , \"webflow outage\",\n\"webflow down\", \"webflow on-call\", \"webflow emergency\"\ , \"webflow broken\".\n"

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill webflow-incident-runbook --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(curl:*)Bash(npm:*)
Requires: Designed for Claude Code
Path: plugins/saas-packs/webflow-pack/skills/webflow-incident-runbook/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Webflow Incident Runbook ## Overview Rapid incident response procedures for Webflow Data API v2 integration failures. Covers triage, immediate remediation by error type, graceful degradation, stakeholder communication, and postmortem. ## Prerequisites - Access to Webflow dashboard and status page - Application logs and metrics access - Communication channels (Slack, PagerDuty) - Cached fallback data available ## Severity Levels | Level | Definition | Response Time | Example | |-------|------------|---------------|---------| | P1 | Integration fully down | < 15 min | All API calls returning 401/500 | | P2 | Degraded service | < 1 hour | High 429 rate, elevated latency | | P3 | Minor impact | < 4 hours | Webhook delays, form sync lag | | P4 | No user impact | Next business day | Monitoring gap, stale cache | ## Quick Triage (Run First) ```bash #!/bin/bash echo "=== Webflow Incident Triage ===" echo "Time: $(date -u)" # 1. Webflow platform status echo "" echo "--- Platform Status ---" curl -s https://status.webflow.com/api/v2/status.json 2>/dev/null | \ python3 -c " import sys,json d=json.load(sys.stdin) print(f'Status: {d[\"status\"][\"description\"]}') for c in d.get('components',

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Severity Levels
  4. Quick Triage (Run First)
  5. Decision Tree
  6. Immediate Actions by Error Type
  7. 401/403 — Authentication Failure (P1)
  8. 429 — Rate Limited (P2)
  9. 500/502/503 — Webflow Server Error (P2)
  10. Webhook Delivery Failure (P3)
  11. Communication Templates
  12. Internal (Slack)
  13. External (Status Page)
  14. Post-Incident
Commands it runs
echo "=== Webflow Incident Triage ==="
echo "Time: $(date -u)"
echo ""
echo "--- Platform Status ---"
curl -s https://status.webflow.com/api/v2/status.json 2>/dev/null | \
python3 -c "
import sys,json
for c in d.get('components',[]):
if c['status'] != 'operational':
echo "--- API Connectivity ---"
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the webflow-incident-runbook skill do?

Execute Webflow incident response \u2014 triage by HTTP status (401/403/429/500),\n\ circuit breaker activation, cached fallback, Webflow status page checks,\ncommunication\ \ templates, and postmortem process.\nTrigger with phrases like \"webflow incident\"\ , \"webflow outage\",\n\"webflow down\", \"webflow on-call\", \"webflow emergency\"\ , \"webflow broken\".\n"

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill webflow-incident-runbook --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going