mobile-apps-create

Routes Salesforce mobile app requests to the correct Mobile SDK or Agentforce SDK child skill.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Choosing between Salesforce's Mobile SDK and Agentforce SDK across iOS and Android is confusing, and picking the wrong starting point wastes setup time. This Skill disambiguates the user's intent and routes them to the correct platform- and SDK-specific child skill. ## Core Features & Use Cases - SDK family routing: Distinguishes Mobile SDK needs (authentication, MobileSync, SmartStore offline storage, push, biometrics) from Agentforce SDK needs (embedded agent chat, conversational UI). - Platform routing: Directs iOS (Swift) requests to ios-mobile-sdk or integrate-agentforce-ios, and Android (Kotlin) requests to android-mobile-sdk or integrate-agentforce-android. - Combined workflows: Sequences Mobile SDK scaffolding first, then layers the Agentforce SDK agent surface, without interleaving their setup steps. - Use Case: A user says "add Salesforce login and offline storage to my Android app" — the Skill routes to android-mobile-sdk, installs it via npx skills add if missing, and hands off the step-by-step implementation. ## Quick Start Ask the assistant to build a Salesforce iOS app with Mobile SDK authentication and offline sync, and it will route you to the right child skill.

Frequently Asked Questions about mobile-apps-create

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

FAQPage Schema
How do I build a Salesforce mobile app for iOS or Android?▼

State your platform and goal, and this Skill routes you to the right child skill: ios-mobile-sdk or android-mobile-sdk for data-driven apps, or integrate-agentforce-ios/android for embedded agent chat. The child skill owns the actual setup steps.

Salesforce Mobile SDK vs Agentforce SDK — which do I need?▼

Use Mobile SDK for user authentication, MobileSync, SmartStore offline storage, push notifications, and biometrics. Use Agentforce SDK when an embedded agent chat is the primary surface. Apps needing both start with Mobile SDK, then layer Agentforce on top.

Can I use both Mobile SDK and Agentforce SDK in one app?▼

Yes. Route to the Mobile SDK platform skill first to scaffold and authenticate, then the Agentforce SDK skill to add the agent surface. Do not interleave their setup steps, since each SDK owns its own auth and initialization order.

What happens if the child skill is not installed locally?▼

The Skill prompts you to install it with npx skills add from the public Salesforce repos, such as forcedotcom/SalesforceMobileSDK-Templates. After installation, the child skill loads and takes over the workflow.

When should I not use this Skill?▼

Skip it for non-Salesforce mobile apps, React Native, Flutter, or Ionic projects without Salesforce integration, generic mobile UI design questions, and Salesforce web surfaces like LWC or Experience Cloud.