Salesforce automation feasibility analysis and building patterns. Use when creating flows, process builders, workflow rules, approval processes, or analyzing automation feasibility. Provides capability matrix, feasibility scoring, template library, and CLI commands for automation development.
From opspal-salesforcenpx claudepluginhub revpalsfdc/opspal-commercial --plugin opspal-salesforceThis skill is limited to using the following tools:
best-practices.mdcapability-matrix.mdfeasibility-rules.mdtesting-patterns.mdTranslates visa document images to English via OCR (Vision/EasyOCR/Tesseract), rotates via EXIF, and generates bilingual A4 PDFs with original and translation.
Audits repo, MCP servers, plugins, connectors, env surfaces, and harness setup; inventories capabilities and recommends ECC-native skills, hooks, agents, workflows.
Ingests video/audio from files, URLs, RTSP, desktop; indexes/searches moments with timestamps/clips; transcodes/edits timelines (subtitles/overlays/dubbing); generates assets and live alerts.
| Request Type | Feasibility | Approach |
|---|---|---|
| Auto-launched Flow | 100% automated | Record-triggered, scheduled - fully API deployable |
| Screen Flow | 67% hybrid | Logic automated, UI requires manual configuration |
| Quick Action | 0% automated | Cannot automate field mappings via API |
| Validation Rule | 100% automated | Formula-based - fully deployable |
| Approval Process | 0% automated | UI-only configuration |
| Formula Fields | 100% automated | Fully deployable via metadata |
| Permission Sets | 100% automated | Fully deployable |
| Reports & Dashboards | 100% automated | Fully deployable |
| Auto-fix validation issues | ✅ Yes (v3.56.0) | 70-80% time savings, 8 patterns supported |
Is it a Screen Flow?
├─ YES → 67% hybrid (logic automated, UI manual)
└─ NO → Is it Quick Action or Approval Process?
├─ YES → 0% automated (UI only)
└─ NO → 100% automated (fully deployable)
# Create Flow
flow create MyFlow --type Record-Triggered --object Account
# Add elements with natural language
flow add MyFlow.xml "Add decision called Status_Check if Status equals Active"
# Validate
flow validate MyFlow.xml --best-practices --governor-limits
# Deploy
flow deploy MyFlow.xml --activate --dry-run
Automatic remediation for 8 common Flow patterns:
Usage:
node scripts/lib/flow-validator.js MyFlow.xml --auto-fix --dry-run # Preview
node scripts/lib/flow-validator.js MyFlow.xml --auto-fix # Apply
Time Savings: 70-80% reduction in manual correction time (20-45 min per Flow)
See: skills/flow-scanner-integration/SKILL.md for complete reference
See supporting files:
feasibility-rules.md - When to use which automation typecapability-matrix.md - Full capability referencebest-practices.md - Design patterns and anti-patternstesting-patterns.md - Test coverage requirements