// the find
trailheadapps/coral-cloud
Sample application that showcases Data Cloud, Agents and Prompts.
A Salesforce sample app from Trailhead demonstrating Agentforce, Data Cloud, and Prompt Builder against a fictional resort scenario. It's squarely aimed at Salesforce developers learning the platform's AI features — not a general-purpose project you'd adapt outside the ecosystem.
The repo is organized cleanly into deployment units (cc-base-app, cc-employee-app) that map directly to deployment steps, so the install sequence is reproducible. LWC components each have __tests__ directories with Jest tests and fixture data, which is better than most Salesforce sample apps. The CI pipeline covers both PR checks and packaging, giving it real CI hygiene for a demo repo. The data setup scripts (setup.apex, wipe-data.apex) make it easy to reset state without manual record deletion.
This is a demo app locked to paid Salesforce licenses — Data Cloud and Agentforce aren't available on free developer orgs, so the barrier to actually running it is high and undisclosed until mid-README. The agent logic lives entirely inside Salesforce's low-code bot builder (XML metadata), not real code, so there's nothing to learn about agent architecture that transfers outside the platform. The LWC tests use mocked wire adapters throughout, meaning they verify component rendering but won't catch any actual data contract breakage. No teardown automation beyond wipe-data.apex — if you botch a step mid-install, you're largely on your own.