
Custom Application for UI Bundles
OfficialFreeEasily create Salesforce Custom Applications for UI bundles.
Free · Opens the source repo
What Custom Application for UI Bundles does
The Custom Application for UI Bundles skill simplifies the process of creating and configuring Salesforce Custom Applications that host React UI bundles in Lightning Experience. This skill is specifically designed for developers working with Salesforce who need to expose their UI bundles in the App Launcher without the complexities of Digital Experience Sites. By generating the necessary CustomApplication metadata, it ensures that your application is readily accessible to internal users through the Lightning App Launcher.
This skill activates when your project contains a uiBundles/*/src/ directory and when you need to create or modify a Custom Application metadata record. It is essential for scenarios where files matching applications/*.app-meta.xml exist and require adjustments. The skill is built to avoid conflicts with other application generation methods, such as platform-custom-application-generate, which are not suitable for UI bundle applications.
The skill operates through a structured workflow, beginning with the resolution of required properties like appName, appNamespace, and appLabel. It then queries the Salesforce API context to determine the appropriate metadata fields based on the user's API version. Following this, it creates the necessary project structure and populates the metadata fields using a predefined template. The final step involves updating the existing UI Bundle metadata XML to include any new configurations, ensuring that the application is correctly linked to the UI bundle.
This skill is ideal for Salesforce developers who are integrating React applications within their Salesforce environment. By streamlining the creation of Custom Applications, it reduces the manual effort involved in setting up these applications, allowing developers to focus on building their UI bundles rather than worrying about configuration details.
When to use it
Use this skill when you need to create or modify a Custom Application for a React UI bundle in Lightning Experience.
When not to use it
Avoid this skill if your application requires tabs, action overrides, or flexipages, as it is specifically for UI bundles.
What you can build with it
Creating a New Custom Application
When starting a new project with a React UI bundle, use this skill to quickly generate the necessary Custom Application metadata.
Modifying Existing Applications
If you need to update the metadata for an existing Custom Application to ensure it properly links to your UI bundle, this skill provides the tools to do so.
Integrating UI Bundles into Lightning Experience
When integrating a React UI bundle into Salesforce, use this skill to facilitate its visibility in the Lightning App Launcher.
How to install Custom Application for UI Bundles
View source1. Install with the skills CLI
npx skills add forcedotcom/sf-skills/experience-ui-bundle-custom-app-generate --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 forcedotcomCustom Application for React UI Bundles
Create and configure a Salesforce Custom Application that hosts a React UI bundle in Lightning Experience. This skill generates the CustomApplication metadata so the app appears in the Lightning App Launcher and can be accessed by internal users.
Custom Applications differ from Experience Sites: they don't need Networks, CustomSite, DigitalExperienceConfig, or DigitalExperienceBundle metadata. The Custom Application acts as a thin launcher entry that delegates rendering to the React UI bundle referenced by uiBundle.
Required Properties
Resolve all properties before generating any metadata. Each has a fallback chain — work through each option in order until a value is found.
| Property | Format | How to Resolve |
|---|---|---|
| appName | lowercamelcase (e.g., myInternalApp) | The UI bundle name from uiBundles/<name>/ directory |
| appNamespace | String | namespace in sfdx-project.json → sf data query -q "SELECT NamespacePrefix FROM Organization" --target-org ${usernameOrAlias} → default c |
| appLabel | Human-readable string | User-provided, or derive from appName by converting camelCase to Title Case |
The appNamespace and appName connect the Custom Application to the correct React UI bundle. In newer API versions this uses <uiBundle>{appNamespace}__{appName}</uiBundle>; in older versions it uses <webApplication>{appName}</webApplication>. Getting this wrong means the app launcher entry exists but shows a blank page. Step 2 of the workflow determines which field to use.
Generation Workflow
Step 1: Resolve All Required Properties
Determine values for all properties before constructing anything. Use the resolution strategies in the table above.
Step 2: Query API Context (Version-Aware Field Discovery)
Call salesforce-api-context MCP tools to discover which fields exist for the target org's API version. This ensures the generated metadata is compatible with the user's Salesforce version.
Required calls — use the metadataType parameter exactly as shown. Do not substitute a detail parameter or any other shape; metadataType is the only parameter this tool accepts:
get_metadata_type_fields({ "metadataType": "CustomApplication" })— check whether theuiBundlefield exists in the response's field listget_metadata_type_fields({ "metadataType": "UIBundle" })— check whether thetargetfield exists in the response's field list
Field resolution based on API response:
| Field Check | If present | If absent (older API version) |
|---|---|---|
CustomApplication.uiBundle | Use <uiBundle>{appNamespace}__{appName}</uiBundle> | Use <webApplication>{appName}</webApplication> (no namespace) |
UIBundle.target | Use <target>CustomApplication</target> | Omit the <target> element entirely |
If salesforce-api-context is unavailable after a real attempt, fall back to the newer field names (uiBundle + target).
Step 3: Create the Project Structure
Create any files and directories that don't already exist:
| Metadata Type | Path |
|---|---|
| CustomApplication | <sourceDir>/applications/{appName}.app-meta.xml |
Note: <sourceDir> is determined from sfdx-project.json. Read packageDirectories[] and use the entry where "default": true; the full source directory is <path>/main/default. If no default is set, use the first entry. Commonly force-app/main/default, but this path is configurable.
Step 4: Populate All Metadata Fields
Use the default template in the doc below. Values in {braces} are resolved property references — substitute them with the actual values from Step 1. Apply the field resolution from Step 2 to determine which XML elements to use.
| Metadata Type | Template Reference |
|---|---|
| CustomApplication | configure-metadata-custom-application.md |
Execution Note for Step 4: Load and use the doc
- Agents MUST read the full contents of the references/*.md file referenced in Step 4 before attempting to populate metadata fields.
- Read the file in full, replace placeholders (e.g.
{appName}) with the resolved values, then use the expanded template to populate the metadata XML content. - If Step 2 determined the older field names apply, substitute
<uiBundle>with<webApplication>in the generated output.
Step 5: Update UI Bundle Meta XML
This step edits an existing file — it never creates a new one. UIBundle is a bundle-style metadata type: its meta XML normally lives inside its own folder at uiBundles/{appName}/{appName}.uibundle-meta.xml, alongside the bundle's other source files (e.g. index.html, src/). Some older or hand-authored projects may instead have it at the flat path uiBundles/{appName}.uibundle-meta.xml (no subfolder).
Run scripts/resolve-uibundle-path.sh "{appName}" — it prints the path of the existing meta XML (preferring the nested layout, falling back to the flat layout). Edit that exact file in place; do not create a second file at the other path or migrate it to a different layout as part of this skill.
If Step 2 confirmed the target field exists on UIBundle, add <target>CustomApplication</target> inside the existing <UIBundle> element of that file, preserving every other existing element and value untouched (skip this step entirely if the field doesn't exist in the org's API version — do not create the file or add <target> in that case).
Do NOT:
- Create a new
.uibundle-meta.xmlfile - Create a second
.uibundle-meta.xmlfile at a different path when one already exists (nested or flat) — edit the existing one in place, wherever it is - Leave the original
uiBundles/{appName}/{appName}.uibundle-meta.xml(oruiBundles/{appName}.uibundle-meta.xml, if that's the existing layout) unmodified while adding<target>somewhere else
The only files this skill produces or modifies are applications/{appName}.app-meta.xml (new) and the existing {appName}.uibundle-meta.xml (edited in place, only if <target> applies). Any other UI-bundle-related file appearing in the output is a bug.
Example of the fully updated file (at uiBundles/{appName}/{appName}.uibundle-meta.xml, or the flat path if that's the existing layout) — this illustrates the end state of the existing file, not a new file to create:
<?xml version="1.0" encoding="UTF-8"?>
<UIBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<masterLabel>{appName}</masterLabel>
<description>A Salesforce UI Bundle.</description>
<isActive>true</isActive>
<version>1</version>
<target>CustomApplication</target>
</UIBundle>
Step 6: Do Not Modify Non-Templated Properties
Do not modify any default property values for CustomApplication metadata that are not expressed as variables wrapped in {braces}.
Verification Checklist
Before deploying, confirm:
- All required properties are resolved
- API context was queried to determine available fields (Step 2)
-
applications/{appName}.app-meta.xmlexists with correct content - The bundle reference field matches the org's API version (
<uiBundle>or<webApplication>) - If
targetfield is supported: the existing{appName}.uibundle-meta.xml(nested atuiBundles/{appName}/, or flat atuiBundles/, whichever already existed) has<target>CustomApplication</target> - No extra
.uibundle-meta.xmlfile was created — exactly one{appName}.uibundle-meta.xmlexists, at whichever path it already lived at - Deployment validates successfully:
sf project deploy validate --metadata CustomApplication UIBundle --target-org ${usernameOrAlias}
Frequently asked questions about Custom Application for UI Bundles
Similar skills
Rhino 3D Scripting
Streamline your Rhinoceros 3D scripting tasks.
MVVM Toolkit
Streamline ViewModel development with source generators.
FreeCAD Scripts
Generate Python scripts for FreeCAD automation and modeling.
Azure Architecture Builder
Design and deploy Azure infrastructure using natural language.
Command Development
Streamline your command creation for Claude Code.
Create Cowork Plugin
Easily build and package plugins through guided sessions.
