
Embedded Messaging Deployment
OfficialFreeStreamline your embedded messaging configurations.
Free · Opens the source repo
What Embedded Messaging Deployment does
The Embedded Messaging Deployment skill provides a structured approach to configuring Embedded Service Deployments for Salesforce Messaging for In-App and Web (MIAW). It supports two primary workflows: creating new deployments from scratch using the Connect API and updating existing deployments through the Metadata API. This skill is particularly useful for developers and administrators who need to manage embedded messaging widgets effectively, ensuring that the settings align with business requirements and user experience standards.
When creating a new deployment, the skill generates the necessary EmbeddedServiceConfig metadata XML files, which define the deployment's characteristics and features. Users can specify the deployment type—API, Mobile, or Web—and provide essential details such as deployment name and channel name. For updates, the skill retrieves the existing deployment's metadata, allowing users to modify settings like pre-chat forms, branding, and various messaging features. This ensures that changes can be made efficiently without starting from scratch.
The skill also includes clarifying questions to gather necessary inputs, helping users articulate their needs clearly. It guides users through the process of verifying API versions, determining the operation type, and collecting all required information before proceeding with deployment creation or updates. By automating these workflows, the skill simplifies the management of embedded messaging configurations, making it easier for teams to implement and maintain their messaging solutions across different platforms.
This skill is ideal for Salesforce developers and administrators who are tasked with setting up or updating embedded messaging services. Its systematic approach reduces the potential for errors and enhances the efficiency of deployment processes, ultimately leading to a better user experience in applications that utilize embedded messaging.
When to use it
Use this skill when you need to create or update embedded messaging deployments in Salesforce, particularly for in-app or web messaging.
When not to use it
Avoid using this skill for creating messaging channels or configuring legacy Live Agent embedded services, as those tasks require different tools.
What you can build with it
Creating a New API Deployment
Use this skill to set up a new API-based embedded messaging deployment by providing the necessary channel and deployment details.
Updating Web Deployment Settings
Modify the settings of an existing Web deployment, including branding and pre-chat forms, using the Metadata API.
Verifying API Version
Ensure that your Salesforce org is compatible with the required API version before creating or updating deployments.
How to install Embedded Messaging Deployment
View source1. Install with the skills CLI
npx skills add forcedotcom/sf-skills/service-digital-engagement-deployment-configure --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by forcedotcomConfiguring Embedded Messaging Deployment
Configures EmbeddedServiceConfig metadata for Salesforce Messaging for In-App and Web (MIAW). Supports two distinct workflows: creating new deployments via Connect API and updating existing deployments via Metadata API.
Scope
- In scope: Creating new Embedded Service Deployments (API, Mobile, Web types) via Connect API; updating existing deployments with forms, branding, channel settings, and features via Metadata API; generating
EmbeddedServiceConfigXML for updates - Out of scope: Creating the messaging channel itself (use
service-digital-engagement-channel-configure), publishing deployments (Connect API post-step), creating Experience Sites (Connect API prerequisite for Web type)
Clarifying Questions
Before generating, ask the user if not already clear:
- Create or update? Are you creating a new deployment or updating an existing one?
- Deployment type? API (headless), Mobile (native apps), or Web (browser widget)?
- Channel name? What is the
channelPlatformKeyof the messaging channel to associate? - For create: What should the deployment be named?
- For update: What features to configure? (pre-chat forms, business hours, T&C, UI toggles)
- For update (Web): What is the Experience Site name? Branding overrides needed?
Required Inputs
Gather or infer before proceeding:
- Operation:
createorupdate - Deployment type:
API,Mobile, orWeb - Deployment name: Used for
masterLabeland the API name - Channel name: The
channelPlatformKeyof the associated messaging channel
For update operations additionally:
- Site name (Web only): The Experience Site name (format
ESW_<name>_<timestamp>) - Branding name (optional): Reference to existing
BrandingSet - Pre-chat form fields (optional): Field names and required status
- Business hours (optional): Name of existing
BusinessHoursrecord
Defaults unless specified:
isEnabled:truedeploymentFeature:EmbeddedMessaging
Workflow
All steps are sequential. Do not skip or reorder. Branch based on the operation type.
Phase 1 — Gather Context
-
Verify org API version — run
scripts/check-api-version.sh 67.0 <org-alias>and report any errors it returns. If the script fails, generate asfdx-project.jsonin the metadata output folder with"sourceApiVersion": "67.0". -
Determine operation — ask whether the user wants to create a new deployment or update an existing one.
-
Collect inputs — gather deployment name, type, and channel name per Clarifying Questions above.
-
Read deployment settings reference — load
references/deployment_settings.mdto understand all available configuration options.
Phase 2A — Create New Deployment
Use this path when the operation is create.
-
Determine API method by type:
Deployment Type Creation Method Prerequisites API Metadata API deploy Channel must exist Mobile Metadata API deploy Channel must exist Web Connect API Channel must exist + Experience Site required -
For API/Mobile types — read the template
assets/esd_api_mobile_template.xmland generate theEmbeddedServiceConfigXML with:deploymentTypeset toAPIorMobiledeploymentFeatureset toEmbeddedMessaging- All defaults applied
-
For Web type — inform the user that Web deployments require Connect API for initial creation because of a circular dependency between Network and CustomSite. Read
references/connect_api_creation.mdfor the Connect API payload and instructions. -
Generate output — produce the
.EmbeddedServiceConfig-meta.xmlfile (for API/Mobile) or Connect API instructions (for Web). -
Present output and next steps — show the generated file and summarize what was configured. Recommend as next steps:
- Publish the deployment via Connect API to make it live:
To obtain thesf api request rest "/services/data/v67.0/connect/embeddedservice/embeddedserviceconfig/publish/<EMBEDDED_SERVICE_CONFIG_ID>" -X POST -o <org-alias>EMBEDDED_SERVICE_CONFIG_ID:sf data query --query "SELECT Id FROM EmbeddedServiceConfig WHERE DeveloperName = '<DEPLOYMENT_NAME>'" --target-org <org-alias> - Generate code snippet for integration — see
references/code_snippet.md
- Publish the deployment via Connect API to make it live:
Phase 2B — Update Existing Deployment (Metadata API)
Use this path when the operation is update.
-
Retrieve the existing deployment — retrieve the current
EmbeddedServiceConfigmetadata from the org before making changes:sf project retrieve start --metadata EmbeddedServiceConfig:<DEPLOYMENT_NAME> --target-org <org-alias>Use the retrieved file as the starting structure. If retrieval is not possible, load
assets/esd_web_update_template.xmlas a fallback reference. -
Apply messaging channel settings — configure
<embeddedServiceMessagingChannel>with:messagingChannel— the channel'schannelPlatformKeyshouldShowAgentforceTagline— Agentforce brandingshouldShowDeliveryReceipts— delivery receiptsshouldShowEmojiSelection— emoji pickershouldShowReadReceipts— read receiptsshouldShowTypingIndicators— typing indicatorsshouldStartNewLineOnEnter— Enter key behaviorisChatInvitationCustomizable/isInvitationEnabled— chat invitation settings
-
Apply pre-chat forms — if the user needs pre-chat data collection, generate
<embeddedServiceForms>with<embeddedServiceFormFields>elements containingembeddedServiceFormFieldNameandisRequired. -
Apply branding customization (Web only) — a BrandingSet is automatically created with defaults when the deployment is created via Connect API. If the user wants to override specific branding properties (colors, fonts, dimensions), read
references/branding_and_tooling.mdfor the Tooling API steps to update individual properties. -
Apply invitation (Web only) — if the user wants the widget to proactively invite visitors based on conditions:
- Set
isInvitationEnabledtotruein<embeddedServiceMessagingChannel> - Generate repeatable
<embdMsgChannelInvitationConditions>elements withsequence,conditionType,operand,value, and optionallycustomVariableName - Update the
formulafield in<embeddedServiceMessagingChannel>to reference the condition sequences (e.g.,1 AND 2,1 OR 2). The formula must be updated whenever conditions are added or removed to stay in sync with thesequencenumbers - See
references/deployment_settings.mdfor available condition types and operators
- Set
-
Apply additional settings:
isTermsAndConditionsEnabled/isTermsAndConditionsRequired— T&C in pre-chat- Do NOT update
site— the site name is auto-generated during creation and must never be modified
-
Generate the file — produce the
.EmbeddedServiceConfig-meta.xmlfile at the path the user specifies, or default toEmbeddedServiceConfig/in the project's metadata source path. -
Present output and next steps — show the generated file and summarize what was configured. Recommend as next steps:
- Publish the deployment via Connect API to make changes live:
To obtain thesf api request rest "/services/data/v67.0/connect/embeddedservice/embeddedserviceconfig/publish/<EMBEDDED_SERVICE_CONFIG_ID>" -X POST -o <org-alias>EMBEDDED_SERVICE_CONFIG_ID:sf data query --query "SELECT Id FROM EmbeddedServiceConfig WHERE DeveloperName = '<DEPLOYMENT_NAME>'" --target-org <org-alias> - Generate code snippet for integration — see
references/code_snippet.md
- Publish the deployment via Connect API to make changes live:
Phase 3 — Validate
- Verify against checklist — confirm all items in the Verification Checklist below pass.
Rules / Constraints
| Constraint | Rationale |
|---|---|
| Always retrieve existing deployment before updating | Ensures current settings are preserved and only intended changes are applied |
deploymentType must be API, Mobile, or Web | Platform rejects other values |
Never update the site field on a Web deployment | Site name is auto-generated at creation and must not be changed |
| Web deployments cannot be created via Metadata API | Circular dependency between Network and CustomSite — use Connect API |
embeddedServiceMessagingChannelName must reference an existing channel | Deployment fails if channel doesn't exist |
site field required for Web type updates | Web widget must be associated with an Experience Site |
| BrandingSet is auto-created with defaults by Connect API | To override branding properties, use Tooling API — see references/branding_and_tooling.md |
| Pre-chat form fields must reference valid channel custom parameters | ChoiceList fields need the parameter deployed on the channel first |
File extension is .EmbeddedServiceConfig-meta.xml | Metadata API uses this specific extension |
Do not hardcode file paths — respect sfdx-project.json package directories | Customer orgs customize source paths |
| Never include deploy/push commands in generated output | This skill produces artifacts only |
| Publish step (Connect API) required after Web ESD updates | Changes are not live until published |
Gotchas
| Issue | Resolution |
|---|---|
| Web ESD creation fails via Metadata API | Web type requires Connect API for initial creation; use Metadata API only for updates |
| Site name not found | Site must exist before Web ESD update; format is ESW_<name>_<timestamp> |
| Branding overrides not applied | Use Tooling API to update individual BrandingSet properties after the deployment is created |
| Pre-chat ChoiceList not showing | ChoiceList requires two-step deploy: create ChoiceList first, then assign to form field |
| Changes not appearing in widget | Web ESDs must be published via Connect API after any update |
embeddedServiceFlowConfig.enabled error | Set to false unless you specifically need embedded flows (not routing flows) |
| reCAPTCHA configuration rejected | reCAPTCHA is @HideInWsdl — must use Tooling API |
| Business hours not taking effect | Only updating existing business hours works; creation is managed separately |
| Deploy fails with "required field missing" or "upsert failed null" | All attributes are mandatory: boolean fields in embeddedServiceMessagingChannel (include all even with default false), and all form field attributes (formField, formFieldType, isHidden, isRequired, displayOrder, messagingChannelParameterType) |
| Standard pre-chat field not found | Use _ prefix for standard fields in formField: _FirstName, _LastName, _Email, _Subject |
Verification Checklist
Universal Checks
- Is
deploymentTypeone ofAPI,Mobile, orWeb? - Is
masterLabelpopulated and unique? - Does
messagingChannelreference an existing channel? - Is
deploymentFeatureset toEmbeddedMessaging? - Is
isEnabledset totrue?
Web Type Checks
- Is
sitepopulated with the Experience Site name? - If branding is configured, does
embeddedServiceBrandingNamereference an existing BrandingSet? - Are pre-chat form field names valid (match channel custom parameters)?
- If
isInvitationEnabledistrue, isformulapopulated and consistent with allsequencenumbers in<embdMsgChannelInvitationConditions>?
API/Mobile Type Checks
- Is
siteUrlempty (no site needed)? - Is
deploymentTypecorrectly set toAPIorMobile?
Post-Deploy Checks
- Is user reminded to publish (Connect API) for Web deployments?
- Is user reminded to activate components (Tooling API) if messaging components were deployed?
Output Expectations
Deliverables:
- For API/Mobile create:
<source-path>/EmbeddedServiceConfig/<DeploymentName>.EmbeddedServiceConfig-meta.xml - For Web create: Connect API payload and instructions (no XML file)
- For update:
<source-path>/EmbeddedServiceConfig/<DeploymentName>.EmbeddedServiceConfig-meta.xml
File structure follows the templates in assets/.
Cross-Skill Integration
| Need | Delegate to |
|---|---|
| Creating the messaging channel | service-digital-engagement-channel-configure skill |
| Creating Omni-Channel routing flows | automation-flow-generate skill |
| Creating permission sets for agents | platform-permission-set-generate skill |
Reference File Index
| File | When to read |
|---|---|
assets/esd_api_mobile_template.xml | Before generating API or Mobile type deployments |
assets/esd_web_update_template.xml | Before generating Web type updates |
references/deployment_settings.md | When configuring deployment options beyond defaults |
references/connect_api_creation.md | When creating Web type deployments (Connect API required) |
references/branding_and_tooling.md | When user asks about branding configuration |
references/code_snippet.md | When user wants the JavaScript embed code snippet for their website |
scripts/check-api-version.sh | Phase 1 — verify org API version meets the passed minimum (67.0) |
examples/esd_api.xml | To verify output for API type deployment |
examples/esd_mobile.xml | To verify output for Mobile type deployment |
examples/esd_web_full.xml | To verify output for fully configured Web deployment |
Frequently asked questions about Embedded Messaging Deployment
Similar skills
WinMD API Search
Easily find and explore Windows desktop APIs.
WebMCPify
Transform any web app into an agent-ready platform.
Phoenix Tracing
Instrument LLM applications with OpenInference tracing.
Foundry Hosted Agent CopilotKit
Guidance for developing agentic web apps on Azure.
Power Automate Foundation
Connect AI agents to Power Automate seamlessly.
Power Automate Flow Builder
Efficiently build and deploy Power Automate flows programmatically.
