salesforce-policy-guardrails
Installation
SKILL.md
Salesforce Policy & Guardrails
Overview
Automated policy enforcement for Salesforce integrations: SOQL injection prevention, API key leak detection, governor limit guardrails, and CI pipeline checks.
Prerequisites
- ESLint configured in project
- jsforce TypeScript project
- CI/CD pipeline with policy checks
- Understanding of Salesforce security model
Instructions
Step 1: SOQL Injection Prevention
// CRITICAL: Never concatenate user input into SOQL strings
// BAD — SOQL injection vulnerability
Related skills