From atum-stack-backend
Resilience patterns for backend code calling external services. Use when code makes API calls, DB queries, or network requests to external services.
npx claudepluginhub arnwaldn/atum-plugins-collection --plugin atum-stack-backendThis skill uses the workspace's default tool permissions.
Checklist et patterns pour le code backend qui appelle des services externes (APIs, bases de donnees, services tiers).
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides implementation of event-driven hooks in Claude Code plugins using prompt-based validation and bash commands for PreToolUse, Stop, and session events.
Checklist et patterns pour le code backend qui appelle des services externes (APIs, bases de donnees, services tiers).
Request → Timeout guard → Circuit breaker check
→ Cache lookup (hit → return)
→ In-flight dedup check (pending → await existing)
→ Upstream call (with retry + backoff)
→ Success → Update cache → Return
→ Failure → Serve stale cache → Trip circuit breaker