Skip to main content

resilience-patterns

Implements resilience patterns like circuit breakers and retries to enhance system reliability and fault tolerance.

Install this skill

or
75/100

Security score

The resilience-patterns skill was audited on May 20, 2026 and we found 5 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 119

Template literal with variable interpolation in command context

SourceSKILL.md
119console.warn(`Attempt ${attempt}/${maxAttempts} failed, retrying in ${Math.round(delay)}ms`)
medium line 200

Template literal with variable interpolation in command context

SourceSKILL.md
200() => reject(new Error(`${label} timed out after ${timeoutMs}ms`)),
medium line 230

Template literal with variable interpolation in command context

SourceSKILL.md
230{ name: 'redis-cache', fn: () => redis.get(`market:${id}`).then(v => v ? JSON.parse(v) : null) },
medium line 244

Template literal with variable interpolation in command context

SourceSKILL.md
244console.warn(`Strategy '${name}' failed:`, (err as Error).message)
medium line 363

Template literal with variable interpolation in command context

SourceSKILL.md
363const lockKey = `idempotency:${idempotencyKey}`
Scanned on May 20, 2026
View Security Dashboard
Installation guide →