salesforce-developer

Automate Salesforce development workflows across Apex, Lightning Web Components, and DX pipelines.

16|Updated Apr 19, 2026
One-click install
npx skills add https://github.com/Marwan78888/Neuron-Cli --skill salesforce-developer-marwan78888
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: salesforce-developer
Source: https://github.com/Marwan78888/Neuron-Cli/tree/main/scratch/claude-skills-main/skills/salesforce-developer
Command: npx skills add https://github.com/Marwan78888/Neuron-Cli --skill salesforce-developer-marwan78888

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Salesforce development often suffers from non-bulkified code, governor-limit pitfalls, and inconsistent deployment workflows. This skill provides best-practice patterns for Apex, Lightning Web Components, and DX to enable scalable, maintainable Salesforce solutions.

Core Features & Use Cases

  • Apex best practices: Bulkify triggers, bulk-safe SOQL/DML, stacking tests, and robust error handling.
  • UI and integrations: Build Lightning Web Components and integrate with external systems via Platform Events and REST endpoints.
  • DX-enabled deployments: Scratch org automation, CI/CD pipelines, and metadata deployment strategies across environments.

Quick Start

Set up a Salesforce DX project and implement bulkified Apex, LWC patterns, and a secure DX-based deployment pipeline.

Frequently Asked Questions about salesforce-developer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I bulkify Apex triggers to avoid governor limits?

To bulkify Apex triggers and avoid governor limits, apply bulk-safe SOQL and DML patterns within Trigger handlers. This approach processes collections of records in a single execution context, preventing SOQL query and DML statement limit violations.

What is the best way to set up a Salesforce DX pipeline for CI/CD deployments?

The best way to set up a Salesforce DX pipeline for CI/CD deployments is using scratch org automation and metadata deployment strategies. This automates environment provisioning and enables consistent metadata transitions across development environments.

How does Change Data Capture work with Platform Events in Salesforce?

Change Data Capture and Platform Events work in Salesforce by enabling secure integration patterns for REST and external services. They publish event notifications when records change, allowing asynchronous data consumption by external systems.

Do I need scratch orgs to build Lightning Web Components?

You do not necessarily need scratch orgs to build Lightning Web Components, but a Salesforce DX project is recommended. Scratch orgs provide isolated environments that automate testing and metadata deployment for LWC development.

Why does my Salesforce deployment fail due to non-bulkified code?

Salesforce deployments fail due to non-bulkified code when Apex triggers exceed governor limits during bulk operations. Implementing bulk-safe SOQL and DML within scalable Trigger handler design patterns resolves these execution errors.