Data
service-metrics-data-model
Use when designing or reporting on Salesforce Service Cloud service metrics — covers the Case, Entitlement, and CaseMilestone object model, MTTR derivation via BusinessHours.diff()…
Security
salesforce-apex-quality
Apex code quality guardrails for Salesforce development. Enforces bulk-safety rules (no SOQL/DML in loops), sharing model requirements, CRUD/FLS security, SOQL injection prevention…
Automation
integration-salesforce
Connect Salesforce (enterprise CRM) to a self-hosted Hermes Agent over SSH. Path A — first-party hosted MCP (OAuth + PKCE, requires browser consent). Path B — headless REST via Cli…
Security
permission-set-groups-and-muting
Use when designing or reviewing permission-set-group architecture, including profile minimization, group composition, muting strategy, and migration from profile-heavy models. Trig…
Engineering
managed-package-development
Build or maintain Salesforce first-generation managed packages (1GP) for ISV distribution — covers namespace registration, packaging org structure, PostInstall/UninstallHandler Ape…
Data
support-ticket-normalization
Normalizes raw support-ticket data from Zendesk, Freshdesk, Intercom, Salesforce, JSM, HubSpot, Help Scout, and Front into conformed `fct_ticket` and `fct_conversation_event` model…
Automation
dsc-scrape
Scrapes developer.salesforce.com API reference pages and outputs structured JSON. Use for any DSC reference URL under /docs/.../references/ or the top-level /docs/apis catalog, inc…
Web
flexcard-design-patterns
Use when designing, building, or reviewing OmniStudio FlexCards — including data source selection, card states, actions, conditional visibility, flyout configuration, and child car…
Business
quotes-and-quote-templates
Configure standard Salesforce Quotes, customize quote templates for PDF generation, email quotes to customers, sync quotes to opportunity products, or set up discount approval work…
Engineering
apex-architecture
Framework-free Apex architecture with layered design (triggers, services, selectors, domains), async processing, callouts, REST, error handling, and security (CRUD/FLS, sharing, SO…
Web
lwc-accessibility
Review or design Lightning Web Components for keyboard access, semantic labeling, focus management, screen-reader behavior, and WCAG-aligned UX in Salesforce. Applies to keyboard n…
Business
ha-dr-architecture
Designing high availability and disaster recovery strategies for Salesforce: Trust site monitoring, backup strategies, cross-region considerations, business continuity planning, RT…
Automation
salesforce-webhooks
Receive and verify Salesforce Outbound Messages for Flow or Workflow automation. Parse SOAP/XML notifications, validate OrganizationId, return acknowledgments, and handle record ch…
Automation
agent-script-dsl
Authoring and managing Agentforce agent definitions using the declarative Agent Script DSL (.agent files) and associated metadata types. Use when creating agents in source control,…
Web
lwc-reactive-state-patterns
Explains LWC reactivity rules after Spring '20 (API v48+): class fields react on reassignment while @track is needed for in-place object or array mutations; Date, Set, and Map chan…
DevOps
org-cleanup-and-technical-debt
Handles Salesforce org cleanup: removing unused fields, deactivating legacy Flows and automation, running Optimizer or Org Check, and destructive metadata deployments. Use for trig…
DevOps
diff-deploy
Deploys changed metadata only since a given git ref (usually `main`), instead of entire projects. Computes altered files via `git diff`, intersects them with project `paths`, then …
Security
permission-sets-vs-profiles
Use when designing or auditing access control—deciding between Profiles, Permission Sets, and Permission Set Groups. Triggers: 'user can't see field', 'too many profiles', 'permiss…
Data
product-catalog-data-model
Use when modeling, loading, or troubleshooting Salesforce product and pricebook data — covering the Product2 → Pricebook2 → PricebookEntry three-object chain, standard pricebook co…
Engineering
salesforce-flow-automation-review-skill
Reviews Salesforce Flow XML, validation rules, approval processes, and record-triggered automations for correctness, safety, and maintainability. Detects recursion, unsafe bypasses…
Engineering
flow-rollback-patterns
Undo DML operations inside the current transaction using Flow Rollback Records. Covers rollback appropriateness, fault path combinations, partial-commit risks, and publish-after-co…
Security
salesforce-marketing-consent-review-skill
Reviews Salesforce marketing consent models, lawful basis, preference centers, suppression integrity, subscriber-key risks, and email authentication (SPF/DKIM/DMARC) across Marketi…
Business
omni-channel-capacity-model
Designs capacity models for service organizations covering agent allocation, channel weighting across cases/chats/calls, skills matrices, overflow handling, presence settings, and …
Business
wealth-management-requirements
Gathers, structures, and documents requirements for Financial Services Cloud wealth management implementations, covering financial planning workflows, portfolio reviews, client lif…
DevOps
salesforce-agentforce-stdm-observer-skill
Monitors live Salesforce Agentforce sessions via STDM and Data Cloud, surfacing faithfulness scores, action telemetry, and quality metrics under least-privilege access. Answers rea…
Data
salesforce-bulk-data-ops-skill
Produces scripts for Salesforce bulk operations including owner reassignment, record deduplication, mass field updates, stale record closure, contact deactivation, and lead convers…
DevOps
salesforce-release-readiness-skill
Assesses Salesforce release readiness by reviewing sandbox strategy, source tracking, package diffs, destructive changes, test coverage, rollback plans, and approval workflows. Wor…
DevOps
salesforce-metadata-fetcher-skill
Fetches live Salesforce metadata (objects, fields, flows, Apex, permission sets, profiles) from a connected org using least-privilege API access. Sanitizes results and supplies dow…
Data
data-reconciliation-patterns
Defines patterns for reconciling Salesforce data with external systems including count, field, and record-level checks, external ID upserts, Change Data Capture deltas, and soft-de…
DevOps
flow-error-notification-patterns
Design fault paths and error notifications in Salesforce Flow: understand default unhandled-fault emails, route errors to email alerts or Platform Events, apply Fault paths on call…
Engineering
flow-orchestration-patterns
Covers design patterns for multi-stage, multi-step Flow Orchestrations where steps are autolaunched flows or screen flows. Details stage/step models, interactive vs background step…
Automation
omniscript-design-patterns
Design or review OmniScripts for guided experiences: step structure, branching, save/resume, and boundaries with Integration Procedures, DataRaptors, and custom LWCs. Use for 'omni…
Web
dsc-endpoint-help
Look up or diff against a single named endpoint in a Salesforce developer.salesforce.com API reference. Handles spec-field queries, auth scopes, request/response schemas, and faili…
Data
product-catalog-migration-cpq
Use when bulk-loading or migrating Salesforce CPQ product catalog configuration data — SBQQ-namespaced objects including Product2, ProductOption, PriceRule, PriceAction, DiscountSc…
General
dsc-triage
Diagnoses failing Salesforce API requests against the public spec on developer.salesforce.com. Use when a cURL, raw HTTP request, or error body is provided and the user asks why it…
Business
isv-license-management-and-trialforce
Integrates license enforcement, Trialforce provisioning, and feature-flag distribution for ISV managed packages. Handles LMA registration, Trialforce org splits and templates, Sign…
Security
salesforce-data-exposure-escalation-protocol
Escalates Salesforce data exposure incidents: pauses activity, preserves evidence, identifies controllers/processors, and routes to privacy counsel and security for guest-user leak…
Security
soql-analyzer
Analyzes SOQL queries in Apex code to detect selectivity problems including non-selective filters, missing indexes, full-table scans on large objects, and absent LIMIT clauses. Cro…
Engineering
apex-event-bus-subscriber
Platform Event subscriber runtime: checkpoint-and-resume with EventBus.TriggerContext.setResumeCheckpoint, RetryableException handling, 2,000-event batch size, and PlatformEventSub…
Web
lookup-filter-cross-object-patterns
Design or repair lookup filters that constrain a child lookup using fields from the parent record or a sibling record on the same object. Use for cross-object constraints like $Sou…
Web
products-and-pricebooks
Configures Salesforce product catalog and pricing: creates Product2 records, sets up Standard and custom Pricebooks, manages PricebookEntry records, enables multi-currency pricing,…
Security
salesforce-permission-model-review-skill
Reviews Salesforce permission models including profiles, permission sets, sharing rules, OWD, and role hierarchy for toxic combinations and over-privilege. Identifies risks such as…
Security
guest-user-security
Hardens Experience Cloud guest user profiles, controls unauthenticated record and Apex access, and investigates guest SOQL data exposure. Covers object permissions, sharing model e…
Web
lwc-app-builder-config
Configure an LWC to appear and be constrained inside Lightning App Builder, Experience Builder, Home Page, or Flow screens via js-meta.xml, including isExposed, targets, targetConf…
DevOps
cross-cloud-deployment-patterns
Sequence deployments spanning multiple Salesforce clouds such as Sales Cloud, Service Cloud, and Experience Cloud. Addresses reference errors, cascading metadata failures, DigitalE…
Engineering
flow-performance-optimization
Improves Flow runtime performance through strategies like choosing Before-Save over After-Save, consolidating queries, eliminating loop-DML, caching lookups, and using Scheduled Pa…
Security
login-forensics
Investigate Salesforce login activity with LoginHistory, IdentityVerificationHistory, and Login Forensics. Reconstruct user timelines, review failed logins and IPs, analyze verific…
Business
cpq-performance-optimization
Diagnose and resolve slow CPQ quote calculation, QLEx timeouts, or governor limit errors on large quotes. Use for Large Quote Mode, QCP field declaration, quote calculation perform…
Business
consumer-goods-cloud-setup
Configure Consumer Goods Cloud for visit execution, retail execution, route planning, in-store task management, compliance checks, off-shelf detection, and image recognition. Not f…
Testing
salesforce-apex-log-analyzer-skill
Analyzes Apex debug logs from a connected Salesforce org to surface governor-limit violations, SOQL N+1 patterns, unhandled exceptions, and async failures. Read-only operation—retr…
Security
salesforce-zero-trust-maturity-skill
Evaluates Salesforce deployments against NIST SP 800-207 zero-trust principles using sanitized exports, covering continuous verification, MFA posture, OAuth lifetimes, certificate …
DevOps
custom-notification-type-design
Design Custom Notification Types triggered by Flow, Apex, or Process Builder for Lightning bell, desktop, mobile push, and Slack delivery. Handles channel setup, audience targeting…
Engineering
order-of-execution-deep-dive
Details the full Salesforce record save order of execution across all 18 steps, covering trigger placement, validation sequencing, Flow timing, workflow re-fire behavior, and recur…
Testing
salesforce-apex-test-generator-skill
Generates Apex test classes using TestDataFactory patterns, proper Assert usage, bulkification, positive/negative/bulk method separation, async test handling, and @TestSetup annota…
DevOps
omni-channel-routing-setup
Sets up or updates Salesforce Omni-Channel routing: enables the feature, creates Service Channels, configures Routing Configurations, manages Presence Statuses, assigns skills to r…
Security
connected-apps-and-auth
Use when designing, reviewing, or troubleshooting Salesforce connected apps, Named Credentials, External Credentials, and OAuth-based integrations. Triggered by mentions of OAuth f…
Automation
omniscript-session-state
Persist OmniScript mid-flow state across refresh, navigation, multi-device resume, or abandonment recovery. Covers session objects, staging data, tracking, and resume URLs. Does no…
DevOps
omniscript-versioning
Manage OmniScript versions by activating new ones, deactivating previous versions, testing before activation, rolling back, or identifying versions via Type/Subtype/Language. Not f…
Engineering
flow-record-save-order-interaction
Explains how record-triggered flows interact with the Salesforce Save Order including validation, triggers, duplicate rules, workflows, and assignments. Covers before-save and afte…
Web
lwc-shadow-vs-light-dom-decision
Helps decide between default Shadow DOM and Light DOM (renderMode = 'light') for an LWC. Addresses CSS scoping, third-party framework compatibility, accessibility, Experience Cloud…
Showing the top 60 of 875. See the full list →