Execute Supabase incident response procedures with triage, mitigation, and postmortem. Use when responding to Supabase-related outages, investigating errors, or running post-incident reviews for Supabase integration failures. Trigger with phrases like "supabase incident", "supabase outage", "supabase down", "supabase on-call", "supabase emergency", "supabase broken".
A structured response for Supabase-backed application failures. Work three
layers in order: triage platform vs. application, run pg_stat_activity
database diagnostics, then debug RLS, Edge Functions, and storage — ending with
an evidence bundle for support escalation.
When to use: Production errors involving Supabase, degraded API response times, connection pool exhaustion, silent data filtering from RLS, Edge Function cold start failures, or storage upload/download errors.
Each step below gives the workflow plus a first command. The complete copy-paste blocks for every step live in references/diagnostics.md.
@supabase/supabase-js v2+ installed in your projectpsql diagnostics)Determine whether the issue is a Supabase platform incident or an application-level bug. Check the official status page first, then verify SDK client connectivity. Use Read to inspect the app's Supabase env config and Grep to scan application logs for HTTP error codes (401=auth, 429=rate limit, 500=server).
# Check official status page — is this a platform-wide incident?
curl -sf https://status.supabase.com/api/v2/status.json | jq '.status'
# Expected: { "indicator": "none", "description": "All Systems Operational" }
If the status page is green, run the SDK healthCheck() (a select 1 against a
small _health_check table) to measure latency and confirm connectivity. A
green platform plus a failing health check points at your queries, RLS, or Edge
Functions — the SDK block, incident-check query, and full decision tree are in
references/diagnostics.md.
Connect directly via psql (or the Supabase SQL Editor) to inspect connections, find stuck queries, and detect leaks.
-- Current connections grouped by state — the first thing to run
SELECT state, count(*) AS connections,
max(extract(epoch FROM age(now(), state_change)))::int AS max_idle_seconds
FROM pg_stat_activity
WHERE datname = current_database()
GROUP BY state ORDER BY connections DESC;
-- WARNING: If idle > 20 or idle_in_transaction > 0, you have a leak
From there, drill into long-running queries, connection-limit headroom
(pct_used > 80% means enable Supavisor pooling), the pg_cancel_backend /
pg_terminate_backend kill switches, and an app-side get_connection_stats()
RPC — all in
references/diagnostics.md.
Debug silent data filtering from Row Level Security, inspect Edge Function execution, and verify storage. The classic RLS tell is an anon query returning fewer rows than the same query under the service role.
-- List every RLS policy on the affected table
SELECT policyname, cmd, permissive,
pg_get_expr(qual, polrelid) AS using_expression
FROM pg_policy
JOIN pg_class ON pg_class.oid = polrelid
WHERE relname = 'your_table_name';
Continue with JWT-claim simulation in the SQL Editor, the anon-vs-service-role
SDK diff (debugRLS), Edge Function log tailing (npx supabase functions logs), cold-start detection, and a storage bucket upload/download check — full
blocks in
references/diagnostics.md.
After running this incident runbook, you will have:
createClientpg_stat_activity showing active, idle, and leaked connections| Error | Cause | Solution |
| ------- | ------- | ---------- |
| FetchError: request failed | Supabase API unreachable | Check status.supabase.com; verify network/DNS |
| connection refused on port 5432 | Direct DB access blocked or wrong credentials | Use pooler URL (port 6543) or check dashboard connection strings |
| too many clients already | Connection pool exhausted | Kill idle-in-transaction connections; enable Supavisor pooling |
| permission denied for table | RLS blocking or wrong role | Check policies with pg_policy; verify JWT claims |
| WORKER_LIMIT in Edge Function | Memory/CPU exceeded | Reduce function payload size; optimize imports |
| JWT expired | Token not refreshing | Verify autoRefreshToken: true in createClient options |
| storage/object-not-found | File deleted or wrong path | Check bucket policies; verify path with service role client |
| rate limit exceeded (429) | Too many API requests | Implement exponential backoff; contact Supabase for limit increase |
Example 1 — Quick triage script. A single async function that pings database, auth, storage, and realtime in sequence and prints an OK/ERROR line per service — the fastest "what's actually down?" check.
// One-line database probe (the first check in the full triage script)
const { error } = await supabase.from('_health_check').select('id').limit(1);
console.log('Database:', error ? `ERROR: ${error.message}` : 'OK');
Two more worked examples — a connection-leak detector SQL query that labels each
connection LEAK/STALE/OK, and an escalation evidence-bundle builder that
assembles diagnostics into JSON for Supabase support — are in
references/examples.md.
supabase-data-handlingsupabase-performance-tuningsupabase-observabilitysupabase-common-errorsnpx skills add jeremylongshore/supabase-incident-runbook下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer