Build resilient Figma integrations with circuit breakers, fallbacks, and graceful degradation.
Use when implementing fault tolerance, handling Figma outages gracefully,
or building production-grade reliability into Figma API consumers.
Trigger with phrases like "figma reliability", "figma circuit breaker",
"figma fallback", "figma resilience", "figma graceful degradation".
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Build resilient Figma integrations with circuit breakers, fallbacks, and graceful degradation.
Use when implementing fault tolerance, handling Figma outages gracefully,
or building production-grade reliability into Figma API consumers.
Trigger with phrases like "figma reliability", "figma circuit breaker",
"figma fallback", "figma resilience", "figma graceful degradation".
allowed-tools
Read, Write, Edit
version
1.6.0
license
MIT
author
Jeremy Longshore <jeremy@intentsolutions.io>
tags
["saas","figma"]
compatibility
Designed for Claude Code
Figma Reliability Patterns
Overview
Production reliability patterns for Figma REST API integrations. Figma is an external dependency -- your application must handle its outages, rate limits, and slow responses without cascading failures.
Confirm retry honors Retry-After instead of hammering (Step 3):
GET /v1/files/abc → 429 (Retry-After: 32)
sleeping 32s (server-directed, overrides backoff schedule)
GET /v1/files/abc → 200 (attempt 2)
The cached-fallback contract (what staleness is acceptable per consumer) is in references/cached-fallback.md; composition of all five patterns: references/health-aware-request-routing.md.