Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

windsurf-incident-runbook

verified

Execute Windsurf incident response procedures with triage, mitigation, and postmortem. Use when responding to Windsurf-related outages, investigating errors, or running post-incident reviews for Windsurf integration failures. Trigger with phrases like "windsurf incident", "windsurf outage", "windsurf down", "windsurf on-call", "windsurf emergency", "windsurf broken".

View on GitHub

Marketplace

claude-code-plugins-plus

jeremylongshore/claude-code-plugins-plus-skills

Plugin

windsurf-pack

productivity

Repository

jeremylongshore/claude-code-plugins-plus-skills
1.2kstars

plugins/saas-packs/windsurf-pack/skills/windsurf-incident-runbook/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/saas-packs/windsurf-pack/skills/windsurf-incident-runbook/SKILL.md -a claude-code --skill windsurf-incident-runbook

Installation paths:

Claude
.claude/skills/windsurf-incident-runbook/
Powered by add-skill CLI

Instructions

# Windsurf Incident Runbook

## Overview
Rapid incident response procedures for Windsurf-related outages.

## Prerequisites
- Access to Windsurf dashboard and status page
- kubectl access to production cluster
- Prometheus/Grafana access
- Communication channels (Slack, PagerDuty)

## Severity Levels

| Level | Definition | Response Time | Examples |
|-------|------------|---------------|----------|
| P1 | Complete outage | < 15 min | Windsurf API unreachable |
| P2 | Degraded service | < 1 hour | High latency, partial failures |
| P3 | Minor impact | < 4 hours | Webhook delays, non-critical errors |
| P4 | No user impact | Next business day | Monitoring gaps |

## Quick Triage

```bash
# 1. Check Windsurf status
curl -s https://status.windsurf.com | jq

# 2. Check our integration health
curl -s https://api.yourapp.com/health | jq '.services.windsurf'

# 3. Check error rate (last 5 min)
curl -s localhost:9090/api/v1/query?query=rate(windsurf_errors_total[5m])

# 4. Recent error logs
kubectl logs -l app=windsurf-integration --since=5m | grep -i error | tail -20
```

## Decision Tree

```
Windsurf API returning errors?
├─ YES: Is status.windsurf.com showing incident?
│   ├─ YES → Wait for Windsurf to resolve. Enable fallback.
│   └─ NO → Our integration issue. Check credentials, config.
└─ NO: Is our service healthy?
    ├─ YES → Likely resolved or intermittent. Monitor.
    └─ NO → Our infrastructure issue. Check pods, memory, network.
```

## Immediate Actions by Error Type

### 401/403 - Authentication
```bash
# Verify API key is set
kubectl get secret windsurf-secrets -o jsonpath='{.data.api-key}' | base64 -d

# Check if key was rotated
# → Verify in Windsurf dashboard

# Remediation: Update secret and restart pods
kubectl create secret generic windsurf-secrets --from-literal=api-key=NEW_KEY --dry-run=client -o yaml | kubectl apply -f -
kubectl rollout restart deployment/windsurf-integration
```

### 429 - Rate Limited
```bash
# Check rate limit headers
curl -v ht

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
4706 chars