experience-ui-bundle-app-coordinate

Orchestrates phased generation of complete Salesforce React UI bundle applications.

Updated Jul 2, 2026
One-click install
npx skills add https://github.com/padjei/SF_Build --skill experience-ui-bundle-app-coordinate-padjei
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: experience-ui-bundle-app-coordinate
Source: https://github.com/padjei/SF_Build/tree/main/.claude/skills/experience-ui-bundle-app-coordinate
Command: npx skills add https://github.com/padjei/SF_Build --skill experience-ui-bundle-app-coordinate-padjei

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building a full Salesforce React UI bundle app requires many interdependent steps — scaffolding, feature installation, data access, UI, integrations, deployment, and hosting — and doing them in the wrong order produces broken builds, guessed schema fields, and failed deployments. This Skill coordinates the entire end-to-end build by invoking specialized UI bundle skills in the correct dependency order. ## Core Features & Use Cases - Phased Build Orchestration: Executes seven ordered phases (scaffolding, features, data access, UI, integrations, deployment, hosting target), loading the correct specialized skill before each phase. - Schema Grounding Enforcement: Requires verifying Salesforce objects and fields against the live org before authoring GraphQL queries, preventing guessed fields and hand-stubbed types. - Hosting Target Selection: Generates either an Experience Site (Digital Experience metadata) for external users or a Custom Application for internal Lightning App Launcher access. - Use Case: A user asks to "build a React app for managing customer cases with Salesforce data" — the Skill produces a build plan, scaffolds the UI bundle, grounds Case fields against the org, wires GraphQL data access, builds pages and navigation, deploys, and publishes an Experience Site. ## Quick Start Ask the agent to build a complete React UI bundle app on Salesforce from your natural language description, for example: "Build a coffee shop ordering app on Salesforce with authentication, data tables, and an Experience Site."

Frequently Asked Questions about experience-ui-bundle-app-coordinate

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

FAQPage Schema
How do I build a React app on Salesforce from scratch?▼

Describe the app in natural language and this Skill generates a build plan, then executes ordered phases: scaffold the UI bundle, install features, ground and wire Salesforce data access, build the React UI, deploy, and configure a hosting target such as an Experience Site or Custom Application.

When should I use app coordination instead of the frontend-generate skill?▼

Use app coordination when building a complete app end-to-end spanning multiple concerns like scaffolding, data access, and deployment. Use experience-ui-bundle-frontend-generate only for single-concern edits or individual pages and components in an existing bundle.

Does the skill verify Salesforce object and field names before writing queries?▼

Yes. The data access phase requires grounding every entity and field against the live org via experience-ui-bundle-salesforce-data-access before authoring GraphQL queries. Guessed field names and hand-stubbed generated types are explicitly prohibited.

Can the app be hosted for external users or only inside Lightning?▼

Both. Phase 7a generates Digital Experience site metadata (Network, CustomSite, DigitalExperience) for external or public-facing users, while Phase 7b generates CustomApplication metadata so internal users access the app from the Lightning App Launcher.

What are the limitations of this orchestration skill?▼

It does not handle Lightning Experience apps built on custom objects (use platform-lightning-app-coordinate), single-component edits, or troubleshooting existing UI bundles. It also stops to ask the user when the app purpose is too vague or requirements conflict.