Skip to main content

salesforce-sdk-patterns

Provides production-ready Salesforce jsforce patterns for TypeScript and Python, enhancing integration and coding standards.

Install this skill

or
65/100

Security score

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

Categories Tested

Security Issues

medium line 148

Template literal with variable interpolation in command context

SourceSKILL.md
148conditions.push(`Industry = '${filters.industry.replace(/'/g, "\\'")}'`);
medium line 151

Template literal with variable interpolation in command context

SourceSKILL.md
151conditions.push(`AnnualRevenue >= ${filters.minRevenue}`);
medium line 155

Template literal with variable interpolation in command context

SourceSKILL.md
155soql += ` WHERE ${conditions.join(' AND ')}`;
medium line 169

Template literal with variable interpolation in command context

SourceSKILL.md
169`SELECT Id, FirstName, LastName, Email, Phone, Title, Department
medium line 217

Template literal with variable interpolation in command context

SourceSKILL.md
217'INVALID_FIELD': `Invalid field name in query. Fields: ${fields.join(', ')}`,
medium line 261

Template literal with variable interpolation in command context

SourceSKILL.md
261console.warn(`Retryable error ${errorCode}, attempt ${attempt}/${maxRetries}, waiting ${delay}ms`);
low line 59

Access to .env file

SourceSKILL.md
59loginUrl: process.env.SF_LOGIN_URL || 'https://login.salesforce.com',
low line 64

Access to .env file

SourceSKILL.md
64process.env.SF_USERNAME!,
low line 65

Access to .env file

SourceSKILL.md
65process.env.SF_PASSWORD! + process.env.SF_SECURITY_TOKEN!
low line 59

External URL reference

SourceSKILL.md
59loginUrl: process.env.SF_LOGIN_URL || 'https://login.salesforce.com',
low line 288

External URL reference

SourceSKILL.md
288- [jsforce API Reference](https://jsforce.github.io/document/)
Scanned on May 26, 2026
View Security Dashboard
Installation guide →