Skip to main content

salesforce-reliability-patterns

Implements Salesforce reliability patterns for fault-tolerant integrations, enhancing resilience with circuit breakers and idempotent operations.

Install this skill

or
71/100

Security score

The salesforce-reliability-patterns skill was audited on May 30, 2026 and we found 9 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 169

Template literal with variable interpolation in command context

SourceSKILL.md
169console.warn(`Retryable SF error ${errorCode}, attempt ${attempt}/${maxRetries}`);
medium line 200

Template literal with variable interpolation in command context

SourceSKILL.md
200console.warn(`SF unavailable, serving stale data for ${cacheKey}`);
medium line 204

Template literal with variable interpolation in command context

SourceSKILL.md
204throw new Error(`Salesforce unavailable and no cached data for ${cacheKey}`);
medium line 243

Template literal with variable interpolation in command context

SourceSKILL.md
243console.error(`DLQ: ${entry.operation} on ${entry.objectType} failed: ${entry.errorCode}`);
medium line 262

Template literal with variable interpolation in command context

SourceSKILL.md
262console.error(`DLQ: Giving up on ${dlq.id} after 5 attempts`);
low line 181

Access to .env file

SourceSKILL.md
181const redis = new Redis(process.env.REDIS_URL);
low line 292

External URL reference

SourceSKILL.md
292- [Circuit Breaker Pattern](https://martinfowler.com/bliki/CircuitBreaker.html)
low line 293

External URL reference

SourceSKILL.md
293- [Opossum Documentation](https://nodeshift.dev/opossum/)
low line 294

External URL reference

SourceSKILL.md
294- [External ID Fields](https://help.salesforce.com/s/articleView?id=sf.fields_about_external_ids.htm)
Scanned on May 30, 2026
View Security Dashboard
Installation guide →