What problem does it solve? Deploying a Salesforce UI bundle app involves many ordered steps—authentication, builds, metadata deployment, permission assignment, data import, and GraphQL schema codegen—and doing them out of order causes broken schemas, missing field access, and failed deployments. ## Core Features & Use Cases - Ordered Deployment Workflow: Enforces the canonical sequence from org authentication through metadata deployment to final UI bundle build. - Post-deploy Configuration: Discovers and assigns permission sets in force-app/main/default/permissionsets/ so GraphQL introspection returns the correct schema. - Schema and Codegen Management: Fetches the GraphQL schema via introspection and runs codegen after every metadata or permission change. - Use Case: After deploying new custom objects to a Salesforce org, the skill assigns permission sets, optionally imports data from data/data-plan.json with user confirmation, then refreshes schema.graphql and regenerates types. ## Quick Start Deploy this UI bundle project to my Salesforce org and run the full post-deploy setup including permissions and GraphQL codegen.